Hi all,
I am quite new to visual programming, and i am trying to read a text file and display the contexts to a label or text box.
I know the commands in C++ , for example
but how about a textBox?
any ideas?
thanks
I am quite new to visual programming, and i am trying to read a text file and display the contexts to a label or text box.
I know the commands in C++ , for example
Code:
inFile.open( “in.txt” );
while(!inFile.eof())
inFile.getline(line,10);
any ideas?
thanks