blob: 27d929bf6fa9a7e0848d02467438dce4fdd3c37b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?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="DicOOo" script:language="StarBasic">Option Explicit
Sub StartDicOOo
Dim ThePath as string
Dim aService as object
Dim MyDicOOo as string
dim TheDoc as object
dim args(1) as new com.sun.star.beans.PropertyValue
on error resume next
' Find path
aService = CreateUnoService("com.sun.star.util.PathSubstitution")
ThePath =ConvertToURL(aService.substituteVariables("$(prog)", true))
ThePath=ThePath & "/../share/dict/ooo"
if fileExists(ThePath & "/DicOOo.lst") then
'read DicOOo.lst file
Open ThePath & "/DicOOo.lst" for input as #1
line input #1, MyDicOOo
close #1
else
'create default DicOOo.lst file
Open ThePath & "/DicOOo.lst" for output as #1
MyDicOOo=ThePath & "/DicOOo.sxw"
print #1, MyDicOOo
close #1
endif
'security
if Not fileExists(MyDicOOo) then
MyDicOOo= ThePath & "/DicOOo.sxw"
endif
MyDicOOo=ConvertToURL(MyDicOOo)
'Opens DicOOo main file
args(0).name="InteractionHandler"
args(0).value=""
args(1).name="MacroExecutionMode"
args(1).value=com.sun.star.document.MacroExecMode.ALWAYS_EXECUTE_NO_WARN '4
TheDoc=StarDesktop.loadComponentFromURL(MyDicOOo,"_blank",0,args())
End Sub</script:module>
|