c++ builder teeChart import timetag in text file -
i import text file (with x , y coordinates) on teechart. there times seconds want text fill in. adding time , x , y coordinates teechart when program runs. work on rad studio c++ builder vcl form app.
example 0.3 second add (3,5)
example text file:
timetag x y 0.3 10 5 ı cant use time. not code addcordinate button , openfile button
void __fastcall tform1::addcordbtnclick(tobject *sender) { series1->clear(); seriestextsource1->loadfromstrings(memo1->lines); } void __fastcall tform1::openfilebtnclick(tobject *sender) { if(opendialog1->execute()) { saveasbtn->enabled=true; spacesep->enabled=true; tabsep->enabled=true; commasep->enabled=true; changesep->enabled=true; memo1->lines->loadfromfile(opendialog1->filename); dosya_durumu=true; } }
ı cant use time. not code addcordinate button , openfile button
void __fastcall tform1::addcordbtnclick(tobject *sender) {
series1->clear(); seriestextsource1->loadfromstrings(memo1->lines); }
void __fastcall tform1::openfilebtnclick(tobject *sender) {
if(opendialog1->execute()) { saveasbtn->enabled=true; spacesep->enabled=true; tabsep->enabled=true; commasep->enabled=true; changesep->enabled=true; memo1->lines->loadfromfile(opendialog1->filename); dosya_durumu=true; } } @jacekcz

Comments
Post a Comment