lomat62 Fan de Sébastien Loeb | comment fairiez vous l'algo de cette méthode:
Code :
- void TPointage::RecupData (string NewName)
- {
- ifstream entreeFichierClient(NewName.c_str(),ios::in);
- string Nom, RA, DEC, M1, M2, M3, M4, M5;
- if (!entreeFichierClient) //Si louverture nest pas possible
- {
- Application->MessageBox("Ouverture du fichier impossible", "Warning" );
- }
-
- else
- {
-
- while (entreeFichierClient>>Nom>>RA>>DEC>>M1>>M2>>M3>>M4>>M5)
- {
- ListNom->Items->Add(Nom.c_str());
- int n=ListNom->Items->Count; //Nombre d'objet dans la listbox
-
- for (int i=0; i<n; i++)
- if(ListNom->Selected[i])
- {
- if (ListNom->Items->Strings[i]==Nom.c_str())
- {
- EditRA->Text=RA.c_str();
- EditDec->Text=DEC.c_str();
- EditMagnitude->Text=M1.c_str();
- }
- }
- }
- }
- }
|
|