GamerSK

vypis mena

Feb 7th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. ifstream f;
  2.     AnsiChar c;
  3.     int i;
  4.     f.open("moje-meno.txt");
  5.     if ( f.fail() ) {
  6.         ShowMessage("Chyba pri otvarani!");
  7.     } else {
  8.         Label2->Caption = "";
  9.          while ( f.good() ) {
  10.             c = f.get();
  11.             Label2->Caption=Label2->Caption + c;
  12.         }
  13.         f.close();
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment