|
Advanced PowerBuilder PrintStart EventThis event occurs as soon as PowerBuilder starts printing. The total number of pages that are going to print, PagesMax, is passed as parameter to this event. You might want to ask the user whether the printer has that many papers in the tray or not. However, you can’t stop printing from this event programmatically, instead you need to code in the PrintPage event.
// Object: DataWindow dw_product in w_product_master window
// Event: PrintStart
w_mdi_frame.SetMicroHelp( "Starting to Print…" ) |
|