History:
if the checkbox is enable,
I would like toprint the caption of chexkbox
and print the text of textbox (Qty)
Name of my textbox is Text1,Text2,Text3,,....
checkbox is ok to print :
If Check(i).Value = 1 Then
Printer.Print Check(i).Caption
End If
***************************
but with the textbox ????
If Check(i).Value = 1 Then
Printer.Print Check(i).Caption & " " & Texti.Text
End If
errorObject required (Error 424)
error with Text(i).Text and I can't rename the name of textbox with Text(1)
???
if the checkbox is enable,
I would like toprint the caption of chexkbox
and print the text of textbox (Qty)
Name of my textbox is Text1,Text2,Text3,,....
checkbox is ok to print :
If Check(i).Value = 1 Then
Printer.Print Check(i).Caption
End If
***************************
but with the textbox ????
If Check(i).Value = 1 Then
Printer.Print Check(i).Caption & " " & Texti.Text
End If
errorObject required (Error 424)
error with Text(i).Text and I can't rename the name of textbox with Text(1)
???