Спасибо я понял !
Последнии вопрос! Как будет выглядеть код если мне нужно расспечатать код с двух текстбоксов?
Например:
sub myprint()
on error goto errhdl
dim rc as rect
set prn = printers (1)
with rc
left = 10
top = 10
right = 400
bottom = 400
end with
drawtext prn.hdc, text1.text & chr(0), len(text1.text)+1, rc, DT_LEFT or DT_TOP
drawtext prn.hdc, text2.text & chr(0), len(text1.text)+1, rc, DT_LEFT or
DT_TOP ' Так можно сделать , если нет приведи пример правильного кода !
prn.enddoc
exit sub
errhdl:
msgbox "An error occured while printing to " & prn.devicename & ": " & err.description
end sub