eVC Bug

Here's a nice bug I found with eVC and DevStudio:<br><br>- Launch eVC <br>- Make sure that "Auto parameter info" is enabled via Tools\Options\Editor dialog (it is by default). <br>- Create a new Win32 Application project (select 'Empty Project') <br>- Add a new source file (foo.cpp) to the project <br>- Open this new source file in the IDE editor <br>- Type the following in the source file, leaving the cursor to the right of the '(': <br>#include <windows.h> <br><br>INT WINAPI WinMain ( <br>- At this point you should see the tooltip box displayed listing the function prototype for WinMain. <br>- Using the cursor arrow keys, move the cursor back 9 characters to just before the 'W' in "WinMain". Now press ENTER to drop the substring "WinMain (" to the next line.<br><br>- Now press the END key to move the cursor to the end of the line. <br>- BAM! No more eVC. <br><br>It has something to do with that Tooltip that displays the parameters to WinMain. If you disable that feature in the editor this won't happen. Happens in Win2K and WinXP, although XP actually traps and then allows you to send the mini-dump to MS.<br><br><br>