StandardFileDialog.Dispatch Method | |
Intercept messages normally handled by the dialog box procedure in COMMDLG.DLL. Override this method to add your own custom processing.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Dispatch(
oEvt,
hDlg
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Dispatch(
Usual oEvt = default,
Usual hDlg = default
)
Request Example
View SourceParameters
- oEvt (Optional)
- Type: Usual
An Event object. - hDlg (Optional)
- Type: Usual
Handle of the dialog box.
Return Value
Type:
Usual
A long integer indicating if the message is to be handled by the dialog box procedure in COMMDLG.DLL. Returns a non zero value to indicate that no further processing of the message is required. Returns a zero to continue processing for this message.
See Also