Disferente
Programmer
How can I find out how wide the tab is when using it with picturebox.print and printer.print?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue][Private Function GetTabn(ByVal n As Long, ctlControl As Object) As Double
Dim CurrentX As Double
CurrentX = ctlControl.CurrentX
ctlControl.CurrentX = 0
ctlControl.Print Tab(n);
GetTabn = ctlControl.CurrentX
ctlControl.CurrentX = CurrentX
End Function[/blue]