Private Sub cmdprint_Click()

i am searching the code of the command button for printing, at the above.. now,
the
textidno.text =
textborrowersname.text =

what is code after the " = "

Recommended Answers

All 2 Replies

printer.print text1.text

use it. or more then ask

Make use of the common dialog control (Under 'Projects/Components/Microsoft Common Dialog Control 6.0 (spxx) xx being your service pack utilized'. When clicking on the command button -

Command1_Click()
cdlgPrint.PrinterDefault = True 'If using the default printer
cdlgPrint.Orientation = cdlLandscape 'Depending on the orientation needed, portrait or landscape
cdlgPrint.Print Text1.Text

Play with all the different properties to ensure a perfect print.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.