office-gobmx/wizards/source/tutorials/TutorialClose.xba
Kurt Zenker 3387bf1b14 INTEGRATION: CWS qwizards1 (1.1.2); FILE ADDED
2003/12/09 14:33:08 mexx 1.1.2.1: Initial revision
2004-05-19 12:25:54 +00:00

15 lines
No EOL
541 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="TutorialClose" script:language="StarBasic">REM ***** BASIC *****
Dim myCloseDialog As Object
Sub TutorialCloseMain
myCloseDialog = LoadDialog(&quot;Tutorials&quot;,&quot;TutorialCloseDialog&quot;)
myCloseDialog.Execute()
End Sub
Sub CloseYes(aEvent)
myCloseDialog.EndExecute()
DialogVisible = False
End Sub
</script:module>