I have command as :
aD := { "Lunedi", "Martedi", "Mercoledi", "Giovedi", "Venerdi", "Sabato" }
? " |"
FOR i := 1 TO 6
?? PadC( aD[ i ], LARG ) + "|"
NEXT
? "---+" + Replicate( Replicate( "-", LARG ) + "+", 6 )
How I can convert it into printer fwh ?
or exist a class that read the old clipper command ?
converting to fwh
- Silvio.Falconi
- Posts: 7119
- Joined: Thu Oct 18, 2012 7:17 pm
converting to fwh
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Re: converting to fwh
Instead of printing, create a string variable. Then use a listbox widget and add a new line with the string text. Of course, assign the listbox Courier New font, so that all text is aligned.
Or, if you consider all the code, you can create a table and assign cell text....
Or, if you consider all the code, you can create a table and assign cell text....