Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS General Discussion » Classes in Microsoft Development Environment 7.1 Collapse All
Subject Author Date
Phil Davis Jul 17, 2006 - 1:06 PM

When I go to add a class or a member variable, none of the prof-uis classes show up. This means all adding of dialogs/variables etc must be done manually, leaving some room for error.

Is my development environment set up correctly? Is there a way to add the base classes into the system?

Thanks

Phil Davis Jul 19, 2006 - 8:15 AM

.

Phil Davis Jul 19, 2006 - 8:15 AM

Thank you for the response.

Do you know if this issue fixed with Visual Studio 8.0?

Technical Support Jul 19, 2006 - 9:06 AM

No, this is not supported in VS 8.0

Technical Support Jul 19, 2006 - 5:41 AM

The class wizard in Visual Studio 7.1 does not want to understand any MFC-derived class which has template-based types in the chain of parent class types. This brings some inconvenience, but you can workaround this in this way. If you have some class declared as

class CYourDialog : public CExtResizableDialog
just replace this line temporarily with
class CYourDialog : public CDialog
Now you can use the class wizard to modify your project. Finally simply restore the initial line. Please note you should not replace CExtResizableDialog with CDialog anywhere else.