Click here to Skip to main content
15,890,932 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How To Look At GCC C Sources Pin
Richard MacCutchan24-Apr-16 5:44
mveRichard MacCutchan24-Apr-16 5:44 
AnswerRe: How To Look At GCC C Sources Pin
Jochen Arndt24-Apr-16 21:32
professionalJochen Arndt24-Apr-16 21:32 
GeneralRe: How To Look At GCC C Sources Pin
Frederick J. Harris24-Apr-16 23:57
Frederick J. Harris24-Apr-16 23:57 
QuestionExchanging data using CSocket Pin
manoharbalu22-Apr-16 22:30
manoharbalu22-Apr-16 22:30 
AnswerRe: Exchanging data using CSocket Pin
Jochen Arndt22-Apr-16 23:30
professionalJochen Arndt22-Apr-16 23:30 
GeneralRe: Exchanging data using CSocket Pin
manoharbalu24-Apr-16 20:23
manoharbalu24-Apr-16 20:23 
GeneralRe: Exchanging data using CSocket Pin
Jochen Arndt24-Apr-16 20:53
professionalJochen Arndt24-Apr-16 20:53 
QuestionAdding UI to an existing console project using windows form Pin
Member 935023722-Apr-16 6:05
Member 935023722-Apr-16 6:05 
Hi all!,

I'm planning to create a windows form based UI to my existing console project. Would be great if someone can give a detailed step-wise procedure for the same.

Here is the part of my code shows what all parameters I need to get through console:
C++
printf ("\n");
  printf ("-----------------------------------\n");
   printf ("\n\n");

  printf ("Dyad name:");
  scanf("%s",fname);
  printf ("\n\n");

      printf ("Epoch number [1-%d]:",NEPOCHS);
  scanf("%d",&epoch);
  printf ("\n\n");

  printf("Group: Haptic (0) or Visuo-haptic (1):");
  scanf("%d",&lineEnable);
  printf ("\n\n");

  switch(lineEnable){
  case 0: // Haptic
      strcpy(prefix,"haptic");
      break;
  case 1: // Visuo-Haptic
      strcpy(prefix,"visuohaptic");
  }

  printf ("\n\n");
  printf ("[x] - Exit application\n");
  printf ("\n\n");

Thank you!
AnswerRe: Adding UI to an existing console project using windows form Pin
Richard MacCutchan22-Apr-16 6:47
mveRichard MacCutchan22-Apr-16 6:47 
GeneralRe: Adding UI to an existing console project using windows form Pin
Member 935023725-Apr-16 21:51
Member 935023725-Apr-16 21:51 
AnswerRe: Adding UI to an existing console project using windows form Pin
leon de boer24-Apr-16 15:49
leon de boer24-Apr-16 15:49 
GeneralRe: Adding UI to an existing console project using windows form Pin
Member 935023725-Apr-16 21:55
Member 935023725-Apr-16 21:55 
QuestionCode Blocks giving fatal error of not finding header file when there are seperate class files Pin
Mur250122-Apr-16 3:07
Mur250122-Apr-16 3:07 
SuggestionRe: Code Blocks giving fatal error of not finding header file when there are seperate class files Pin
Richard MacCutchan22-Apr-16 4:15
mveRichard MacCutchan22-Apr-16 4:15 
QuestionRe: Code Blocks giving fatal error of not finding header file when there are seperate class files Pin
David Crow22-Apr-16 17:58
David Crow22-Apr-16 17:58 
QuestionCan DDX_Text be used with CTEXT resource item Pin
ForNow21-Apr-16 16:58
ForNow21-Apr-16 16:58 
QuestionRe: Can DDX_Text be used with CTEXT resource item Pin
Richard MacCutchan21-Apr-16 20:48
mveRichard MacCutchan21-Apr-16 20:48 
AnswerRe: Can DDX_Text be used with CTEXT resource item Pin
ForNow22-Apr-16 3:26
ForNow22-Apr-16 3:26 
AnswerRe: Can DDX_Text be used with CTEXT resource item Pin
Victor Nijegorodov22-Apr-16 0:39
Victor Nijegorodov22-Apr-16 0:39 
GeneralRe: Can DDX_Text be used with CTEXT resource item Pin
ForNow22-Apr-16 3:25
ForNow22-Apr-16 3:25 
Questioncode path for DoModal Pin
ForNow17-Apr-16 6:21
ForNow17-Apr-16 6:21 
AnswerRe: code path for DoModal Pin
Victor Nijegorodov17-Apr-16 6:58
Victor Nijegorodov17-Apr-16 6:58 
GeneralRe: code path for DoModal Pin
ForNow17-Apr-16 7:07
ForNow17-Apr-16 7:07 
GeneralRe: code path for DoModal Pin
leon de boer17-Apr-16 7:54
leon de boer17-Apr-16 7:54 
QuestionRe: code path for DoModal Pin
David Crow18-Apr-16 4:04
David Crow18-Apr-16 4:04 

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.