Author |
Topic |
|
SvenC
Tomato Guru
Germany
339 Posts |
Posted - Dec 16 2003 : 08:43:46 AM
|
Hi,
In VS.Net 2003 in a C++ project I'm having problems to get auto complete to work when implementing a class method: After manually typing or auto completing the method name and adding a ( I do only get the informational tooltip with the method prototype /most/ of the time. Sometimes I do get the single lined tooltip which can be used to have all the method parameters added to my cpp. I just don't get the keyboard "gesture" I have to make to get this parameter insertion tooltip?
Thanks for any help, SvenC |
|
SvenC
Tomato Guru
Germany
339 Posts |
Posted - Dec 17 2003 : 09:14:51 AM
|
Hi,
I still got problems with auto completion of method parameters with VA X 1207.
I've cut it down to a simple sample:
header MyClass.h: class MyClass { public: MyClass(); int foo(long i, double dd, const char* sz); };
implementation: myClass.cpp // this is in VS.NET 2003 // 1) type int MyClass::f // 2) autocomplete foo with TAB // 3) wait a second for the parameter completion tooltip // 4) see only "long i, double dd," - the third parameter is missing // 5) with TAB you get what you see, which means the // third parameter is missing int MyClass::foo(long i, double dd,
// this is in VS6 SP5 // steps 1-3 identical // tooltip is correct but the result is int MyClass::int foo (long i, double dd, const char* sz)
In a larger project the completion tooltip is not showing at all even after waiting several minutes to give the parser time to do its work. The C++ code does compile well so syntax errors are no issue.
Bye, SvenC |
|
|
support
Whole Tomato Software
5566 Posts |
Posted - Dec 17 2003 : 11:26:41 PM
|
Fixed in build 1208. |
Whole Tomato Software, Inc. |
|
|
|
Topic |
|
|
|