blob: 2438243b82ff0bc2b2d11949482138d8de9679dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?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("Tutorials","TutorialCloseDialog")
myCloseDialog.Execute()
End Sub
Sub CloseYes(aEvent)
myCloseDialog.EndExecute()
DialogVisible = False
End Sub
</script:module>
|