Click here to Skip to main content
15,891,981 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: add menus to context help menu of windows explorer Pin
Michael Dunn29-Jan-05 6:37
sitebuilderMichael Dunn29-Jan-05 6:37 
GeneralRe: add menus to context help menu of windows explorer Pin
includeh1029-Jan-05 20:09
includeh1029-Jan-05 20:09 
GeneralHTTP & Unicode Pin
Sitaram Sukumar28-Jan-05 19:48
Sitaram Sukumar28-Jan-05 19:48 
GeneralRe: HTTP & Unicode Pin
ThatsAlok29-Jan-05 0:07
ThatsAlok29-Jan-05 0:07 
GeneralRe: HTTP & Unicode Pin
Sitaram Sukumar29-Jan-05 20:55
Sitaram Sukumar29-Jan-05 20:55 
GeneralRe: HTTP & Unicode Pin
ThatsAlok30-Jan-05 19:14
ThatsAlok30-Jan-05 19:14 
Questionpointer to functions array? Pin
dSolariuM28-Jan-05 15:49
dSolariuM28-Jan-05 15:49 
AnswerRe: pointer to functions array? Pin
ThatsAlok28-Jan-05 18:52
ThatsAlok28-Jan-05 18:52 
Pls Clarify : Signature of each Function would be same or Different.

if function signature are same then here is small code
typedef void (*Hello)(void);
void Func1(void)
{
cout<<"hello you are in function one"<<endl;
};

 void Func2(void)
 {
	 cout<<"hello you are in function two";
 }

 void Func3(void)
 {

	 cout<<"hello you are in Function three ";
 }

 void main()
 {
  Hello hi[3];
  hi[0]=(Hello)&Func1;
  hi[1]=(Hello)&Func2;
  hi[2]=(Hello)&Func3;

  (hi[0])();
  (hi[1])();
  (hi[2])();
 }


I am too finding the way for calling function with different signature by same array using Index


"I Think this Will Help"
<h5
 alok gupta="" <br=""> visit me at http://www.thisisalok.tk

GeneralRe: pointer to functions array? Pin
Anders Dalvander29-Jan-05 1:20
Anders Dalvander29-Jan-05 1:20 
GeneralRe: pointer to functions array? Pin
ThatsAlok29-Jan-05 1:30
ThatsAlok29-Jan-05 1:30 
QuestionHow to exit an application by hitting an exit button Pin
joy00728-Jan-05 14:54
joy00728-Jan-05 14:54 
AnswerRe: How to exit an application by hitting an exit button Pin
ThatsAlok28-Jan-05 17:50
ThatsAlok28-Jan-05 17:50 
GeneralRe: How to exit an application by hitting an exit button Pin
Mircea Puiu29-Jan-05 5:08
Mircea Puiu29-Jan-05 5:08 
AnswerRe: How to exit an application by hitting an exit button Pin
Michael Dunn29-Jan-05 6:40
sitebuilderMichael Dunn29-Jan-05 6:40 
GeneralHelp with Help (contexthelp) Pin
User 137680028-Jan-05 14:08
User 137680028-Jan-05 14:08 
GeneralRe: Help with Help (contexthelp) Pin
PJ Arends28-Jan-05 14:38
professionalPJ Arends28-Jan-05 14:38 
GeneralRe: Help with Help (contexthelp) Pin
User 137680028-Jan-05 15:27
User 137680028-Jan-05 15:27 
GeneralTesting code on multiple platforms Pin
Deian28-Jan-05 12:52
Deian28-Jan-05 12:52 
GeneralRe: Testing code on multiple platforms Pin
User 137680028-Jan-05 14:25
User 137680028-Jan-05 14:25 
GeneralRe: Testing code on multiple platforms Pin
Deian29-Jan-05 1:20
Deian29-Jan-05 1:20 
GeneralRe: Testing code on multiple platforms Pin
toxcct29-Jan-05 2:24
toxcct29-Jan-05 2:24 
GeneralCFileDialog Pin
JKallen28-Jan-05 12:33
JKallen28-Jan-05 12:33 
GeneralRe: CFileDialog Pin
PJ Arends28-Jan-05 14:42
professionalPJ Arends28-Jan-05 14:42 
GeneralRe: CFileDialog Pin
JKallen29-Jan-05 0:58
JKallen29-Jan-05 0:58 
QuestionUnsized array of tokens??? Pin
r3dqu33n28-Jan-05 10:20
r3dqu33n28-Jan-05 10:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.