Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Visual Assist
 Technical Support
 Multiple function parameter listboxes appear

You must be registered to post a reply.
Click here to register.

Screensize:
UserName:
Password:
Format: BoldItalicizeUnderlineStrikethrough Align leftCenterAlign right Insert horizontal ruleUpload and insert imageInsert hyperlinkInsert email addressInsert codeInsert quoted textInsert listInsert Emoji
   
Message:

Forum code is on.
Html is off.

 
Check to subscribe to this topic.
   

T O P I C    R E V I E W
much Posted - Jul 08 2008 : 05:22:30 AM
Hi,

Here's some example (unfinished) code:

struct some_struct { int i; };

bool some_fn_with_various_parameters( const some_struct& s, bool b, int i1, float f1 = 0.0f, float f2 = 1.0f, float f3 = 2.0f, float f4 = 3.0f )
{
    return false;
}

bool some_fn_with_various_parameters( const some_struct& s, bool b, int i1, float f1 = 0.0f, int i2 = 3, int i3 = 5 )
{
    return true;
}

int main( int num_args, const char** args )
{
    some_struct s;
    s.i = 0;
    if( some_fn_with_various_parameters(s,
    return 0;
}

With the cursor positioned after the s, in the line near the end with the function call, if I type a comma then two function parameter listboxes appear on top of each other, as in the following screenshot:



However, when I type the opening bracket I only get a single listbox appearing, as expected.

I have the 'Get content from default Intellisense' option disabled, if that's relevant.
3   L A T E S T    R E P L I E S    (Newest First)
much Posted - Jul 16 2008 : 09:54:29 AM
Great :)
support Posted - Jul 14 2008 : 2:36:05 PM
case=16970 is fixed in build 1645
feline Posted - Jul 09 2008 : 6:27:45 PM
This should be fixed in the next version of VA, which we are hoping to post fairly soon:

case=16970

© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000