|
DataForm |
|
DataForm is simple fixed form dialog to display complex RPG data. (Fore more complex forms you can create an instance of Internet Explorer and use HTML forms). You create DataForm object with Overseer.CreateDataForm() call. DataForm has the following properties:
The bottom area of dialog is an instance of WebBrowser
control. You can get interface to instance of this control by using GetHTMLTextDispatch()
call. After this call you can use WebBrowser control just like
regular instance of Internet Explorer. Note: You can have as many open DataForms as you want, but any data which is not assigned to global variable will be considered unassigned and will be deleted during next JScript garbage collection sweep. You can use this to your advantage to close DataForm objects from script: spellForm=Overseer.CreateDataForm(); // Dataform must be assigned to global variable
to remain into JScript memory |
|