DoPageSetup 

Syntax

object.DoPageSetup  lpszKey

lpszKey - A string representing representing the name of the registry key dedicated  to store page setup information.

Description

This method shows the Page Setup dialog of ELS-QB component with initial  values loaded from corresponding registry key (parameter lpszKey).

Remarks

DoPageSetup method returns True if operation successful and False otherwise.

Note: If Page Setup dialog is OK-ed by user,  the method stores input in the system registry.

Example

This sample code shows how to call Page Setup dialog within ELS-QB Component,.

Private Sub itmFilePageSetUp_Click()

ELS_QBCtrl.DoPageSetup “Software\\Epsilon-Logic Systems” & _

” \\ELS-QBDemo”

End Sub