Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. void __fastcall TForm1::rbComprChange()
  2. {
  3. Series5->Clear(); //used for clearing the series to regenerate them from the user input
  4.  
  5. for(int i=0;i<StringGrid1->RowCount;i++)
  6. {
  7. Series5->AddGantt(StrToDate(StringGrid1->Cells[4][i]),StrToDate(StringGrid1->Cells[5][i]),i,StringGrid1->Cells[1][i]);
  8. Series5->NextTask->Value[i]=i;
  9. }
  10. // How and where should i draw these rectangles?!
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement