tags:

views:

36

answers:

1

how the global members can be created in vc++ 6.0 mfc project. if i select globals option in WizardBar(WizardBar C++ class). then (WizardBar C++ members),it display (No members - Create New Class...).

How to create the members for this globals class

please give the steps to create.

A: 

If you have any global functions in your project , that will displayed in the combo box. To see just declare some c style function like this

int sum(int a ,int b) { return a+b;}

Now the combo box will display sum function.

"No members - Create New Class..." displayed in the combo box ,when no global function found in your project.

here "Create New class ..." conveys user that they can do right click to add new class to the project.

WindowsPistha