'************************************************************************* ' ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. ' ' Copyright 2008 by Sun Microsystems, Inc. ' ' OpenOffice.org - a multi-platform office productivity suite ' ' $RCSfile: util_PathSettings.xba,v $ ' ' $Revision: 1.3 $ ' ' This file is part of OpenOffice.org. ' ' OpenOffice.org is free software: you can redistribute it and/or modify ' it under the terms of the GNU Lesser General Public License version 3 ' only, as published by the Free Software Foundation. ' ' OpenOffice.org is distributed in the hope that it will be useful, ' but WITHOUT ANY WARRANTY; without even the implied warranty of ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ' GNU Lesser General Public License version 3 for more details ' (a copy is included in the LICENSE file that accompanied this code). ' ' You should have received a copy of the GNU Lesser General Public License ' version 3 along with OpenOffice.org. If not, see ' ' for a copy of the LGPLv3 License. ' '************************************************************************* '************************************************************************* ' Be sure that all variables are dimensioned: option explicit Sub RunTest() '************************************************************************* ' SERVICE: ' com.sun.star.util.PathSettings '************************************************************************* On Error Goto ErrHndl Dim values(1) As String values(1) = oObj.Addin values(0) = values(1) + "New" PropertyTester.TestProperty("Addin", values()) values(1) = oObj.AutoCorrect values(0) = values(1) + "New" PropertyTester.TestProperty("AutoCorrect", values()) values(1) = oObj.AutoText values(0) = values(1) + "New" PropertyTester.TestProperty("AutoText", values()) values(1) = oObj.Backup values(0) = values(1) + "New" PropertyTester.TestProperty("Backup", values()) values(1) = oObj.Basic values(0) = values(1) + "New" PropertyTester.TestProperty("Basic", values()) values(1) = oObj.Bitmap values(0) = values(1) + "New" PropertyTester.TestProperty("Bitmap", values()) values(1) = oObj.Config values(0) = values(1) + "New" PropertyTester.TestProperty("Config", values()) values(1) = oObj.Dictionary values(0) = values(1) + "New" PropertyTester.TestProperty("Dictionary", values()) values(1) = oObj.Favorite values(0) = values(1) + "New" PropertyTester.TestProperty("Favorite", values()) values(1) = oObj.Filter values(0) = values(1) + "New" PropertyTester.TestProperty("Filter", values()) values(1) = oObj.Gallery values(0) = values(1) + "New" PropertyTester.TestProperty("Gallery", values()) values(1) = oObj.Graphic values(0) = values(1) + "New" PropertyTester.TestProperty("Graphic", values()) values(1) = oObj.Help values(0) = values(1) + "New" PropertyTester.TestProperty("Help", values()) values(1) = oObj.Linguistic values(0) = values(1) + "New" PropertyTester.TestProperty("Linguistic", values()) values(1) = oObj.Module values(0) = values(1) + "New" PropertyTester.TestProperty("Module", values()) values(1) = oObj.Palette values(0) = values(1) + "New" PropertyTester.TestProperty("Palette", values()) values(1) = oObj.Plugin values(0) = values(1) + "New" PropertyTester.TestProperty("Plugin", values()) values(1) = oObj.Storage values(0) = values(1) + "New" PropertyTester.TestProperty("Storage", values()) values(1) = oObj.Temp values(0) = values(1) + "New" PropertyTester.TestProperty("Temp", values()) values(1) = oObj.Template values(0) = values(1) + "New" PropertyTester.TestProperty("Template", values()) values(1) = oObj.UIConfig values(0) = values(1) + "New" PropertyTester.TestProperty("UIConfig", values()) values(1) = oObj.UserConfig values(0) = values(1) + "New" PropertyTester.TestProperty("UserConfig", values()) values(1) = oObj.UserDictionary values(0) = values(1) + "New" PropertyTester.TestProperty("UserDictionary", values()) values(1) = oObj.Work values(0) = values(1) + "New" PropertyTester.TestProperty("Work", values()) Exit Sub ErrHndl: Test.Exception() resume next End Sub