RE: TEXTOUT_P: export graphic?
(05-27-2015 07:22 PM)DrD Wrote: ...
If this info isn't helpful, you can send me your code snippet, and I'll try to figure out what is happening there. In short, you can specify what rectangular sector(s) you want to clear, or transfer via rect_p() or blit_p(), by use of the x,y pixel coordinates of the specific grob variable.
I get always two copy, however, kindly, try this code:
Code:
EXPORT labelmat()
BEGIN
RECT_P();
TEXTOUT_P("Labels of the tables", 85, 10, 5, RGB(255, 0, 0));
LINE_P(10,35,300,35, RGB(0,0,255));
TEXTOUT_P("SL: Straight Line method", 10, 45, 3, RGB(0,0,0),210, RGB(0,255,0));
TEXTOUT_P("| Depr. expence | Accumul. dep. at year-end |", 5, 65);
TEXTOUT_P("| Book value at year-end | Remaining value |", 5, 80);
TEXTOUT_P("DB: Declining Balance method", 10, 100, 3, RGB(0,0,0),210, RGB(0,255,0));
TEXTOUT_P("| Dep. rate | D. expence | Accum. d. y-end |", 5, 115);
TEXTOUT_P("| Book value at year-end | Remaining value |", 5, 130);
TEXTOUT_P("SOYD: Sum of the Years Digits method", 10, 150, 3, RGB(0,0,0),250, RGB(0,255,0));
TEXTOUT_P("| Depreciation Base | Dep. rate | D. expence |", 5, 165);
TEXTOUT_P("| Accumulated dep. y-end | Book val y-end |", 5, 180);
TEXTOUT_P("| Remaining value |", 5, 195);
BLIT_P(G1, G0);
WAIT;
END;
∫aL√0mic (IT9CLU) :: HP Prime 50g 41CX 71b 42s 39s 35s 12C 15C - DM42, DM41X - WP34s Prime Soft. Lib
|