Ok buddy i will try best to help u
i guess you have a list box with instance name (List1) and u wanna print it.
Ok first we will have the contents of the list box copied to a HIDDEN textbox (text1) to be printed later
------------------------------------------------------------------------------------
Components u need:
List Box (List1)
Text Box (Text1) Properties: Visible=False
Command Button (Command1)
The Code:
Private sub Command1_Click
'copying contents of list1 to text1
for i=0 To List1.listcount - 1
Text1.text = Text1.text & vbCrLf + List1.list(i)
Next i
'Put ur code here to print the text box
end sub
NOTE: i dont remember the printing code now, If u need it just contact me
