Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ifstream f;
- AnsiChar c;
- int i;
- f.open("moje-meno.txt");
- if ( f.fail() ) {
- ShowMessage("Chyba pri otvarani!");
- } else {
- Label2->Caption = "";
- while ( f.good() ) {
- c = f.get();
- Label2->Caption=Label2->Caption + c;
- }
- f.close();
- }
Advertisement
Add Comment
Please, Sign In to add comment