Click here to Skip to main content
15,915,703 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to migrate project fromVC++ 6.0 to VC++.Net Pin
Hamid_RT13-Feb-07 21:52
Hamid_RT13-Feb-07 21:52 
GeneralRe: How to migrate project fromVC++ 6.0 to VC++.Net Pin
jhwurmbach13-Feb-07 21:54
jhwurmbach13-Feb-07 21:54 
GeneralRe: How to migrate project fromVC++ 6.0 to VC++.Net Pin
Hamid_RT13-Feb-07 22:01
Hamid_RT13-Feb-07 22:01 
GeneralRe: How to migrate project fromVC++ 6.0 to VC++.Net Pin
toxcct13-Feb-07 22:00
toxcct13-Feb-07 22:00 
GeneralRe: How to migrate project fromVC++ 6.0 to VC++.Net Pin
jhwurmbach13-Feb-07 22:22
jhwurmbach13-Feb-07 22:22 
GeneralRe: How to migrate project fromVC++ 6.0 to VC++.Net Pin
toxcct13-Feb-07 22:25
toxcct13-Feb-07 22:25 
AnswerRe: How to migrate project fromVC++ 6.0 to VC++.Net Pin
Michael Dunn13-Feb-07 23:01
sitebuilderMichael Dunn13-Feb-07 23:01 
QuestionCommand line compiler help needed!!!! Pin
kybalion13-Feb-07 21:34
kybalion13-Feb-07 21:34 
Hi! I'm trying to compile the below code with the command line compiler but I get a bunch of errors? Errors like 'System' is not a class or namespace name
Can the command line compiler be used on this type of code? This is for dynamic analysis of c code. I have to use the command line compiler.

#include <stdio.h>
#include <stdlib.h>
using namespace System::IO;
using namespace System::Text::RegularExpressions;
void main (void)
{
int index = 0;
String ^line;
Regex^ rx = gcnew Regex(",")
StreamReader^ sr = gcnew StreamReader(testfile.tif);
while ( line = sr->ReadLine() )
{
array<int>^ ia = rx->Split(line);
}
int a=array[index++];
int b=array[index++];
 int c=array[index++];
 if (a <= 42)
 {
  b--;
  if (c > 1444)
     c--;
 }
 
 else if (a > 42)
 {
   do {
 
   a += b;
  
   }
   while (b <= 1000);
 }
 return;
}

AnswerRe: Command line compiler help needed!!!! Pin
jhwurmbach13-Feb-07 21:56
jhwurmbach13-Feb-07 21:56 
AnswerRe: Command line compiler help needed!!!! Pin
David Crow14-Feb-07 2:32
David Crow14-Feb-07 2:32 
AnswerRe: Command line compiler help needed!!!! Pin
Mark Salsbery14-Feb-07 6:29
Mark Salsbery14-Feb-07 6:29 
Questionhow to format unicode strings for Rich Edit? Pin
Swapnil G13-Feb-07 20:39
Swapnil G13-Feb-07 20:39 
AnswerRe: how to format unicode strings for Rich Edit? Pin
Hamid_RT13-Feb-07 21:26
Hamid_RT13-Feb-07 21:26 
AnswerRe: how to format unicode strings for Rich Edit? Pin
Mark Salsbery14-Feb-07 6:31
Mark Salsbery14-Feb-07 6:31 
QuestionHow to create Log file and how it is use Pin
Atul2313-Feb-07 20:12
Atul2313-Feb-07 20:12 
AnswerRe: How to create Log file and how it is use Pin
Hamid_RT13-Feb-07 21:15
Hamid_RT13-Feb-07 21:15 
QuestionOFN_ALLOWMULTISELECT is not working in openfile dialog Pin
amitmistry_petlad 13-Feb-07 19:25
amitmistry_petlad 13-Feb-07 19:25 
AnswerRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
Nibu babu thomas13-Feb-07 19:29
Nibu babu thomas13-Feb-07 19:29 
AnswerRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
Waldermort13-Feb-07 19:33
Waldermort13-Feb-07 19:33 
GeneralRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
amitmistry_petlad 13-Feb-07 19:56
amitmistry_petlad 13-Feb-07 19:56 
GeneralRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
Roger Stoltz13-Feb-07 20:53
Roger Stoltz13-Feb-07 20:53 
GeneralRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
amitmistry_petlad 13-Feb-07 21:35
amitmistry_petlad 13-Feb-07 21:35 
GeneralRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
amitmistry_petlad 13-Feb-07 22:43
amitmistry_petlad 13-Feb-07 22:43 
AnswerRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
Roger Stoltz14-Feb-07 1:23
Roger Stoltz14-Feb-07 1:23 
GeneralRe: OFN_ALLOWMULTISELECT is not working in openfile dialog Pin
amitmistry_petlad 14-Feb-07 2:03
amitmistry_petlad 14-Feb-07 2:03 

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.