SetRegistryKey 

Syntax

object.SetRegistryKey  lpszKey

lpszKey - A String that specifies  the registry key dedicated to store page setup information.

Description

Call this method to specify the name of a registry key which contains page setup information for  ELS-QB component.

Remarks

SetRegistryKey method returns True.

Note: by default (i.e if SetRegistryKey function is not used yet) ELS-QB component contains an empty string as a key to store page setup information.

Example

This sample code shows how to use SetRegistryKey method within ELS-QB Component,.

Private Sub Form_Load()

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

” \\ELS-QBDemo”

.....................

End Sub