Click here to Skip to main content
15,929,439 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: FileLength Pin
Mark Salsbery16-Feb-07 11:35
Mark Salsbery16-Feb-07 11:35 
Questionfile manage problem Pin
david bagaturia14-Feb-07 19:05
david bagaturia14-Feb-07 19:05 
AnswerRe: file manage problem Pin
prasad_som14-Feb-07 19:07
prasad_som14-Feb-07 19:07 
QuestionProblem with creation of word documentation in paragraph form Pin
puthu13-Feb-07 23:14
puthu13-Feb-07 23:14 
AnswerRe: Problem with creation of word documentation in paragraph form Pin
Christian Graus14-Feb-07 22:22
protectorChristian Graus14-Feb-07 22:22 
QuestionLooking For Good Tutorial Pin
Pankaj.Jain13-Feb-07 22:07
professionalPankaj.Jain13-Feb-07 22:07 
AnswerRe: Looking For Good Tutorial Pin
Christian Graus14-Feb-07 22:22
protectorChristian Graus14-Feb-07 22:22 
QuestionCommand line compiler help needed!!! Pin
kybalion13-Feb-07 22:03
kybalion13-Feb-07 22:03 
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. I'm using cl.exe and the command "C:\cl test.cpp".
Can the command line compiler be used on this type of code?

#include 
#include 
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^ 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
Mark Salsbery14-Feb-07 8:09
Mark Salsbery14-Feb-07 8:09 
AnswerRe: Command line compiler help needed!!! Pin
aossoble16-Feb-07 7:10
aossoble16-Feb-07 7:10 
QuestionCode conversion from FORTRAN to C++ Pin
Karismatic13-Feb-07 19:02
Karismatic13-Feb-07 19:02 
AnswerRe: Code conversion from FORTRAN to C++ Pin
Christian Graus14-Feb-07 22:23
protectorChristian Graus14-Feb-07 22:23 
AnswerRe: Code conversion from FORTRAN to C++ Pin
Alaric_16-Feb-07 3:06
professionalAlaric_16-Feb-07 3:06 
QuestionHow can I Refresh List Box in a loop adding item Pin
Pankaj.Jain12-Feb-07 22:53
professionalPankaj.Jain12-Feb-07 22:53 
AnswerRe: How can I Refresh List Box in a loop adding item Pin
prasad_som12-Feb-07 23:07
prasad_som12-Feb-07 23:07 
GeneralRe: How can I Refresh List Box in a loop adding item Pin
Pankaj.Jain12-Feb-07 23:42
professionalPankaj.Jain12-Feb-07 23:42 
AnswerRe: How can I Refresh List Box in a loop adding item Pin
prasad_som13-Feb-07 1:29
prasad_som13-Feb-07 1:29 
QuestionUnicode Strings and the L prefix Pin
«_Superman_»12-Feb-07 19:31
professional«_Superman_»12-Feb-07 19:31 
AnswerRe: Unicode Strings and the L prefix Pin
Christian Graus13-Feb-07 9:58
protectorChristian Graus13-Feb-07 9:58 
QuestionRe: Unicode Strings and the L prefix Pin
«_Superman_»13-Feb-07 22:11
professional«_Superman_»13-Feb-07 22:11 
AnswerRe: Unicode Strings and the L prefix Pin
John R. Shaw14-Feb-07 9:46
John R. Shaw14-Feb-07 9:46 
QuestionRe: Unicode Strings and the L prefix Pin
«_Superman_»18-Feb-07 18:49
professional«_Superman_»18-Feb-07 18:49 
AnswerRe: Unicode Strings and the L prefix Pin
John R. Shaw22-Feb-07 4:52
John R. Shaw22-Feb-07 4:52 
QuestionHow can I increase stack limit in C language? Pin
BawaSingh12-Feb-07 18:01
BawaSingh12-Feb-07 18:01 
AnswerRe: How can I increase stack limit in C language? Pin
prasad_som12-Feb-07 18:13
prasad_som12-Feb-07 18:13 

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.