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

Managed C++/CLI

 
GeneralRe: turn on/off the lights Pin
Eytukan10-Aug-05 7:10
Eytukan10-Aug-05 7:10 
GeneralSingle thread - multi thread Pin
Laffis9-Aug-05 22:57
Laffis9-Aug-05 22:57 
GeneralCharacters in ListBox line Pin
john.angel9-Aug-05 15:17
john.angel9-Aug-05 15:17 
GeneralRe: Characters in ListBox line Pin
Laffis9-Aug-05 22:47
Laffis9-Aug-05 22:47 
GeneralRe: Characters in ListBox line Pin
john.angel10-Aug-05 5:43
john.angel10-Aug-05 5:43 
Questionsecond constructor call after object is created? Pin
headlessjo9-Aug-05 12:07
headlessjo9-Aug-05 12:07 
AnswerRe: second constructor call after object is created? Pin
S. Senthil Kumar9-Aug-05 23:52
S. Senthil Kumar9-Aug-05 23:52 
GeneralHelp with disecting a string! Pin
wallyson9-Aug-05 7:34
wallyson9-Aug-05 7:34 
I am on a project that reads in assembler language from a file and then prints if out. here is an example.

input:
ADD 4,2,1
TEST
JMP 3
BR 14
ADD 3,7,9

the output should look like this:
Op code: ADD
Params: 4
Params: 2
Params: 1
Opcode: TEST
No Params.
Opcode: JMP
Params: 3
ect......

Here is what my code looks like:
int main()
{
string theLine;
string op;
string p;
ifstream infile;
infile.open("assembler.txt");
int line=0;
while(getline(infile,theLine))
{
cout<
GeneralRe: Help with disecting a string! Pin
13-Sep-05 10:34
suss13-Sep-05 10:34 
GeneralHelp needed overriding toolbar events!! Pin
richiemac8-Aug-05 23:55
richiemac8-Aug-05 23:55 
GeneralPDF Print Driver Pin
serge0058-Aug-05 10:20
serge0058-Aug-05 10:20 
GeneralRe: PDF Print Driver Pin
Christian Graus8-Aug-05 13:12
protectorChristian Graus8-Aug-05 13:12 
GeneralRe: PDF Print Driver Pin
serge0059-Aug-05 3:22
serge0059-Aug-05 3:22 
GeneralRe: PDF Print Driver Pin
Christian Graus9-Aug-05 13:01
protectorChristian Graus9-Aug-05 13:01 
Generalmemory leak question Pin
valerie998-Aug-05 10:07
valerie998-Aug-05 10:07 
GeneralRe: memory leak question Pin
Christian Graus8-Aug-05 13:22
protectorChristian Graus8-Aug-05 13:22 
QuestionHow to 'grey out' toolBarButtons?? Pin
richiemac8-Aug-05 3:56
richiemac8-Aug-05 3:56 
GeneralNested function calls and performance Pin
kramkrish8-Aug-05 2:21
kramkrish8-Aug-05 2:21 
GeneralRe: Nested function calls and performance Pin
Christian Graus8-Aug-05 13:25
protectorChristian Graus8-Aug-05 13:25 
GeneralLinkage in c++ Pin
Rajesh_K_Sharma5-Aug-05 18:25
Rajesh_K_Sharma5-Aug-05 18:25 
GeneralRe: Linkage in c++ Pin
ursus zeta7-Aug-05 10:33
ursus zeta7-Aug-05 10:33 
GeneralRegister variable Pin
Rajesh_K_Sharma5-Aug-05 18:21
Rajesh_K_Sharma5-Aug-05 18:21 
GeneralRe: Register variable Pin
Christian Graus7-Aug-05 19:15
protectorChristian Graus7-Aug-05 19:15 
GeneralRe: Register variable Pin
raytotti5712-Aug-05 2:43
raytotti5712-Aug-05 2:43 
GeneralRe: Register variable Pin
raytotti5712-Aug-05 3:15
raytotti5712-Aug-05 3:15 

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.