Hi,
It is FileSystem property under /org.openoffice.Office.Common/Save/URL
configuration.
You can find it in the following file:
http://svn.apache.org/viewvc/openoffice/trunk/main/officecfg/registry/schema/org/openoffice/Office/Common.xcs?view=markup#l2326
Regards
2015-09-12 21:51 GMT+09:00 Jörg Schmidt <joesch@j-m-schmidt.de>:
> Hello,
>
> I will read and set the Option:
>
> Tools-Options-Load/Save-General-Save URLs relative to file system
>
> with a Macro.
>
>
> For Changing the MacroSecurityLevel i found this:
>
> Sub ChangeMacroSecurity
> Dim sNodePath As String
> Dim oCP, oCUA
>
> sNodePath = "/org.openoffice.Office.Common/Security/Scripting"
>
> Dim aProps(0) As New com.sun.star.beans.PropertyValue
>
> oCP =
> CreateUnoService("com.sun.star.configuration.ConfigurationProvider" )
> aProps(0).Name = "nodepath"
> aProps(0).Value = sNodePath
> oCUA =
> oCP.createInstanceWithArguments("com.sun.star.configuration.ConfigurationUpdateAccess",
> aProps )
>
> oCUA.MacroSecurityLevel = 0
> oCUA.commitChanges()
> End Sub
>
>
> But how should the line "sNodePath =
> "/org.openoffice.Office.Common/Security/Scripting"" look for my requirement?
>
> Unfortunately, when I use the XRAY-tool for inspect "oCUA" crashes
> OpenOffice.
>
>
>
> Greetings,
> Jörg
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: api-unsubscribe@openoffice.apache.org
> For additional commands, e-mail: api-help@openoffice.apache.org
>
>
|