PrintSetup

Description

Calls the Printer Setup dialog box provided by the system printer driver and lets the user specify settings for the printer.

Syntax

PrintSetup ( )

Returns

Integer. Returns 1 if it succeeds and -1 if an error occurs.

Usage

The user’s settings have effect for the duration of the application only. After the application exits, printer settings revert to their previous values.

Examples

Example 1

These statements call the Printer Setup dialog box for the current system printer and then start a new print job:

long Job


// Call the printer setup program.

PrintSetup()


// Start a job and a new page.

Job = PrintOpen()

See also