Thread: parameter info and member lists

  1. #1
    mustang benny bennyandthejets's Avatar
    Join Date
    Jul 2002
    Posts
    1,401

    parameter info and member lists

    i've just upgraded from Windows 98 to Windows XP, but I'm having trouble with a feature in MS VC++ 6. There appears to be no parameter info or member lists available for functions and types declared outside my workspace. for example:

    Code:
    RECT rc;
    
    rc. //no member list appears when the dot is typed.
    and:
    Code:
    CreateWindow( //no parameter list appears when the bracket is typed.
    but:

    Code:
    class cls1
    {
    public:
    int variable;
    );
    
    cls1 object;
    object. //member list appears, because the class was declared within the workspace.
    I'm hoping there is a simple explanation for this behavior; parameter info and member lists are quite handy. does anyone know what the problem is?
    [email protected]
    Microsoft Visual Studio .NET 2003 Enterprise Architect
    Windows XP Pro

    Code Tags
    Programming FAQ
    Tutorials

  2. #2
    Confused Magos's Avatar
    Join Date
    Sep 2001
    Location
    Sweden
    Posts
    3,145
    If someone knows the answer to that question, please answer how you get rid of that feature too. It's annoying .
    MagosX.com

    Give a man a fish and you feed him for a day.
    Teach a man to fish and you feed him for a lifetime.

  3. #3
    mustang benny bennyandthejets's Avatar
    Join Date
    Jul 2002
    Posts
    1,401
    i love that feature! but to get rid of it, go to tools, options, its in the editor tab, uncheck the following:

    Auto list members
    Auto type info
    Auto parameter info

    but people, still try to help me out here, i actually like those features and really want to get them working!
    [email protected]
    Microsoft Visual Studio .NET 2003 Enterprise Architect
    Windows XP Pro

    Code Tags
    Programming FAQ
    Tutorials

  4. #4
    mustang benny bennyandthejets's Avatar
    Join Date
    Jul 2002
    Posts
    1,401

    sorry

    i dont like to bump a post, but this is something which is discouraging me from programming, and ive never needed you people's help so much until now.

    ill recap the problem: i upgraded to WinXP from Win 98, and i use MS VC++ 6. any types or functions not defined within the workspace will not give their info when you request it, such as parameter info, member listings, and type info. however you can go to the definition of whatever and all the info is right there. but i need to be able to access that info straight away, so can anyone help me solve this problem? please?
    [email protected]
    Microsoft Visual Studio .NET 2003 Enterprise Architect
    Windows XP Pro

    Code Tags
    Programming FAQ
    Tutorials

  5. #5
    Registered User xds4lx's Avatar
    Join Date
    Nov 2001
    Posts
    630
    Try deleteing all the files for the your worspace other than your cpp's, h's, and ur workspace files, that means everything else and do a full rebuild and tell if that fixed the problem.

  6. #6
    mustang benny bennyandthejets's Avatar
    Join Date
    Jul 2002
    Posts
    1,401
    thanks, that solved the problem. there must have been some information that should not have carried over to my new computer, which raises the issue of Visual Studio workspaces not being very portable or standalone. oh well, you cant have everything. thanks again.
    [email protected]
    Microsoft Visual Studio .NET 2003 Enterprise Architect
    Windows XP Pro

    Code Tags
    Programming FAQ
    Tutorials

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Linked lists...need help with a little something
    By Todd88 in forum C++ Programming
    Replies: 2
    Last Post: 04-28-2008, 08:05 PM
  2. "is not a member of 'IDirect3D9'" error
    By The Prophet in forum C Programming
    Replies: 2
    Last Post: 07-02-2005, 09:32 PM
  3. Concatenating two linked lists?
    By AusTex in forum C++ Programming
    Replies: 1
    Last Post: 06-10-2005, 09:44 AM
  4. Builder 5 v's bcc32.exe
    By sononix in forum C++ Programming
    Replies: 3
    Last Post: 08-17-2004, 10:17 AM
  5. "Operator must be a member function..." (Error)
    By Magos in forum C++ Programming
    Replies: 16
    Last Post: 10-28-2002, 02:54 PM