I want to limit the range of tablet by textbox to print out, is this possible?
Code:range("texbox1.text:texbox2.text).printout
Printable View
I want to limit the range of tablet by textbox to print out, is this possible?
Code:range("texbox1.text:texbox2.text).printout
you can try like this
assuming the textboxes have text like A1 or C3vb Code:
range(texbox1.text & ":" & :texbox2.text).printout
it success with me like this without :
Thank youCode:range(texbox1.text & ":" & :texbox2.text).printout