Set Margins & Auto Paste Function Para :: C++

kuphryn

Senior member
Jan 7, 2001
400
0
0
Hi.

I have two questions related to Visual C++. First, Borland C++ Builder has a margin feature where you get to see the actual page margin. That makes it easier to determine if you need to go to the next line because the current line extents pass a typical page.

Second, when I type in a function in the implementation file, Visual C++ will show a *tool-tip* message with the exact function parameter that is defined in the header file. Is there a way to just *quick paste* whatever Visual C++ sees?

For example:

// header file

afx_msg void OnChar(UINT nChar, UINT nRep, UINT nFlags);

// implementation file

void class::eek:nChar( // at this point, you see the tip

Is there a command to just quick paste whatever Visual C++ brings up since it is prabably the right parameter.

Thanks,
Kuphryn
 

Nothinman

Elite Member
Sep 14, 2001
30,672
0
0
You can't do the quick paste thing because it shows you what the function was defined with in the header, when you call the function you have to specify the names of the variables you're passing which aren't usuall the same.