środa, 23 maja 2018

Copy from StringGrid to ListBox. Use ostringstream. C++ Builder



void __fastcall TForm1::FormCreate(TObject *Sender)
{
 int i,j;
  for(i=0;i<10;i++)
   for(j=0;j<10;j++)
    StringGrid1->Cells[i][j]=IntToStr((i+1)*(j+1));
}


void __fastcall TForm1::Button1Click(TObject *Sender)
{

 std::ostringstream test[10];
 int i,j;
 for(i=0;i<10;i++)
 {
  for(j=0;j<10;j++)
  {
   test[i]<<StrToInt(StringGrid1->Cells[i][j])<<" ";

  }

 }

 for(i=0;i<10;i++)
 ListBox1->Items->Add(test[i].str().c_str());

}

Brak komentarzy:

Prześlij komentarz