We have added a new GLOBAL DefaultFormDialogClassName AS SYMBOL in the VOGUI classes for the next build. So all you will have to do in order to use a custom FormDialog Dispatch() is to define the subclass as mentioned earlier and assign the name of this class to the global:
Code: Select all
CLASS MyFormDialogWindow INHERIT __FormDialogWindow
METHOD Dispatch(oEvent)
...
END CLASS
FUNCTION Start()
...
DefaultFormDialogClassName := #MyFormDialogWindow