Advertisement
Guest User

cic plus vite

a guest
Nov 19th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. QFile file("R:/tramegps.txt");
  2.  
  3. if(!file.open(QFile::ReadOnly | QFile::Text))
  4. ui->label_error->setText("Erreur d'ouverture de fichier");
  5.  
  6. QTextStream in(&file);
  7. tramegpsbrute = in.readAll();
  8. ui->lineEdit_tramebrute->setText(tramegpsbrute);
  9. file.close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement