05-27-2015, 10:12 AM
hi,
I've this function
I would like to export the graphic (or the text inside graphic) into a var, or make it available for the user after the program ending.
Is there a way to do this?
Salvo
I've this function
Code:
labelmat()
BEGIN
RECT_P();
TEXTOUT_P("Labels of the matrices", 10, 20, 3, RGB(255, 0, 0));
TEXTOUT_P("SL: Straight Line method", 10, 40, 3, RGB(0,255,0));
TEXTOUT_P("Depr. expence | Accum. dep. year-end", 10, 60);
TEXTOUT_P("| Book value y-end | Remaining val", 10, 75);
TEXTOUT_P("DB: Declining Balance method", 10, 95, 3, RGB(0,255,0));
TEXTOUT_P("Dep rate | D. expence | Accum. d. year-end", 10, 110);
TEXTOUT_P("| Book val y-end | Remaining val", 10, 125);
TEXTOUT_P("SOYD: Sum of the Years Digits method", 10, 145, 3, RGB(0,255,0));
TEXTOUT_P("Depr. Base | D. rate | D. expence ", 10, 160);
TEXTOUT_P("| Acc. dep. year-end | Book val y-end ", 10, 175);
TEXTOUT_P("| Remaining val", 10, 190);
WAIT;
smenu();
END;
I would like to export the graphic (or the text inside graphic) into a var, or make it available for the user after the program ending.
Is there a way to do this?
Salvo