Hi Folks-
Like I have a command button as follows"
Private cmdPrint_Click()
printlistview
End Sub
Here Printlist view is a function which printing the listview directly But is it possible to show printer dialouge before printing in above code?
Sohel
Printable View
Hi Folks-
Like I have a command button as follows"
Private cmdPrint_Click()
printlistview
End Sub
Here Printlist view is a function which printing the listview directly But is it possible to show printer dialouge before printing in above code?
Sohel
You just have to do this:
Don' know if it's what you want but...Code:Private Sub Command1_Click()
CommonDialog1.ShowPrinter
End Sub
If not specify!!