Results 1 to 9 of 9

Thread: class functions are not listing [ in VC++ editor]

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    May 2006
    Location
    Bangalore,India
    Posts
    235
    Qt products
    Qt3 Qt4
    Platforms
    Windows
    Thanks
    7
    Thanked 25 Times in 24 Posts

    Default Re: class functions are not listing [ in VC++ editor]

    Joseph,
    you mean foo() is automatically listing in .cpp file but not listing in .h file, right?
    but for me its working similer in both file. I am using VC.Net, Visual Asist, Qt4.2.0


  2. #2
    Join Date
    Feb 2006
    Posts
    157
    Qt products
    Qt3 Qt4
    Thanks
    12
    Thanked 1 Time in 1 Post

    Default Re: class functions are not listing [ in VC++ editor]

    Exactly that's the problem.

    In .cpp i can use the code completion But in .h file am not abel to do .

    Could you please explain how can i enable the "code completion" in .h file with out doing like this

    In testMacro.h
    Qt Code:
    1. #include "MyClass.h"
    2.  
    3. void foo()
    4. {
    5. MyClaass myObj;
    6.  
    7. myObj.foo() // this will work any way
    8.  
    9. }
    To copy to clipboard, switch view to plain text mode 


    I am asking will this[ below code] work on ur machine
    In testMacro.h
    Qt Code:
    1. #include "MyClass.h"
    2.  
    3. myObj.foo(); // Will the foo() will automatically comes in ur machine
    4. // If this is working properly ..plz give me the solution for this
    5. // Any plugin support need..? plzzz let me know
    To copy to clipboard, switch view to plain text mode 

  3. #3
    Join Date
    May 2006
    Location
    Bangalore,India
    Posts
    235
    Qt products
    Qt3 Qt4
    Platforms
    Windows
    Thanks
    7
    Thanked 25 Times in 24 Posts

    Default Re: class functions are not listing [ in VC++ editor]

    Yes it is working in my computer in both .h & .cpp

  4. #4
    Join Date
    Jan 2007
    Location
    Augsburg, Germany
    Posts
    75
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows
    Thanks
    4
    Thanked 6 Times in 5 Posts

    Default Re: class functions are not listing [ in VC++ editor]

    Visual Assist also might help (but costs something ...) - I can't live without it

  5. #5
    Join Date
    Feb 2006
    Posts
    157
    Qt products
    Qt3 Qt4
    Thanks
    12
    Thanked 1 Time in 1 Post

    Default Re: class functions are not listing [ in VC++ editor]

    Rajesh,

    could you plzz tell me how i can enable that in .h file.
    Any other plugin or any configration...??

    If i can enabled this in .h files .it will help a lot

    plzzz give me a reply

  6. #6
    Join Date
    May 2006
    Location
    Bangalore,India
    Posts
    235
    Qt products
    Qt3 Qt4
    Platforms
    Windows
    Thanks
    7
    Thanked 25 Times in 24 Posts

    Default Re: class functions are not listing [ in VC++ editor]

    Joseph,
    I am not sure how to enable this. but can you try the following steps:
    close VC++ editor
    delete .opt & .ncb file
    open again..

Similar Threads

  1. Replies: 2
    Last Post: 16th March 2007, 09:04
  2. virtual overloaded functions and base class function call...
    By nouknouk in forum General Programming
    Replies: 7
    Last Post: 11th March 2006, 21:26

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.