newtofoxpro
Programmer
This is FPW code
PosFromTop = 3
PosFromLeft = 2
SpaceBetweenCharactor = 2.5
WhatToPrint = "MY NAME IS JOHN"
@ PosFromTop,PosFromLeft say SUBSTR(WhatToPrint,1,1) size 1,SpaceBetweenCharactor
FOR mCnt=2 TO LEN(WhatToPrint)
@ $,$ say SUBSTR(WhatToPrint,mCnt,1) size 1,SpaceBetweenCharactor
ENDFOR
**************************************
WhatToPrint is string I have to print via report. With Custom-define location. Not tried but learn that I will have to alter FRX and change vpos & hpos.
My pre-printed paper has small-boxes where I have to write each character in the box. For Example... 1st box <M>, 2nd box <Y> and so on. Fortunately each box width is equal.
Best Regards.
PosFromTop = 3
PosFromLeft = 2
SpaceBetweenCharactor = 2.5
WhatToPrint = "MY NAME IS JOHN"
@ PosFromTop,PosFromLeft say SUBSTR(WhatToPrint,1,1) size 1,SpaceBetweenCharactor
FOR mCnt=2 TO LEN(WhatToPrint)
@ $,$ say SUBSTR(WhatToPrint,mCnt,1) size 1,SpaceBetweenCharactor
ENDFOR
**************************************
WhatToPrint is string I have to print via report. With Custom-define location. Not tried but learn that I will have to alter FRX and change vpos & hpos.
My pre-printed paper has small-boxes where I have to write each character in the box. For Example... 1st box <M>, 2nd box <Y> and so on. Fortunately each box width is equal.
Best Regards.