From d93f1af562e459899b1c2e41405069d0240644d4 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 9 Sep 2010 13:11:38 +0200 Subject: automationdev300m87: #i112208# - Implemented fuction to work with a local copy of a file which resides anywhere else in the filesystem. The file is then copied to the users work directory and opened from there. This is experimental and the function needs to be called explicitly. The function is another workaround for the paramount problem that we cannot reliably switch a readonly document to edit-mode. Used the opportunity to introduce a new global variable (and fix the case of others, as they are not constants as they were initially planned to be) --- testautomation/global/system/includes/gvariabl.inc | 11 ++- .../global/tools/includes/optional/t_filetools.inc | 93 ------------------- .../global/tools/includes/required/t_dir.inc | 40 ++++++++ .../global/tools/includes/required/t_files.inc | 102 ++++++++++++++++++++- 4 files changed, 148 insertions(+), 98 deletions(-) mode change 100755 => 100644 testautomation/global/system/includes/gvariabl.inc mode change 100755 => 100644 testautomation/global/tools/includes/optional/t_filetools.inc mode change 100755 => 100644 testautomation/global/tools/includes/required/t_dir.inc mode change 100755 => 100644 testautomation/global/tools/includes/required/t_files.inc diff --git a/testautomation/global/system/includes/gvariabl.inc b/testautomation/global/system/includes/gvariabl.inc old mode 100755 new mode 100644 index ca3764a1a51b..d9290ebb2c3c --- a/testautomation/global/system/includes/gvariabl.inc +++ b/testautomation/global/system/includes/gvariabl.inc @@ -171,11 +171,14 @@ Global Const GC_MACRO_SECURITY_LEVEL_DEFAULT = 2 '///+ GC_MACRO_SECURITY_LEVEL '///* OOo Improvement Program Global gOOoImprovementIsEnabled as boolean -'///* Performance flags -Global GLOBAL_USE_NEW_SLEEP as boolean ' keep the old sleep() behavior +'///* Performance flags, set to true to eliminate wait/sleep statements, default is FALSE +Global global_use_new_sleep as boolean -'///* If set to TRUE in master.inc many functions become more talkative -Global GVERBOSE as boolean +'///* If set to TRUE many functions become more talkative, default is FALSE +Global gVerbose as boolean + +'///* When using hFileOpenLocally(...) we do not know the filename under which the file has been saved. +Global gLastWorkFile as string sub OnlyForDocuGVariables '///System for the installed Office diff --git a/testautomation/global/tools/includes/optional/t_filetools.inc b/testautomation/global/tools/includes/optional/t_filetools.inc old mode 100755 new mode 100644 index 070427ef3c5b..7189a8e01a43 --- a/testautomation/global/tools/includes/optional/t_filetools.inc +++ b/testautomation/global/tools/includes/optional/t_filetools.inc @@ -260,80 +260,6 @@ end function '******************************************************************************* -function hGetWorkPath() as string - - '///

Retrieve the users work directory

- '///Uses: Call to UNO service
- '///Errorhandling: Fixes "$(user)"-type path (uses fallback)
- '///Errorhandling: Handles broken UNO connection (uses fallback)
- '///Input: - '///
    - '///+
  1. Nothing
  2. - '///
- '///Returns: - '///
    - '///+
  1. Path to local workdir (string)
  2. - '/// - '///
- '///Description: - '/// - -end function '******************************************************************************* @@ -389,24 +315,5 @@ end function '******************************************************************************* -function hGetWorkFile( cFileName as string ) as string - - '///

Returns a fully qualified filename to a workfile

- '///Input: - '///
    - '///+
  1. Filename without path (string)
  2. - '///
- '///Returns: - '///
    - '///+
  1. Filename including path to user work directory (string)
  2. - '///
- '///Description: - '/// - -end function diff --git a/testautomation/global/tools/includes/required/t_dir.inc b/testautomation/global/tools/includes/required/t_dir.inc old mode 100755 new mode 100644 index ee673e6b1c47..a7347d4d498d --- a/testautomation/global/tools/includes/required/t_dir.inc +++ b/testautomation/global/tools/includes/required/t_dir.inc @@ -288,4 +288,44 @@ function GetExtention ( Datei as String ) as string next i% GetExtention = Datei end function +' +'------------------------------------------------------------------------------- +' +function hSplitString( sString as string, sSeparator as string, iIndex as integer ) as string + + ' This function wraps around the "split" command and returns one single + ' item by index. Index = 0 means the *LAST* item is returned as this is + ' probably the most commonly used item. If the index is invalid (out of + ' bounds) we print a warning and return an error string. + + const CFN & "global::tools::includes::required::t_dir.inc:hSplitString(): " + const ERROR_MESSAGE = "Array out of bounds for the requested index in string " + const ARRAY_INDEX_CORRECTION = 1 ' The array lower boundary is zero but + ' function starts to count with one. + + ' Split the string into its fragments into an array with dynamic boundaries + dim sArray() as string: sArray() = split( sString, sSeparator ) + dim sReturnString as string + + ' Special case: Index out of bounds + if ( iIndex > ( ubound( sArray ) + ARRAY_INDEX_CORRECTION ) or iIndex < 0 ) then + warnlog( CFN & ERROR_MESSAGE & sString ) + hSplitString() = ERROR_MESSAGE & sString + exit function + endif + + ' Special case: Last item requested (this usually is the filename from a path) + if ( iIndex = 0 ) then + sReturnString = sArray( ubound( sArray() ) + if ( GVERBOSE ) then printlog( CFN & sReturnString ) + hSplitString() = sReturnString + exit function + endif + + ' Default is to return the requested item. + sReturnString = sArray( iIndex - ARRAY_INDEX_CORRECTION ) + if ( GVERBOSE ) then printlog( CFN & sReturnString ) + hSplitString() = sReturnString + +end function diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc old mode 100755 new mode 100644 index 4b0ddd09318b..e58ff1861ae4 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -103,7 +103,7 @@ end function function hIsNamedDocLoaded( cFileName as string ) as boolean ' Retrieve the current filename from the document properties - which in - ' comparision to the old approach to retrive the name from the file save + ' comparision to the old approach to retrieve the name from the file save ' dialog - gives us the file including its extension. So we only need ' to compare the last characters from a full path to be relatively ' certain that we work with the correct file. There is some small margin of @@ -497,6 +497,106 @@ function hDeleteFile( cFileOrig as string ) as boolean hDeleteFile() = true endif +end function +' +'------------------------------------------------------------------------------- +' +function hGetWorkFile( cFileName as string ) as string + hGetWorkFile() = hGetWorkPath() & cFileName +end function +' +'------------------------------------------------------------------------------- +' +function hGetWorkPath() as string + + ' Retrieve the user's work directory using the API (or fallback) + + dim sPath as string + dim oOfficeConnect as object + dim oOfficeConfig as object + dim bPathIsFromAPI as boolean + + const CFN = "global::tools::includes::required::t_files.inc:hGetWorkPath(): " + + ' Create an UNO service and ask it for the location of Work + try + oOfficeConnect = hGetUnoService( true ) + oOfficeConfig = oOfficeConnect.createInstance( "com.sun.star.util.PathSettings" ) + sPath = convertFromURL( oOfficeConfig.Work ) + bPathIsFromAPI = true + catch + printlog( CFN & "Could not access service, connection broken?" ) + sPath = convertpath( gOfficePath & "user/work" ) + bPathIsFromAPI = false + endcatch + + if ( GVERBOSE ) then + + printlog( CFN & "Path is: " & sPath ) + + ' Check path existence + if ( FileExists( sPath ) ) then + printlog( CFN & "Path exists." ) + else + warnlog( CFN & "Path does not exist." ) + endif + + ' Inform about the location from where the path was taken + if ( bPathIsFromAPI ) then + printlog( CFN & "Path was taken from API" ) + else + warnlog( CFN & "Path was taken from (hardcoded) fallback" ) + endif + + endif + + hGetWorkPath() = sPath & getPathSeparator + +end function +' +'------------------------------------------------------------------------------- +' +function hFileOpenLocally( _sSourcePath as string ) as boolean + + const CFN = "global::tools::includes::required::t_files.inc:hFileOpenLocally(): " + + GVERBOSE = true + + dim sSourcePath as string : sSourcePath = ConvertToURL( _sSourcePath ) + dim sTargetPath as string + dim sTargetFile as string + + ' If the source file does not exist we quit + if ( not FileExists( sSourcePath ) then + warnlog( CFN & "Source path/file does not exist: " & sSourcePath ) + hFileOpenLocally() = false + exit function + endif + + ' Find out what the name of the target file is going to be + sTargetFile = hSplitString( sSourcePath, "/", 0 ) + sTargetPath = hGetWorkFile( sTargetFile ) + + if ( FileExists( sTargetPath ) ) then + warnlog( CFN & "Target file already exists, replacing it!" ) + hFileDelete( sTargetPath ) + endif + + if ( GVERBOSE ) then + printlog( CFN & "Copying file" ) + printlog( CFN & "From: " & sSourcePath ) + printlog( CFN & "To..: " & sTargetPath ) + endif + + FileCopy( sSourcePath, sTargetPath ) + + ' This is a hook that allows to access the filename under which the file + ' has been saved. Due to restrictive coding guidelines we cannot return + ' the new filename. + gLastWorkFile = sTargetPath + + hFileOpenLocally() = hFileOpen( gLastWorkFile ) + end function ' '------------------------------------------------------------------------------- -- cgit From 5f16ce3e8bc1c757256904234fb88ca80e2ed308 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 9 Sep 2010 14:30:45 +0200 Subject: automationdev300m87: #i112208# - Change one single call of hFileOpen() to hFileOpenLocally() for testing purpose --- testautomation/writer/required/includes/w_001_.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 testautomation/writer/required/includes/w_001_.inc diff --git a/testautomation/writer/required/includes/w_001_.inc b/testautomation/writer/required/includes/w_001_.inc old mode 100755 new mode 100644 index 8cd43ccbcbae..fa07a188a07f --- a/testautomation/writer/required/includes/w_001_.inc +++ b/testautomation/writer/required/includes/w_001_.inc @@ -773,9 +773,9 @@ testcase tFileSaveAsExport Call hNewDocument PrintLog "Open document '..\writer\required\input\st1_1.sxw" - Call hFileOpen(xExport) + Call hFileOpenLocally(xExport) - Call sMakeReadOnlyDocumentEditable + 'Call sMakeReadOnlyDocumentEditable PrintLog "Select Save as .. and choose 'Microsoft Word 97/2000/XP' as export-filter" xExportFile = gOfficepath + "user\work\ecksport.doc" -- cgit From b2b84b6cebb9166e3ea9835bdcd0e44fb9726cc3 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 9 Sep 2010 14:40:53 +0200 Subject: automationdev300m87: #i112208# - Added more comments to ease understanding the purpose of the function, removed unnecessary exit function statements --- testautomation/global/tools/includes/required/t_files.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index e58ff1861ae4..23e520f57c16 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -34,7 +34,6 @@ function hGrafikEinfuegen( cFile as string ) as Boolean hGrafikEinfuegen() = hInsertGraphic( cFile, "Static" ) - exit function end function @@ -43,7 +42,6 @@ end function function hGrafikVerknuepftEinfuegen( cFile as string ) as Boolean hGrafikVerknuepftEinfuegen() = hInsertGraphic( cFile, "Linked" ) - exit function end function @@ -556,13 +554,12 @@ end function ' '------------------------------------------------------------------------------- ' -function hFileOpenLocally( _sSourcePath as string ) as boolean +function hFileOpenLocally( byVal sSourcePath as string ) as boolean const CFN = "global::tools::includes::required::t_files.inc:hFileOpenLocally(): " GVERBOSE = true - dim sSourcePath as string : sSourcePath = ConvertToURL( _sSourcePath ) dim sTargetPath as string dim sTargetFile as string @@ -588,6 +585,7 @@ function hFileOpenLocally( _sSourcePath as string ) as boolean printlog( CFN & "To..: " & sTargetPath ) endif + ' Copy the file from anywhere to the local user directory FileCopy( sSourcePath, sTargetPath ) ' This is a hook that allows to access the filename under which the file @@ -595,6 +593,8 @@ function hFileOpenLocally( _sSourcePath as string ) as boolean ' the new filename. gLastWorkFile = sTargetPath + ' Finally open the file from the local work directory. It should open + ' ready for editing hFileOpenLocally() = hFileOpen( gLastWorkFile ) end function -- cgit From faba6731e6f8d0ec5c0eebf555be2ff2286ebc78 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 9 Sep 2010 15:03:28 +0200 Subject: automationdev300m87: #i112208# - Fix two fatal typos --- testautomation/global/tools/includes/required/t_dir.inc | 2 +- testautomation/global/tools/includes/required/t_files.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_dir.inc b/testautomation/global/tools/includes/required/t_dir.inc index a7347d4d498d..8e4944ad3313 100644 --- a/testautomation/global/tools/includes/required/t_dir.inc +++ b/testautomation/global/tools/includes/required/t_dir.inc @@ -298,7 +298,7 @@ function hSplitString( sString as string, sSeparator as string, iIndex as intege ' probably the most commonly used item. If the index is invalid (out of ' bounds) we print a warning and return an error string. - const CFN & "global::tools::includes::required::t_dir.inc:hSplitString(): " + const CFN = "global::tools::includes::required::t_dir.inc:hSplitString(): " const ERROR_MESSAGE = "Array out of bounds for the requested index in string " const ARRAY_INDEX_CORRECTION = 1 ' The array lower boundary is zero but ' function starts to count with one. diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index 23e520f57c16..46ff47bfdf1c 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -564,7 +564,7 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean dim sTargetFile as string ' If the source file does not exist we quit - if ( not FileExists( sSourcePath ) then + if ( not FileExists( sSourcePath ) ) then warnlog( CFN & "Source path/file does not exist: " & sSourcePath ) hFileOpenLocally() = false exit function -- cgit From 152b4ab06a6cb6f106b58acb24755411eb1c94f8 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 9 Sep 2010 15:16:59 +0200 Subject: automationdev300m87: #i112208# - Test some more functions in w_007_.inc --- testautomation/writer/required/includes/w_007_.inc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) mode change 100755 => 100644 testautomation/writer/required/includes/w_007_.inc diff --git a/testautomation/writer/required/includes/w_007_.inc b/testautomation/writer/required/includes/w_007_.inc old mode 100755 new mode 100644 index 94fa0d70f9f9..8f6e3f28d398 --- a/testautomation/writer/required/includes/w_007_.inc +++ b/testautomation/writer/required/includes/w_007_.inc @@ -84,8 +84,8 @@ testcase tToolsSpellcheck Warnlog "Found no Document for the language you're testing in, Please inform the Test-Developer." goto endsub end if - hFileOpen ( TheFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( TheFile ) + 'Call sMakeReadOnlyDocumentEditable printlog " Insert some faulty text" select case iSprache @@ -246,8 +246,8 @@ testcase tToolsThesaurus Warnlog "Found no Document for the language you're testing in, Please inform the Test-Developer." goto endsub end if - call hFileOpen( TheFile ) - Call sMakeReadOnlyDocumentEditable + call hFileOpenLocally( TheFile ) + 'Call sMakeReadOnlyDocumentEditable printlog " Insert some faulty text" select case iSprache @@ -337,7 +337,7 @@ testcase tToolsHyphenation Select Case gApplication Case "WRITER" - hFileOpen( DieDatei ) + hFileOpenLocally( DieDatei ) Case "MASTERDOCUMENT" if wInsertDocumentinMasterDoc(DieDatei) = False then @@ -354,7 +354,7 @@ testcase tToolsHyphenation goto endsub end select - Call sMakeReadOnlyDocumentEditable + 'Call sMakeReadOnlyDocumentEditable printlog " Insert file 'writer\required\input\linguistik\0 + [OfficeLanguage] + '.odt'" Sleep 1 Call wTypeKeys ("") @@ -986,8 +986,8 @@ testcase tToolsHangulHanjaConversion bAsianLanguage = ActiveDeactivateAsianSupport(TRUE) printlog " Open the test file" - hFileOpen (sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(sTestFile) + 'Call sMakeReadOnlyDocumentEditable Call wTypeKeys("") printlog " Tools / HangulHanjaConversion" @@ -1126,8 +1126,8 @@ testcase tHtmlDocToolsHangulHanjaConversion bAsianLanguage = ActiveDeactivateAsianSupport(TRUE) printlog " Open the test file" - hFileOpen (sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(sTestFile) + 'Call sMakeReadOnlyDocumentEditable Call wTypeKeys("") printlog " Tools / HangulHanjaConversion" -- cgit From fae5b1f735a55183fddc4cad1278d15583730645 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 9 Sep 2010 15:46:24 +0200 Subject: automationdev300m87: #i112208# - Maximize verbosity, for some reason the split-function fails --- testautomation/global/tools/includes/required/t_dir.inc | 17 ++++++++++++++--- .../global/tools/includes/required/t_files.inc | 4 ++-- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_dir.inc b/testautomation/global/tools/includes/required/t_dir.inc index 8e4944ad3313..f5aa59e2d78b 100644 --- a/testautomation/global/tools/includes/required/t_dir.inc +++ b/testautomation/global/tools/includes/required/t_dir.inc @@ -304,11 +304,22 @@ function hSplitString( sString as string, sSeparator as string, iIndex as intege ' function starts to count with one. ' Split the string into its fragments into an array with dynamic boundaries - dim sArray() as string: sArray() = split( sString, sSeparator ) - dim sReturnString as string + dim sArray() as string + dim sReturnString as string : sReturnString = "" + + if ( GVERBOSE ) then + printlog( CFN & "Separator is: " & sSeparator ) + printlog( CFN & "Original string is: " & sString ) + endif + + sArray() = split( sString, sSeparator ) + + if ( GVERBOSE ) then + printlog( CFN & "Number of items found: " & ubound( sArray() ) ) + endif ' Special case: Index out of bounds - if ( iIndex > ( ubound( sArray ) + ARRAY_INDEX_CORRECTION ) or iIndex < 0 ) then + if ( iIndex > ( ubound( sArray() ) + ARRAY_INDEX_CORRECTION ) or iIndex < 0 ) then warnlog( CFN & ERROR_MESSAGE & sString ) hSplitString() = ERROR_MESSAGE & sString exit function diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index 46ff47bfdf1c..b0dadeb34ed7 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -509,7 +509,7 @@ function hGetWorkPath() as string ' Retrieve the user's work directory using the API (or fallback) - dim sPath as string + dim sPath as string : sPath = "" dim oOfficeConnect as object dim oOfficeConfig as object dim bPathIsFromAPI as boolean @@ -571,7 +571,7 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean endif ' Find out what the name of the target file is going to be - sTargetFile = hSplitString( sSourcePath, "/", 0 ) + sTargetFile = hSplitString( sSourcePath, getPathSeparator, 0 ) sTargetPath = hGetWorkFile( sTargetFile ) if ( FileExists( sTargetPath ) ) then -- cgit From 267febb8e0a386a746b8095330394ed6986decfb Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 9 Sep 2010 15:56:51 +0200 Subject: automationdev300m87: #i112208# - Make Warnlog to a QAErrorLog for overwriting files --- testautomation/global/tools/includes/required/t_files.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index b0dadeb34ed7..5f9be07c6c96 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -575,7 +575,7 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean sTargetPath = hGetWorkFile( sTargetFile ) if ( FileExists( sTargetPath ) ) then - warnlog( CFN & "Target file already exists, replacing it!" ) + qaerrorlog( CFN & "Target file already exists, replacing it!" ) hFileDelete( sTargetPath ) endif -- cgit From 1e780cc87b4ee0a96a815358019b9e7b74c798f5 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Fri, 10 Sep 2010 14:16:21 +0200 Subject: automationdev300m87: #i112208# - As discussed on IRC we reuse an already existing file instead of deleting/copying it anew. Saves time but also carries a certain but low risk. --- .../global/tools/includes/required/t_files.inc | 34 ++++++++++++++-------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index 5f9be07c6c96..fcdbe5f39c99 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -556,9 +556,19 @@ end function ' function hFileOpenLocally( byVal sSourcePath as string ) as boolean - const CFN = "global::tools::includes::required::t_files.inc:hFileOpenLocally(): " + ' Issue #i112208# - implement a function that copies a file from testautomation + ' into the local work directory to avoid that the document gets opened + ' in read-only mode. See details of the implementation in the issue + ' description. + + ' Parameters + ' 1) Path as string, URLs are untested + ' 2) Separator, usually "getPathSeparator" + ' 3) Item number, 0 = last item which usually is the file name from a path. + ' Begin counting with 1, while the function internally accesses item 0 + ' from the array. - GVERBOSE = true + const CFN = "global::tools::includes::required::t_files.inc:hFileOpenLocally(): " dim sTargetPath as string dim sTargetFile as string @@ -574,19 +584,19 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean sTargetFile = hSplitString( sSourcePath, getPathSeparator, 0 ) sTargetPath = hGetWorkFile( sTargetFile ) + ' Copy the file from anywhere to the local user directory if it does not + ' exist. This behavior was discussed on IRC if ( FileExists( sTargetPath ) ) then - qaerrorlog( CFN & "Target file already exists, replacing it!" ) - hFileDelete( sTargetPath ) - endif - - if ( GVERBOSE ) then - printlog( CFN & "Copying file" ) - printlog( CFN & "From: " & sSourcePath ) - printlog( CFN & "To..: " & sTargetPath ) + printlog( CFN & "Re-using existing local copy of workfile" ) + else + if ( GVERBOSE ) then + printlog( CFN & "Copying file" ) + printlog( CFN & "From: " & sSourcePath ) + printlog( CFN & "To..: " & sTargetPath ) + endif + FileCopy( sSourcePath, sTargetPath ) endif - ' Copy the file from anywhere to the local user directory - FileCopy( sSourcePath, sTargetPath ) ' This is a hook that allows to access the filename under which the file ' has been saved. Due to restrictive coding guidelines we cannot return -- cgit From ae4f862150a0e65096908778b7e21d745d5d0a09 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Fri, 10 Sep 2010 14:19:14 +0200 Subject: automationdev300m87: #i112208# - Polished some comments and added usage information at the top of the function. --- testautomation/global/tools/includes/required/t_files.inc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index fcdbe5f39c99..ef8df3f31312 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -581,8 +581,8 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean endif ' Find out what the name of the target file is going to be - sTargetFile = hSplitString( sSourcePath, getPathSeparator, 0 ) - sTargetPath = hGetWorkFile( sTargetFile ) + sTargetFile = hSplitString( sSourcePath, getPathSeparator, 0 ) ' The file + sTargetPath = hGetWorkFile( sTargetFile ) ' The path + file ' Copy the file from anywhere to the local user directory if it does not ' exist. This behavior was discussed on IRC @@ -597,7 +597,6 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean FileCopy( sSourcePath, sTargetPath ) endif - ' This is a hook that allows to access the filename under which the file ' has been saved. Due to restrictive coding guidelines we cannot return ' the new filename. -- cgit From fda546871f70bab4f351bd0c912bfdb454366763 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 08:09:47 +0200 Subject: automationdev300m87: #i112208# - Changed all sMakeReadOnlyDocumentEditable() statements to hFileOpenLocally() in Spreadsheet update tests --- .../required/includes/c_upd_datamenu.inc | 12 ++++----- .../required/includes/c_upd_editmenu2.inc | 6 ++--- .../required/includes/c_upd_formatmenu2.inc | 12 ++++----- .../required/includes/c_upd_formatmenu3.inc | 26 +++++++++---------- .../required/includes/c_upd_toolsmenu.inc | 29 +++++----------------- 5 files changed, 34 insertions(+), 51 deletions(-) mode change 100755 => 100644 testautomation/spreadsheet/required/includes/c_upd_datamenu.inc mode change 100755 => 100644 testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc mode change 100755 => 100644 testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc mode change 100755 => 100644 testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc mode change 100755 => 100644 testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc diff --git a/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc b/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc old mode 100755 new mode 100644 index 2975a7b1c9e2..40c42d849d34 --- a/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc @@ -885,10 +885,10 @@ testcase tDataDataPilot '/// Open testdocument 'gTesttoolPath + spreadsheet\required\input\datapilot.ods' printlog " Open testdocument 'gTesttoolPath + spreadsheet\required\input\datapilot.ods'" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\datapilot.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\datapilot.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + 'printlog " If the file is not editable, click the edit button on standardbar" + 'Call sMakeReadOnlyDocumentEditable '/// Select cell C34 printlog " Select cell C34" Call fCalcSelectRange ( "C34" ) @@ -1030,10 +1030,10 @@ testcase tDataRefreshRange '/// Load testdocument Database_Refresh printlog " Load testdocument Database_Refresh" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\Database_Refresh.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\Database_Refresh.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + 'printlog " If the file is not editable, click the edit button on standardbar" + 'Call sMakeReadOnlyDocumentEditable '/// Refresh Database by 'Data – Refresh Range' printlog " Refresh Database by 'Data – Refresh Range'" DataRefreshRange diff --git a/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc old mode 100755 new mode 100644 index fed4fd764f17..361b4ba1c132 --- a/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc @@ -638,10 +638,10 @@ testcase tEditObjectEdit '/// Load testdocument 'spreadsheet/required/input/tEditObject.ods' printlog " Load testdocument 'spreadsheet/required/input/tEditObject.ods'" - Call hFileOpen ( ConvertPath ( gTesttoolPath + "spreadsheet\required\input\tEditObject.ods")) + hFileOpenLocally( gTesttoolPath + "spreadsheet\required\input\tEditObject.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - sMakeReadOnlyDocumentEditable() + 'printlog "If the file is not editable, click the edit button on standardbar" + 'sMakeReadOnlyDocumentEditable() '/// Select OLE-object printlog " Select OLE-object" fselectFirstOLE diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc old mode 100755 new mode 100644 index 6ec04a89c260..52a228d58a52 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc @@ -635,10 +635,10 @@ testcase tFormatAlignment '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'printlog "If the file is not editable, click the edit button on standardbar" + 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -747,10 +747,10 @@ testcase tFormatGroup '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'printlog "If the file is not editable, click the edit button on standardbar" + 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc old mode 100755 new mode 100644 index 08ea0cd1a3af..d898f30d03e6 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc @@ -58,10 +58,10 @@ testcase tFormatGraphicPositionAndSize '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) + hFileOpenLocally( gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" ) '/// If the file is not editable, click the edit button on standardbar printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -144,10 +144,10 @@ testcase tFormatGraphicLine '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'printlog "If the file is not editable, click the edit button on standardbar" + 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -384,10 +384,10 @@ testcase tFormatGraphicArea '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'printlog "If the file is not editable, click the edit button on standardbar" + 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -929,10 +929,10 @@ testcase tFormatGraphicText '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// If the file is not editable, click the edit button on standardbar printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -1048,10 +1048,10 @@ testcase tFormatGraphicPoints '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'printlog "If the file is not editable, click the edit button on standardbar" + 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) diff --git a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc old mode 100755 new mode 100644 index 9efc84907b78..2696bbb86624 --- a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc @@ -29,23 +29,6 @@ '* '* short description : Resource Test - Tools Menu Part I '* -'************************************************************************ -'* -' #1 tToolsSpellcheck -' #1 tToolsHangulHanjaConversion -' #1 tToolsLanguageChineseTranslation -' #1 tToolsLanguageThesaurus -' #1 tToolsLanguageHyphenation -' #1 tToolsDetective -' #1 tToolsAutoCorrect -' #1 tToolsGoalSeek -' #1 tToolsScenario -' #1 tToolsProtectSheet -' #1 tToolsProtectDocument -' #1 tToolsCellContents -' #1 tToolsGallery -' #1 tToolsMediaPlayer -'* '\*********************************************************************** sub c_upd_toolsmenu @@ -77,10 +60,10 @@ testcase tToolsSpellcheck Dim iDictionaries as integer printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\english.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\english.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\english.ods" ) '/// If the file is not editable, click the edit button on standardbar printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'call sMakeReadOnlyDocumentEditable '/// Enter 'fgsdftk' in a cell printlog " Enter 'fgsdftk' in a cell" Kontext "DocumentCalc" @@ -228,10 +211,10 @@ testcase tToolsHangulHanjaConversion bCTLLanguage = ActiveDeactivateCTLSupport(TRUE) '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\korean.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\korean.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\korean.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\korean.ods" ) '/// If the file is not editable, click the edit button on standardbar printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'call sMakeReadOnlyDocumentEditable '/// Select cell B1 printlog " Select cell B1" Call fCalcSelectRange ("B1") @@ -392,9 +375,9 @@ testcase tToolsLanguageThesaurus '///Tools – Language – Chinese Translation printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\english.ods" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\required\input\english.ods" )) + hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\english.ods" ) printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + 'call sMakeReadOnlyDocumentEditable Kontext "DocumentCalc" printlog " Enter 'test' in a cell" Call fCalcSelectRange ("B2") -- cgit From 17c7ecaf73182ad6f9aecff5f34d2ee87fe54aad Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 08:49:31 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() calls for spreadsheet tools --- testautomation/spreadsheet/tools/includes/c_l10n_tools.inc | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) mode change 100755 => 100644 testautomation/spreadsheet/tools/includes/c_l10n_tools.inc diff --git a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc old mode 100755 new mode 100644 index 382e48f94f86..ff4c508d6c4d --- a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc +++ b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc @@ -50,13 +50,11 @@ function fFunctionname ( sFunctionname_en as string ) as string use "global/tools/includes/required/t_doc2.inc" const CFN = "qa:qatesttool:spreadsheet:tools:includes:c_l10n_tools.in:fFunctionname " - sloaddocument = Convertpath (gTesttoolPath + "spreadsheet\tools\input\Functionnames.ods" ) + sloaddocument = gTesttoolPath & "spreadsheet\tools\input\Functionnames.ods" '///Load document with all functions gTestToolPath/spreadsheet/tools/input/Functionnames.ods - call hFileOpen ( sloaddocument ) + hFileOpenLocally( sloaddocument ) sleep (2) - '///Make sure that the file is editable - call sMakeReadOnlyDocumentEditable() '///Setting selection to A1 to avoid messagebox in Search and Replace dialog. call fCalcSelectRange ("A1") @@ -145,13 +143,10 @@ function fError_l10n ( sError_en as string ) as string use "global/tools/includes/required/t_doc2.inc" const CFN = "qa:qatesttool:spreadsheet:tools:includes:c_l10n_tools.in:fError_l10n " - sloaddocument = Convertpath (gTesttoolPath + "spreadsheet\tools\input\Errorcodes.ods" ) + sloaddocument = gTesttoolPath & "spreadsheet\tools\input\Errorcodes.ods" '///Load document with all errorcodes gTestToolPath/spreadsheet/tools/input/Errorcodes.ods - call hFileOpen ( sloaddocument ) - sleep (2) - '///Make sure that the file is editable - call sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sloaddocument ) '///Setting selection to A1 to avoid messagebox in Search and Replace dialog. call fCalcSelectRange ("A1") -- cgit From 021530e4ada218b2cf43cc0f2c11107ab06724f4 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 08:55:03 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() calls for all remaining areas in module spreadsheet --- .../optional/includes/arrayconstants/c_arrayconstants.inc | 6 +----- .../optional/includes/getpivotdata/c_getpivotdata.inc | 12 ++---------- .../spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc | 6 ++---- .../spreadsheet/optional/includes/solver/c_solver.inc | 8 ++------ .../spreadsheet/required/includes/c_upd_datamenu.inc | 6 ------ .../spreadsheet/required/includes/c_upd_editmenu2.inc | 3 --- .../spreadsheet/required/includes/c_upd_formatmenu2.inc | 6 ------ .../spreadsheet/required/includes/c_upd_formatmenu3.inc | 10 +--------- .../spreadsheet/required/includes/c_upd_toolsmenu.inc | 6 ------ 9 files changed, 8 insertions(+), 55 deletions(-) mode change 100755 => 100644 testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc mode change 100755 => 100644 testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc diff --git a/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc b/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc old mode 100755 new mode 100644 index ce5652c0ff1e..62057f32c798 --- a/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc +++ b/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc @@ -224,11 +224,7 @@ testcase tArrayconstants02 '///Load xls testdocument gTestToolPath/spreadsheet/optional/input/arrayconstants.xls printlog "Load xls testdocument gTestToolPath/spreadsheet/optional/input/arrayconstants.xls" - call hFileOpen ( sImportFile ) - sleep(2) - '///If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + call hFileOpenLocally( sImportFile ) '///Check that the cell contents of B4 is 1 printlog "Check that the cell contents of B4 is 1" diff --git a/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc b/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc old mode 100755 new mode 100644 index 216551959ded..e5f5e406ce60 --- a/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc +++ b/testautomation/spreadsheet/optional/includes/getpivotdata/c_getpivotdata.inc @@ -54,11 +54,7 @@ testcase tgetpivotdata_function_wizard '/// Load testdocument gTestToolPath/spreadsheet/optional/input/datapilot.ods printlog "Load testdocument datapilot.ods" - call hFileOpen ( stestdocument ) - sleep (2) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - sMakeReadOnlyDocumentEditable() + call hFileOpenLocally( stestdocument ) '/// Select cell I8 and open function wizard by INSERT FUNCTION printlog "Select cell I8 and open function wizard by INSERT FUNCTION" @@ -187,11 +183,7 @@ testcase tgetpivotdata_xls_filter '/// Load testdocument gTestToolPath/spreadsheet/optional/input/getpivotdata2.xls printlog "Load testdocument getpivotdata2.xls" - call hFileOpen ( stestdocument ) - sleep (2) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - call sMakeReadOnlyDocumentEditable + call hFileOpenLocally( stestdocument ) '/// Verify that Cell G12 shows 2.5 printlog "Verify that Cell G12 shows 2" & sdecimalseperator & "5" call fCalcCompareCellValue ("G12","2" & sdecimalseperator & "5") diff --git a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc index 186fe00ae9e4..2514945a6d42 100644 --- a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc +++ b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc @@ -44,8 +44,7 @@ testcase tIBIS111099 Printlog "Copy testdocument locally" app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls"),gOfficePath + ConvertPath("user/work/111099.xls") printlog " Open the test document" - Call hFileOpen(testdoc) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(testdoc) '/// Invoke Control Toolbar '///+ Try to click control 'Push Button' '///+>
  • Click successful - BUG #111099#
  • @@ -76,8 +75,7 @@ testcase tIBIS111158 Printlog "Copy testdocument locally" app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls"),gOfficePath + ConvertPath("user/work/111158.xls") printlog " Open the test document" - Call hFileOpen(testdoc) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(testdoc) Kontext "Standardbar" '/// If 'Form Controls' toolbar is not visible: View / Toolbars / Form Controls Call hToolbarSelect("CONTROLS", true) diff --git a/testautomation/spreadsheet/optional/includes/solver/c_solver.inc b/testautomation/spreadsheet/optional/includes/solver/c_solver.inc index ba0e77d155be..74db821e9275 100644 --- a/testautomation/spreadsheet/optional/includes/solver/c_solver.inc +++ b/testautomation/spreadsheet/optional/includes/solver/c_solver.inc @@ -43,9 +43,7 @@ testcase tExampleCalculation sDecimalseperator = GetDecimalSeperator printlog " Open testdocument 'gTesttoolPath + spreadsheet\optional\input\Solver_testdoc01.ods'" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\optional\input\Solver_testdoc01.ods" )) - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\optional\input\Solver_testdoc01.ods" ) printlog " Tools - Solver" ToolsSolver Kontext "Solver" @@ -148,9 +146,7 @@ endcase testcase tExampleCalculation2 printlog " Open testdocument 'gTesttoolPath + spreadsheet\optional\input\stest_large.ods'" - Call hFileOpen (Convertpath (gTesttoolPath + "spreadsheet\optional\input\stest_large.ods" )) - printlog " If the file is not editable, click the edit button on standardbar" - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath & "spreadsheet\optional\input\stest_large.ods" ) printlog " Tools - Solver" ToolsSolver Kontext "Solver" diff --git a/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc b/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc index 40c42d849d34..2c77baeea56d 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_datamenu.inc @@ -886,9 +886,6 @@ testcase tDataDataPilot '/// Open testdocument 'gTesttoolPath + spreadsheet\required\input\datapilot.ods' printlog " Open testdocument 'gTesttoolPath + spreadsheet\required\input\datapilot.ods'" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\datapilot.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog " If the file is not editable, click the edit button on standardbar" - 'Call sMakeReadOnlyDocumentEditable '/// Select cell C34 printlog " Select cell C34" Call fCalcSelectRange ( "C34" ) @@ -1031,9 +1028,6 @@ testcase tDataRefreshRange '/// Load testdocument Database_Refresh printlog " Load testdocument Database_Refresh" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\Database_Refresh.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog " If the file is not editable, click the edit button on standardbar" - 'Call sMakeReadOnlyDocumentEditable '/// Refresh Database by 'Data – Refresh Range' printlog " Refresh Database by 'Data – Refresh Range'" DataRefreshRange diff --git a/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc index 361b4ba1c132..a67502448d9a 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_editmenu2.inc @@ -639,9 +639,6 @@ testcase tEditObjectEdit '/// Load testdocument 'spreadsheet/required/input/tEditObject.ods' printlog " Load testdocument 'spreadsheet/required/input/tEditObject.ods'" hFileOpenLocally( gTesttoolPath + "spreadsheet\required\input\tEditObject.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog "If the file is not editable, click the edit button on standardbar" - 'sMakeReadOnlyDocumentEditable() '/// Select OLE-object printlog " Select OLE-object" fselectFirstOLE diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc index 52a228d58a52..d405237fe4a7 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc @@ -636,9 +636,6 @@ testcase tFormatAlignment '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -748,9 +745,6 @@ testcase tFormatGroup '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc index d898f30d03e6..c77f2d75b6df 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc @@ -59,9 +59,6 @@ testcase tFormatGraphicPositionAndSize '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" hFileOpenLocally( gTesttoolPath + "spreadsheet\required\input\twoobjects.ods" ) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -145,9 +142,7 @@ testcase tFormatGraphicLine '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable + '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -385,9 +380,6 @@ testcase tFormatGraphicArea '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) diff --git a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc index 2696bbb86624..3b34e695cf3d 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc @@ -61,9 +61,6 @@ testcase tToolsSpellcheck printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\english.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\english.ods" ) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Enter 'fgsdftk' in a cell printlog " Enter 'fgsdftk' in a cell" Kontext "DocumentCalc" @@ -212,9 +209,6 @@ testcase tToolsHangulHanjaConversion '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\korean.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\korean.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\korean.ods" ) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Select cell B1 printlog " Select cell B1" Call fCalcSelectRange ("B1") -- cgit From cfd900a204fa167cbb7a24d6998619c59c30c589 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 09:31:31 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() calls for module framework --- .../optional/includes/CJK_CollationDialogue_1.inc | 10 ++++------ .../framework/optional/includes/w_grid_layout1.inc | 21 ++++++--------------- testautomation/writer/required/includes/w_001_.inc | 2 -- testautomation/writer/required/includes/w_007_.inc | 5 ----- 4 files changed, 10 insertions(+), 28 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc diff --git a/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc b/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc old mode 100755 new mode 100644 index aaefdcd5bafb..18f0f0de1d2f --- a/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc +++ b/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc @@ -527,9 +527,8 @@ testcase tStrokeSort Call hNewDocument '/// Open a test file and check No Grid checkbox - Call hFileOpen ( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) - sMakeReadOnlyDocumentEditable - EditSelectAll + hFileOpenLocally( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) + hUseAsyncSlot( "EditSelectAll" ) '/// Open Tools/Sort ToolsSort @@ -617,9 +616,8 @@ testcase tPinyinSort Call hNewDocument '/// Open a test file and check No Grid checkbox - Call hFileOpen ( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) - sMakeReadOnlyDocumentEditable - EditSelectAll + hFileOpenLocally( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) + hUseAsyncSlot( "EditSelectAll" ) '/// Open Tools/Sort ToolsSort diff --git a/testautomation/framework/optional/includes/w_grid_layout1.inc b/testautomation/framework/optional/includes/w_grid_layout1.inc index 16ca31b09fa4..5fa0284a3495 100755 --- a/testautomation/framework/optional/includes/w_grid_layout1.inc +++ b/testautomation/framework/optional/includes/w_grid_layout1.inc @@ -104,8 +104,7 @@ testcase tTextGridDialog_2 Call hNewDocument '/// open a test file , and check No Grid checkbox - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) hUseAsyncSlot( "FormatPageWriter" ) Kontext @@ -151,8 +150,7 @@ testcase tTextGridDialog_3 '/// open a test file and check Grid(lines onle) checkbox , '/// + set 10 line/page - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) hUseAsyncSlot( "FormatPageWriter" ) Kontext if active.exists(5) then @@ -198,8 +196,7 @@ testcase tTextGridDialog_4 '/// open a test file and check Grid(lines and characters) checkbox '/// + set 10 line/page and 9 characters/line - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) hUseAsyncSlot( "FormatPageWriter" ) Kontext if active.exists(5) then @@ -367,8 +364,7 @@ testcase tFontSizeChanges_1 sLinesPerPage = "2" sCharsPerLine = "9" - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + testFile ) - sMakeReadOnlyDocumentEditable + Call hFileOpenLocally( gTesttoolPath + SOURCE_PATH + testFile ) Kontext "DocumentWriter" Call DocumentWriter.TypeKeys "" @@ -433,10 +429,7 @@ testcase tRubyText_1 Call hNewDocument printlog( "Open test file" ) - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + TEST_FILE ) - - printlog( "Remove write protection of document (if set)" ) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally( gTesttoolPath + SOURCE_PATH + TEST_FILE ) Kontext "DocumentWriter" printlog( "Mark character to the right of current cursor position" ) @@ -486,9 +479,7 @@ testcase tIndentsTest_1 Call hNewDocument '/// open a test file , and press TAB in second line - Call hFileOpen ( gTesttoolPath + SOURCE_PATH + TEST_FILE ) - - sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + SOURCE_PATH + TEST_FILE ) Kontext "DocumentWriter" Call DocumentWriter.TypeKeys "" diff --git a/testautomation/writer/required/includes/w_001_.inc b/testautomation/writer/required/includes/w_001_.inc index fa07a188a07f..00f7bc4ce77d 100644 --- a/testautomation/writer/required/includes/w_001_.inc +++ b/testautomation/writer/required/includes/w_001_.inc @@ -775,8 +775,6 @@ testcase tFileSaveAsExport PrintLog "Open document '..\writer\required\input\st1_1.sxw" Call hFileOpenLocally(xExport) - 'Call sMakeReadOnlyDocumentEditable - PrintLog "Select Save as .. and choose 'Microsoft Word 97/2000/XP' as export-filter" xExportFile = gOfficepath + "user\work\ecksport.doc" Call hFileSaveAsWithFilterKill (xExportFile, "MS Word 2003 XML") diff --git a/testautomation/writer/required/includes/w_007_.inc b/testautomation/writer/required/includes/w_007_.inc index 8f6e3f28d398..e562736b5329 100644 --- a/testautomation/writer/required/includes/w_007_.inc +++ b/testautomation/writer/required/includes/w_007_.inc @@ -85,7 +85,6 @@ testcase tToolsSpellcheck goto endsub end if hFileOpenLocally( TheFile ) - 'Call sMakeReadOnlyDocumentEditable printlog " Insert some faulty text" select case iSprache @@ -247,7 +246,6 @@ testcase tToolsThesaurus goto endsub end if call hFileOpenLocally( TheFile ) - 'Call sMakeReadOnlyDocumentEditable printlog " Insert some faulty text" select case iSprache @@ -354,7 +352,6 @@ testcase tToolsHyphenation goto endsub end select - 'Call sMakeReadOnlyDocumentEditable printlog " Insert file 'writer\required\input\linguistik\0 + [OfficeLanguage] + '.odt'" Sleep 1 Call wTypeKeys ("") @@ -987,7 +984,6 @@ testcase tToolsHangulHanjaConversion printlog " Open the test file" hFileOpenLocally(sTestFile) - 'Call sMakeReadOnlyDocumentEditable Call wTypeKeys("") printlog " Tools / HangulHanjaConversion" @@ -1127,7 +1123,6 @@ testcase tHtmlDocToolsHangulHanjaConversion printlog " Open the test file" hFileOpenLocally(sTestFile) - 'Call sMakeReadOnlyDocumentEditable Call wTypeKeys("") printlog " Tools / HangulHanjaConversion" -- cgit From b7b4868aa5d4247aa436915cf06da40fdf12bc04 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 09:41:36 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() calls in spreadsheet (3 were not fixed in first round) --- testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc | 6 ------ testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc | 2 -- 2 files changed, 8 deletions(-) diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc index c77f2d75b6df..6b305f53a0a3 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc @@ -922,9 +922,6 @@ testcase tFormatGraphicText '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) - '/// If the file is not editable, click the edit button on standardbar - printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) @@ -1041,9 +1038,6 @@ testcase tFormatGraphicPoints '/// Load document from 'gTesttoolPath + "spreadsheet\required\input\twoobjects.ods"' printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\twoobjects.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\twoobjects.ods" ) - '/// If the file is not editable, click the edit button on standardbar - 'printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable '/// Select first object by Navigator printlog " Select first object by Navigator" Call fNavigatorSelectObject ("drawing objects", 1) diff --git a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc index 3b34e695cf3d..6472e85ee787 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc @@ -370,8 +370,6 @@ testcase tToolsLanguageThesaurus printlog " Load document from 'gTesttoolPath + spreadsheet\required\input\english.ods" hFileOpenLocally( gTesttoolPath & "spreadsheet\required\input\english.ods" ) - printlog "If the file is not editable, click the edit button on standardbar" - 'call sMakeReadOnlyDocumentEditable Kontext "DocumentCalc" printlog " Enter 'test' in a cell" Call fCalcSelectRange ("B2") -- cgit From a09c75aca6bfcc8ff02a3e46ddba3d1a13b7949d Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 09:49:22 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() calls in module chart2 --- .../optional/includes/ch2_flexible_source_range_selection01.inc | 4 +--- testautomation/chart2/tools/ch_tools_common.inc | 8 ++------ 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc b/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc index ec2496ecb1f3..071e9146ef78 100644 --- a/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc +++ b/testautomation/chart2/optional/includes/ch2_flexible_source_range_selection01.inc @@ -782,9 +782,7 @@ endcase ' function fOpenWriterTestDocumentAndInsertChart(sInputFile as STRING) as BOOLEAN fOpenWriterTestDocumentAndInsertChart = FALSE - call hFileOpen(sInputFile) - sleep(2) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sInputFile) '///Menu Insert Object Chart to open chart wizard printlog "Menu Insert Object Chart to open chart wizard" InsertObjectChart diff --git a/testautomation/chart2/tools/ch_tools_common.inc b/testautomation/chart2/tools/ch_tools_common.inc index f6d722fa2a25..ad9f2108f024 100644 --- a/testautomation/chart2/tools/ch_tools_common.inc +++ b/testautomation/chart2/tools/ch_tools_common.inc @@ -162,9 +162,7 @@ end function ' function fOpenTestDocumentAndSelectDataRange(sInputFile as string) as BOOLEAN fOpenTestDocumentAndSelectDataRange = FALSE - call hFileOpen(sInputFile) - sleep(2) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sInputFile) '/// Select chart using navigator printlog "Select chart using navigator" call fSelectFirstOLE @@ -191,9 +189,7 @@ end function ' function fOpenTestDocumentAndInsertChart(sInputFile as string) as BOOLEAN fOpenTestDocumentAndInsertChart = FALSE - call hFileOpen(sInputFile) - sleep(2) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sInputFile) Kontext "DocumentCalc" printlog "Type " DocumentCalc.TypeKeys "" -- cgit From ba5bfd3356723ef7a003d41c3402adf79d15235d Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 10:18:48 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() calls in module Writer/Optional (partial remove, many more to go) --- .../formatparagraph/w_formatparagraph2.inc | 107 ++++++--------------- .../hangulhanjaonversion/hhConversion1.inc | 42 ++++---- .../hangulhanjaonversion/hhConversion2.inc | 60 ++++++------ .../hangulhanjaonversion/hhConversion3.inc | 39 +++----- .../optional/includes/textframes/w_textframes1.inc | 32 +++--- .../optional/includes/textframes/w_textframes2.inc | 20 ++-- .../optional/includes/textframes/w_textframes3.inc | 12 +-- .../optional/includes/textframes/w_textframes4.inc | 80 ++++++++------- .../optional/includes/textframes/w_textframes5.inc | 40 +++----- 9 files changed, 174 insertions(+), 258 deletions(-) mode change 100755 => 100644 testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc mode change 100755 => 100644 testautomation/writer/optional/includes/textframes/w_textframes1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/textframes/w_textframes2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/textframes/w_textframes3.inc mode change 100755 => 100644 testautomation/writer/optional/includes/textframes/w_textframes4.inc mode change 100755 => 100644 testautomation/writer/optional/includes/textframes/w_textframes5.inc diff --git a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc old mode 100755 new mode 100644 index dccebdcf930e..d204f8f2e02c --- a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc +++ b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph2.inc @@ -29,31 +29,6 @@ '* '* short description : Test the functionality of Paragraph Formatting - 2 '* -'************************************************************************ -'* -' #1 tParagraphAlignment1 'Test 'Left' alignment -' #1 tParagraphAlignment2 'Test 'Right' alignment -' #1 tParagraphAlignment3 'Test 'Center' alignment -' #1 tParagraphAlignment4 'Test 'Justified' alignment - Default -' #1 tParagraphAlignment5 'Test 'Justified' alignment - Centered -' #1 tParagraphAlignment6 'Test 'Justified' alignment - Justified -' #1 tParagraphAlignment7 'Test 'Expand single word' -' #1 tParagraphAlignment8 'Test Uncheck 'Snap to text grid(if active)' -' #1 tParagraphAlignment9 'Test Check 'Snap to text grid(if active)' -' #1 tParagraphTextFlow1 'Hyphenation must be processed while entering text WITHOUT inquiry -' #1 tParagraphTextFlow2 'Hyphenation - Characters at line end -' #1 tParagraphTextFlow3 'Hyphenation - Characters at line begin -' #1 tParagraphTextFlow4 'Hyphenation - maxinum number of consecutive typhens -' #1 tParagraphTextFlow5 'Paragraph break before Column -' #1 tParagraphTextFlow6 'Paragraph break after Column -' #1 tParagraphTextFlow7 'Paragraph break before Page -' #1 tParagraphTextFlow8 'Paragraph break after Page -' #1 tParagraphTextFlow9 'Do not split paragraph -' #1 tParagraphTextFlow10 'Keep with next paragraph -' #1 tParagraphTextFlow11 'Orphan control -' #1 tParagraphTextFlow12 'widow control -' #1 tParagraphTextFlow13 'Special test for Hyphenation -'* '\*********************************************************************** testcase tParagraphAlignment1 @@ -70,8 +45,7 @@ testcase tParagraphAlignment1 '/// + Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) 'Get the original coordinate-X Call wTypeKeys ( "" ) @@ -119,8 +93,7 @@ testcase tParagraphAlignment2 '/// + Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the laste character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// + Format/Paragraph / Alignment , choose Right/Bottom option Call fFormatParagraph("TabAusrichtungAbsatz") @@ -156,8 +129,7 @@ testcase tParagraphAlignment3 '/// + Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// + Format/Paragraph / Alignment , choose Center option Call fFormatParagraph("TabAusrichtungAbsatz") @@ -196,8 +168,7 @@ testcase tParagraphAlignment4 '/// Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the last character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys ( "" ) Sleep 1 @@ -264,8 +235,7 @@ testcase tParagraphAlignment5 '/// Open the test file '/// + This file includes 1 paragraphs , and a pic is anchored to the last character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Alignment , '/// + choose Justified option , and select centered in last line @@ -307,8 +277,7 @@ testcase tParagraphAlignment6 '/// Open the test file '/// + This file includes 1 paragraphs, '/// + and 2 pics are in 2nd line - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys ( "" ) Call wTypeKeys "" @@ -374,8 +343,7 @@ testcase tParagraphAlignment7 '/// + This file includes 1 paragraphs , '/// + there is only 1 word - "That" in last line , '/// + and a drawring object is anchored as character after "That" - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) printlog "Select the object." Sleep 1 @@ -441,8 +409,7 @@ testcase tParagraphAlignment8 '/// Open the test file '/// + This file includes 1 paragraphs , '/// + and a drawring object is anchored as character after "That" - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Get the drawing object original position /// Call wTypeKeys ( "" ) @@ -512,8 +479,7 @@ testcase tParagraphAlignment9 '/// Open the test file '/// + This file includes 1 paragraphs , '/// + and a drawring object is anchored as character after "That" - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Get the drawing object original position /// Call wTypeKeys ( "" ) @@ -578,8 +544,7 @@ testcase tParagraphTextFlow1 '/// Open the test file '/// + This file includes 2 words : AAA and Kilometerhigh - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) 'the focus is in front of Kilometerhigh Call wTypeKeys "" @@ -607,8 +572,7 @@ testcase tParagraphTextFlow1 Call hCloseDocument Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 2. Test there is the Hyphenation configuratioin '/// + Format/Paragraph / Text Flow , @@ -657,8 +621,7 @@ testcase tParagraphTextFlow2 '/// Open the test file '/// + This file includes 2 words : AAA and Kilometerhigh - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 1.Test Characters at line end ==> 6 '/// + Format/Paragraph / Text Flow , @@ -689,8 +652,7 @@ testcase tParagraphTextFlow2 Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 2.Test Characters at line end ==> 8 '/// + Format/Paragraph / Text Flow , @@ -735,8 +697,7 @@ testcase tParagraphTextFlow3 '/// Open the test file '/// + This file includes 2 words : AAA and Kilometerhigh - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 1.Test Characters at line begin ==> 4 '/// + Format/Paragraph / Text Flow , @@ -766,8 +727,8 @@ testcase tParagraphTextFlow3 Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// 2.Test Characters at line end ==> 6 '/// + Format/Paragraph / Text Flow , @@ -817,8 +778,7 @@ testcase tParagraphTextFlow4 '/// Open the test file '/// + This file includes 4 words : KiloAmterhigh1 kiloAmeterhigh2 kiloAmeterhigh3 kiloAmeterhigh4 '/// + the words' length is longer then page length - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// 1.Test maxinum number of consecutive typhens (default => 0) '/// + Format/Paragraph / Text Flow , @@ -935,8 +895,7 @@ testcase tParagraphTextFlow5 '/// + There are 2 columns/page ,includes 2 paragraph '/// + the 1st paragraph is in 1st and 2nd column '/// + the 2nd paragraph is is 2nd and 3rd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set the focus to 2nd paragraph Kontext @@ -987,8 +946,7 @@ testcase tParagraphTextFlow6 '/// + There are 2 columns/page ,includes 1 paragraph '/// + the paragraph is in 1st and 2nd column '/// + and it is NOT full of 2nd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Set 'Breaks' enable @@ -1031,8 +989,7 @@ testcase tParagraphTextFlow7 '/// Open the test file '/// + There are 2 paragraphs in 1 page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set the focus to 2nd paragraph Kontext @@ -1092,8 +1049,7 @@ testcase tParagraphTextFlow8 '/// Open the test file '/// + There is 1 paragraph in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Set 'Breaks' enable @@ -1139,8 +1095,7 @@ testcase tParagraphTextFlow9 '/// Open the test file '/// + There is 1 paragraph which cross 2 pages - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys "" Call fFindWord("She") @@ -1173,8 +1128,7 @@ testcase tParagraphTextFlow9 PrintLog "- Check Don't split paragraph" Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) Call wTypeKeys "" @@ -1225,8 +1179,7 @@ testcase tParagraphTextFlow10 '/// Open the test file '/// There are 2 paragraphes in the file , 1st one crosses '/// + 1st and 2nd page , 2nd one is in 2nd page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) EditSearchAndReplace Kontext "FindAndReplace" SearchFor.SetText "He1" @@ -1269,8 +1222,7 @@ testcase tParagraphTextFlow10 Call hNewDocument - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) PrintLog "- Check Keep with next paragraph" '/// 2. Test checking "Keep with next paragraph" @@ -1331,8 +1283,7 @@ testcase tParagraphTextFlow11 '/// Open the test file '/// + There is 1 paragraph (8 lines) in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Check 'Orphan control' , set 3 in 'Lines' @@ -1385,8 +1336,7 @@ testcase tParagraphTextFlow12 '/// Open the test file '/// + There is 1 paragraph (8 lines) in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Format/Paragraph / Text Flow '/// + Check 'Widow control' , set 3 in 'Lines' @@ -1436,8 +1386,7 @@ testcase tParagraphTextFlow13 '/// Open the test file '/// + There is 1 word TABC in the end of the first line - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Press spaces in the head of the first line , we hope '/// + the whole word - 'TABC' will go to 2nd line at one time diff --git a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc old mode 100755 new mode 100644 index bacd2dd1d8af..a16949d37851 --- a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc +++ b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion1.inc @@ -67,8 +67,7 @@ testcase tHHNoSelction_1 '/// Open a test file , which includes some Korean characters '/// + and some Chinese characters - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + hFileOpenLocally(sTestFile) '/// Set focus before the 3rd character Call wTypeKeys "" @@ -137,8 +136,7 @@ testcase tHHNoSelction_2 '/// Open a test file , which includes some English , '/// + Germany , French , Korean and Chinese characters '/// + (Korean is before Chinese) - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally(sTestFile) '/// Set focus to the beginning Call wTypeKeys "" @@ -195,8 +193,8 @@ testcase tHHNoSelction_3 '/// Open a test file , which includes some English , '/// + Germany , French , Korean and Chinese characters '/// + (Chinese is before Korean) - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the beginning Call wTypeKeys "" @@ -250,8 +248,8 @@ testcase tHHNoSelction_4 '/// Open a test file , which includes some English , '/// + Germany , French characters . '/// + There are no Chinese and Korean - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the beginning Call wTypeKeys "" @@ -291,8 +289,8 @@ testcase tHHNoSelction_5 Call hNewDocument '/// Open a test file , which includes some Chinese and Korean - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the end of the file Call wTypeKeys "" @@ -333,8 +331,8 @@ testcase tHHNoSelction_6 '/// Open a test file , which includes some Chinese and Korean, '/// + the 3rd character in 1st line isn't convertible - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the 3rd character (korean) Call wTypeKeys "" @@ -398,8 +396,8 @@ testcase tHHNoSelction_7 '/// Open a test file , which includes some Chinese and Korean, '/// + the 3rd character in 2nd line isn't convertible - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Set focus to the 3rd chinese character Call wTypeKeys "" @@ -466,8 +464,8 @@ testcase tHHSingleSelction_1 Call hNewDocument '/// Open a test file , which includes some Chinese and Korean - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Select from 4th to 7th character Call wTypeKeys "" @@ -527,8 +525,8 @@ testcase tHHMultiSelction_1 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Do a multi Selectiong to the charcters -- ìž…ë ¥ Call fFindWord(sMultiWord) @@ -573,8 +571,8 @@ testcase tHHTextBox_1 '/// Open a test file , which includes a text box and '/// + some Korean chacters in the text box - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Tools / HangulHanjaConversion , the below 4 checkboxes ralated '/// + ruby should be disabled . @@ -645,8 +643,8 @@ testcase tHHDrawBox_1 '/// Open a test file , which includes a draw box and '/// + some Korean chacters in the text box - Call hFileOpen(sTestFile) - sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally( sTestFile ) + () '/// Tools / HangulHanjaConversion , the below 4 checkboxes ralated '/// + ruby should be disabled . '/// -> 'Hanja As Ruby Above Hangul' diff --git a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc old mode 100755 new mode 100644 index 26437f17f920..dface018692f --- a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc +++ b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion2.inc @@ -80,7 +80,7 @@ testcase tHHConversion_1 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , @@ -129,7 +129,7 @@ testcase tHHConversion_2 '/// Open a test file , which includes some '/// + Chinese character and Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check hanja only . @@ -180,7 +180,7 @@ testcase tHHConversion_3 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check Hanja(Hangul) @@ -232,7 +232,7 @@ testcase tHHConversion_4 '/// Open a test file , which includes some '/// + Chinese character and Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check Hanja(Hangul). @@ -284,7 +284,7 @@ testcase tHHConversion_5 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check Hangul(Hanja) , @@ -337,7 +337,7 @@ testcase tHHConversion_6 '/// Open a test file , which includes some '/// + Chinese character and Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check Hangul(Hanja), @@ -390,7 +390,7 @@ testcase tHHConversion_7 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Above Hangul' , @@ -450,7 +450,7 @@ testcase tHHConversion_8 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Above Hangul' , @@ -510,7 +510,7 @@ testcase tHHConversion_9 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Below Hangul' , @@ -570,7 +570,7 @@ testcase tHHConversion_10 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hanja As Ruby Below Hangul' , @@ -630,7 +630,7 @@ testcase tHHConversion_11 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Above Hanja' , @@ -690,7 +690,7 @@ testcase tHHConversion_12 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Above Hanja' , @@ -750,7 +750,7 @@ testcase tHHConversion_13 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Below Hanja' , @@ -810,7 +810,7 @@ testcase tHHConversion_14 Call hNewDocument '/// Open a test file , which includes some Chinese chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , check 'Hangul As Ruby Below Hanja' , @@ -865,7 +865,7 @@ testcase tHHConversion_15 '/// Open a test file , which includes some Korean chacters . '/// + Set focus before Korean character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , @@ -913,7 +913,7 @@ testcase tHHConversion_16 '/// Open a test file , which includes some Chinese chacters . '/// + Set focus before Chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , @@ -964,7 +964,7 @@ testcase tHHConversion_17 Call hNewDocument '/// Open a test file , which includes some Korean chacters . - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , press Ignore , @@ -1015,7 +1015,7 @@ testcase tHHConversion_18 '/// Open a test file , which includes some Chinese chacters =>. '/// + 山下 上山下乡 山下 - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , press Always Ignore , @@ -1046,7 +1046,7 @@ testcase tHHConversion_18 '/// So far , there is still a StarOffice session exists . '/// Reopen the test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , @@ -1097,7 +1097,7 @@ testcase tHHConversion_19 '/// Open a test file , which includes some Chinese chacters =>. '/// + 山下 上山下乡 山下 - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , press Always Ignore , @@ -1120,7 +1120,7 @@ testcase tHHConversion_19 Call hNewDocument '/// Reopen the test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , 山下 should be selcted @@ -1159,7 +1159,7 @@ testcase tHHConversion_20 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , select a word in selection @@ -1225,7 +1225,7 @@ testcase tHHConversion_21 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , select a word in selection, @@ -1267,7 +1267,7 @@ testcase tHHConversion_21 Call hNewDocument '/// Reopen this test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion @@ -1321,7 +1321,7 @@ testcase tHHConversion_22 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , select a word in selection, @@ -1350,7 +1350,7 @@ testcase tHHConversion_22 Call hStartTheOffice Call hNewDocument '/// Reopen this test file - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion @@ -1389,7 +1389,7 @@ testcase tHHConversion_23 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , select a word in selection, @@ -1454,7 +1454,7 @@ testcase tHHConversion_24 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , the default for 'Replace by character' @@ -1509,7 +1509,7 @@ testcase tHHConversion_25 '/// Open a test file , which includes some Chinese chacters =>. '/// + 山下 上山下乡 山下 - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Check 'Replace by character' , @@ -1573,7 +1573,7 @@ testcase tHHConversion_26 Call hNewDocument '/// Open a test file , which includes some Korean chacters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Check 'Replace by character' , diff --git a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc old mode 100755 new mode 100644 index 0808ccacb3bb..e7b89b0accf0 --- a/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc +++ b/testautomation/writer/optional/includes/hangulhanjaonversion/hhConversion3.inc @@ -29,21 +29,6 @@ '* '* short description : Test of Hangul/Hanja Conversion - 3 '* -'************************************************************************ -'* -' #1 tHHOptions_1 'User defined dictionaries -' #1 tHHOptions_2 'Options - New 1 -' #1 tHHOptions_3 'Options - New 2 -' #1 tHHOptions_4 'Options - New 3 -' #1 tHHOptions_5 'Options - Edit (Book) -' #1 tHHOptions_6 'Options - Edit (Original) -1 -' #1 tHHOptions_7 'Options - Edit (Original) -2 -' #1 tHHOptions_8 'Options - Edit (Original) -3 -' #1 tHHOptions_9 'Options - Edit (Original) -4 -' #1 tHHOptions_10 'Options - Edit (Original) -5 -' #1 tHHOptions_11 'Options - Edit (Original) -6 -' #1 tHHOptions_12 'Options - Edit (Original) -7 -'* '\*********************************************************************** testcase tHHOptions_1 @@ -62,7 +47,7 @@ testcase tHHOptions_1 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" @@ -107,7 +92,7 @@ testcase tHHOptions_2 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -189,7 +174,7 @@ testcase tHHOptions_3 '/// Open a test file , which includes some '/// + Korean chacters and chinese characters - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -254,7 +239,7 @@ warnlog( "#i111911# - Test is broken beyond repait, please rewrite" ) '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -321,7 +306,7 @@ testcase tHHOptions_5 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -396,7 +381,7 @@ testcase tHHOptions_6 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -507,7 +492,7 @@ testcase tHHOptions_7 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -615,7 +600,7 @@ testcase tHHOptions_8 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -705,7 +690,7 @@ testcase tHHOptions_9 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -791,7 +776,7 @@ testcase tHHOptions_10 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -879,7 +864,7 @@ testcase tHHOptions_11 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , @@ -962,7 +947,7 @@ testcase tHHOptions_12 '/// Open a test file , which includes some '/// + Korean chacters and chinese character - Call hFileOpen(sTestFile) : sMakeReadOnlyDocumentEditable() + hFileOpenLocally( sTestFile ) Call wTypeKeys "" '/// Tools / HangulHanjaConversion , Press Options button , diff --git a/testautomation/writer/optional/includes/textframes/w_textframes1.inc b/testautomation/writer/optional/includes/textframes/w_textframes1.inc old mode 100755 new mode 100644 index 17eeff80ad95..a3d284438643 --- a/testautomation/writer/optional/includes/textframes/w_textframes1.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes1.inc @@ -408,8 +408,8 @@ testcase tTextframes_6 '/// + This test file is designed for Anchor To Page test. '/// + There are 2 pages in the file , and the frame is in '/// + the bottom of first page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Check1: EditSearchAndReplace @@ -506,8 +506,8 @@ testcase tTextframes_7 '/// + There are 2 paragraphs in the file , and the head of 2nd '/// + paragraph is in the bottom of the first page . '/// + The frame is in the first line of 2nd paragraph - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// check if the frame is in the first page Call wTypeKeys ( "" ) @@ -586,8 +586,8 @@ testcase tTextframes_8 '/// + The frame is anchored to the character 't' of That . '/// + The frame is in the bottom of the first page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// check if the frame is in the first page Call wTypeKeys ( "" ) @@ -643,8 +643,8 @@ testcase tTextframes_8 Call hCloseDocument - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call wTypeKeys ( "" ) Sleep 1 @@ -718,8 +718,8 @@ testcase tTextframes_9 '/// + This test file is designed for Anchor as Character test. '/// + The frame is anchored as the character. '/// + The frame is in the right and bottom of the first page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'check if the frame is in the first page Call wTypeKeys ( "" ) @@ -775,8 +775,8 @@ testcase tTextframes_9 Call hCloseDocument - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Check2: Kontext @@ -853,7 +853,7 @@ testcase tTextframes_10 '/// + This test file is designed for Anchor in gathering pages&columns test. '/// + There are 2 columns in the page. And the frame is in the second column. Call hFileOpen(sTestFile1,false) - Call sMakeReadOnlyDocumentEditable + 'Press return to ensure the frame is in 2nd column Call wTypeKeys "" @@ -889,7 +889,7 @@ testcase tTextframes_10 '/// + pages&columns test. '/// + There are 2 pages. And the frame is in the second page. Call hFileOpen(sTestFile2,false) - Call sMakeReadOnlyDocumentEditable + 'check if the frame is in the 2nd page Call wTypeKeys ( "" ) @@ -957,8 +957,8 @@ testcase tTextframes_11 '/// + There are 2 paragraph in the file . '/// + The 1st paragraph is in 1st page and the 2nd paragraph is in 2nd page '/// + Two paragraphs, a frame is anchored to the second one. When deleting the paragraph mark, the anchor of the frame has to move the the first paragraph. - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Check1: 'First check diff --git a/testautomation/writer/optional/includes/textframes/w_textframes2.inc b/testautomation/writer/optional/includes/textframes/w_textframes2.inc old mode 100755 new mode 100644 index a316cd19b49c..5f58ba252aa6 --- a/testautomation/writer/optional/includes/textframes/w_textframes2.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes2.inc @@ -212,8 +212,8 @@ testcase tTextframes_20 '/// + There are 1 page in the file. '/// + The frame is ocupied in the whole 1st page and wraped as Through '/// + Some text are behind the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "" ) @@ -282,8 +282,8 @@ testcase tTextframes_21 '/// + The frame is ocupied in the whole 1st page and wraped as None '/// + Some text are in the 2nd page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "" ) @@ -353,8 +353,8 @@ testcase tTextframes_22 '/// + there are some space in the left of the frame. '/// + Some text are in the 2nd page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + printlog "- Test wrap - before" @@ -472,8 +472,8 @@ testcase tTextframes_23 '/// + there are some space in the right of the frame. '/// + Some text are in the 2nd page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + printlog "- Test wrap - before" @@ -1075,7 +1075,7 @@ testcase tTextframes_31 Sleep 2 '/// Check if the frame is non-editable - Call hFileOpen(sTestFile,false) + hFileOpenLocally( sTestFile ) Call wTypeKeys ( "" ) @@ -1132,7 +1132,7 @@ testcase tTextframes_32 Sleep 2 '/// Check if the text can be inputed into frame - Call hFileOpen(sTestFile,false) + hFileOpenLocally( sTestFile ) Call wTypeKeys "" Wait 500 diff --git a/testautomation/writer/optional/includes/textframes/w_textframes3.inc b/testautomation/writer/optional/includes/textframes/w_textframes3.inc old mode 100755 new mode 100644 index 28e6f9b7f404..d9db6fa32253 --- a/testautomation/writer/optional/includes/textframes/w_textframes3.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes3.inc @@ -273,8 +273,8 @@ testcase tTextframes_36 '/// + This test file is designed for testing link '/// + frames which are placed on different pages '/// + There are 2 pages in the file and 1 frame/page - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to first frame Call wTypeKeys ( "" ) @@ -364,8 +364,8 @@ testcase tTextframes_37 '/// + frames which are placed on header '/// + There are 2 frames in the header - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to first frame Call wTypeKeys ( "" ) @@ -427,8 +427,8 @@ testcase tTextframes_38 '/// + This test file is designed for testing link '/// + frames which are placed on header '/// + There are 2 frames in the header - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to first frame Call wTypeKeys ( "" ) diff --git a/testautomation/writer/optional/includes/textframes/w_textframes4.inc b/testautomation/writer/optional/includes/textframes/w_textframes4.inc old mode 100755 new mode 100644 index 43af4c5bd532..6da21bcd513f --- a/testautomation/writer/optional/includes/textframes/w_textframes4.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes4.inc @@ -95,8 +95,8 @@ testcase tTextframes_50 '/// Open a test file , which includes a frame and '/// + it is StarOffice 7 format - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "" ) @@ -132,8 +132,8 @@ testcase tTextframes_51 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'in front of text' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to frame Call wTypeKeys ( "" ) @@ -169,8 +169,8 @@ testcase tTextframes_52 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'behind text' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to the frame Call wTypeKeys ( "" ) @@ -206,8 +206,8 @@ testcase tTextframes_53 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'tight' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to the frame Call wTypeKeys ( "" ) @@ -222,9 +222,7 @@ testcase tTextframes_53 TabType.Cancel printlog " Close active document " - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop + hFileCloseAll() endcase @@ -243,8 +241,8 @@ testcase tTextframes_54 '/// Open a test file , which is a Word file and includes '/// + a frame that is in 'square' mode - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set focus to the frame Call wTypeKeys ( "" ) @@ -376,8 +374,8 @@ testcase tTextframes_57 '/// Open a test file , which includes a frame in header and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -455,8 +453,8 @@ testcase tTextframes_58 '/// Open a test file , which includes a frame in header and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -529,8 +527,8 @@ testcase tTextframes_59 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -615,8 +613,8 @@ testcase tTextframes_60 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the frame Call wTypeKeys ( "" ) @@ -711,8 +709,8 @@ testcase tTextframes_61 '/// Open a test file , which includes a frame in footer and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -789,8 +787,8 @@ testcase tTextframes_62 '/// Open a test file , which includes a frame in footer and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -867,8 +865,8 @@ testcase tTextframes_63 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -957,8 +955,8 @@ testcase tTextframes_64 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -1048,8 +1046,8 @@ testcase tTextframes_65 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -1127,8 +1125,8 @@ testcase tTextframes_66 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -1205,8 +1203,8 @@ testcase tTextframes_67 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -1295,8 +1293,8 @@ testcase tTextframes_68 '/// Open a test file , which includes a frame in table and '/// + a picture which is anchored to frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -1386,8 +1384,8 @@ testcase tTextframes_69 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) @@ -1465,8 +1463,8 @@ testcase tTextframes_70 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B '/// + a picture which is anchored to Frame A - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set focus to the picture Call wTypeKeys ( "" ) diff --git a/testautomation/writer/optional/includes/textframes/w_textframes5.inc b/testautomation/writer/optional/includes/textframes/w_textframes5.inc old mode 100755 new mode 100644 index f9a9944b4333..7bcba8594a9c --- a/testautomation/writer/optional/includes/textframes/w_textframes5.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes5.inc @@ -115,8 +115,7 @@ testcase tTextframes_72 '/// Open a test file , which includes 2 frames , '/// Frame A is anchored Frame B - Call hFileOpen(( Convertpath (gTesttoolpath + "writer\optional\input\textframe\frameInFrame.sxw") ),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\frameInFrame.sxw" ) 'Set focus to Frame B Call wTypeKeys ( "" ) @@ -152,8 +151,7 @@ testcase tTextframes_73 Call hNewDocument '/// Open a test file , which includes 1 frame in the document body - Call hFileOpen((Convertpath (gTesttoolpath + "writer\optional\input\textframe\frame.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\textframe\frame.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -188,8 +186,7 @@ testcase tTextframes_74 Call hNewDocument '/// Open a test file , which includes 1 frame in the document body - Call hFileOpen((Convertpath (gTesttoolpath + "writer\optional\input\textframe\frameInTable.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\frameInTable.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -223,8 +220,7 @@ testcase tTextframes_75 Call hNewDocument '/// Open a test file , which includes 1 frame in the header - Call hFileOpen((Convertpath (gTesttoolpath + "writer\optional\input\textframe\Header.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\Header.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -259,8 +255,7 @@ testcase tTextframes_76 Call hNewDocument '/// Open a test file , which includes 1 frame in the footer - Call hFileOpen((gTesttoolpath + "writer\optional\input\textframe\Footer.sxw"),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\textframe\Footer.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -295,8 +290,7 @@ testcase tTextframes_77 Call hNewDocument '/// Open a test file , which includes 1 frame in the footnote - Call hFileOpen((Convertpath(gTesttoolpath + "writer\optional\input\textframe\frameInFootnote.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpen( gTesttoolpath & "writer\optional\input\textframe\frameInFootnote.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -331,8 +325,7 @@ testcase tTextframes_78 Call hNewDocument '/// Open a test file , which includes 1 frame in the endnote - Call hFileOpen((Convertpath(gTesttoolpath + "writer\optional\input\textframe\frameInEndnote.sxw")),false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\textframe\frameInEndnote.sxw" ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -379,8 +372,7 @@ testcase tTextframes_80 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -435,8 +427,7 @@ testcase tTextframes_81 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -491,8 +482,7 @@ testcase tTextframes_82 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -549,8 +539,7 @@ testcase tTextframes_83 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -615,8 +604,7 @@ testcase tTextframes_84 '/// Open a test file , which includes 1 frame which is '/// + anchored 'To Character' and a picture which is anchored '/// + in the frame - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) '/// Set focus to Frame Call wTypeKeys ( "" ) @@ -683,9 +671,7 @@ testcase tTextframes_85 '/// + One is top to the line text , '/// + another one is center to the line text , '/// + the 3rd one is bottom to the line text - Call hFileOpen(sTestFile,false) - Call sMakeReadOnlyDocumentEditable - Sleep (2) + hFileOpenLocally( sTestFile ) '/// Set focus to 1st Frame Call wTypeKeys ( "" ) -- cgit From af4863656d0385d0f05a72a2ae1444993e52f05e Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 10:39:49 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() calls in module Writer - Mass renaming/Deletion. Might break things as this was a batch job. --- .../alternative_text/w_alternative_text.inc | 6 +-- .../includes/autocorrection/w_autocorrect2.inc | 32 ++++++------- .../optional/includes/clipboard/clipbrd_func.inc | 4 +- .../writer/optional/includes/clipboard/w_210_.inc | 12 ++--- .../writer/optional/includes/clipboard/w_211_.inc | 18 +++---- .../writer/optional/includes/clipboard/w_212_.inc | 18 +++---- .../writer/optional/includes/clipboard/w_213_.inc | 18 +++---- .../writer/optional/includes/clipboard/w_214_.inc | 18 +++---- .../writer/optional/includes/clipboard/w_215_.inc | 36 +++++++------- .../writer/optional/includes/clipboard/w_216_.inc | 30 ++++++------ .../writer/optional/includes/clipboard/w_217_.inc | 34 ++++++------- .../writer/optional/includes/clipboard/w_218_.inc | 34 ++++++------- .../writer/optional/includes/clipboard/w_219_.inc | 34 ++++++------- .../writer/optional/includes/clipboard/w_220_.inc | 36 +++++++------- .../writer/optional/includes/clipboard/w_221_.inc | 42 ++++++++-------- .../writer/optional/includes/clipboard/w_222_.inc | 42 ++++++++-------- .../optional/includes/drawing/w_drawing_tools2.inc | 4 +- .../optional/includes/dropdownLB/w_dropdownLB1.inc | 4 +- .../writer/optional/includes/fields/w_fields2.inc | 14 +++--- .../writer/optional/includes/fields/w_fields3.inc | 20 ++++---- .../writer/optional/includes/fields/w_fields4.inc | 32 ++++++------- .../writer/optional/includes/fields/w_fields5.inc | 4 +- .../writer/optional/includes/fields/w_fields6.inc | 4 +- .../writer/optional/includes/fields/w_fields7.inc | 8 ++-- .../formatcharacter/w_format_character1.inc | 8 ++-- .../optional/includes/formatpage/w_formatpage1.inc | 18 +++---- .../optional/includes/formatpage/w_formatpage2.inc | 32 ++++++------- .../optional/includes/formatpage/w_formatpage3.inc | 38 +++++++-------- .../optional/includes/formatpage/w_formatpage4.inc | 8 ++-- .../formatparagraph/w_formatparagraph1.inc | 56 +++++++++++----------- .../formatparagraph/w_formatparagraph3.inc | 44 ++++++++--------- .../includes/hyphenation/w_hyphenation.inc | 16 +++---- .../includes/insertgraphic/w_insertgraphic1.inc | 4 +- .../optional/includes/loadsave/w_loadsave.inc | 2 +- .../optional/includes/navigator/w_navigator.inc | 18 +++---- .../writer/optional/includes/number/w_205_.inc | 8 ++-- .../writer/optional/includes/number/w_205a_.inc | 18 +++---- .../writer/optional/includes/number/w_206_.inc | 4 +- .../writer/optional/includes/number/w_207_.inc | 10 ++-- .../writer/optional/includes/option/wh_o_1.inc | 12 ++--- .../writer/optional/includes/option/wh_o_2.inc | 6 +-- .../writer/optional/includes/option/wr_o_1.inc | 16 +++---- .../writer/optional/includes/option/wr_o_2.inc | 14 +++--- .../writer/optional/includes/option/wr_o_3.inc | 8 ++-- .../writer/optional/includes/option/wr_o_4.inc | 2 +- .../writer/optional/includes/option/wr_o_a.inc | 4 +- .../optional/includes/redlining/w_redlining1.inc | 4 +- .../writer/optional/includes/regexp/regular.inc | 4 +- .../writer/optional/includes/regexp/search.inc | 8 ++-- .../issuezilla/w_issuezilla_regression.inc | 22 ++++----- .../optional/includes/section/w_section_3.inc | 4 +- .../optional/includes/section/w_section_4.inc | 12 ++--- .../optional/includes/sorting/w_sorting1.inc | 32 ++++++------- .../optional/includes/sorting/w_sorting2.inc | 8 ++-- .../optional/includes/spellcheck/w_spellcheck.inc | 34 ++++++------- .../optional/includes/spellcheck/w_spellcheck1.inc | 2 +- .../optional/includes/textframes/w_textframes1.inc | 4 +- .../optional/includes/undo/w_undo_history_4.inc | 2 +- testautomation/writer/required/includes/w_001_.inc | 2 +- .../writer/required/includes/w_001b_.inc | 24 +++++----- testautomation/writer/required/includes/w_007_.inc | 2 +- testautomation/writer/tools/includes/w_tool3.inc | 2 +- testautomation/writer/tools/includes/w_tools.inc | 2 +- 63 files changed, 509 insertions(+), 509 deletions(-) mode change 100755 => 100644 testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/clipbrd_func.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_210_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_211_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_212_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_213_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_214_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_215_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_216_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_217_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_218_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_219_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_220_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_221_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/clipboard/w_222_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/fields/w_fields2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/fields/w_fields3.inc mode change 100755 => 100644 testautomation/writer/optional/includes/fields/w_fields4.inc mode change 100755 => 100644 testautomation/writer/optional/includes/fields/w_fields5.inc mode change 100755 => 100644 testautomation/writer/optional/includes/fields/w_fields6.inc mode change 100755 => 100644 testautomation/writer/optional/includes/fields/w_fields7.inc mode change 100755 => 100644 testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/formatpage/w_formatpage2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc mode change 100755 => 100644 testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc mode change 100755 => 100644 testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/navigator/w_navigator.inc mode change 100755 => 100644 testautomation/writer/optional/includes/number/w_205_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/number/w_205a_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/number/w_206_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/number/w_207_.inc mode change 100755 => 100644 testautomation/writer/optional/includes/option/wh_o_1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/option/wh_o_2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/option/wr_o_1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/option/wr_o_2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/option/wr_o_3.inc mode change 100755 => 100644 testautomation/writer/optional/includes/option/wr_o_4.inc mode change 100755 => 100644 testautomation/writer/optional/includes/option/wr_o_a.inc mode change 100755 => 100644 testautomation/writer/optional/includes/redlining/w_redlining1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/regexp/regular.inc mode change 100755 => 100644 testautomation/writer/optional/includes/regexp/search.inc mode change 100755 => 100644 testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc mode change 100755 => 100644 testautomation/writer/optional/includes/section/w_section_3.inc mode change 100755 => 100644 testautomation/writer/optional/includes/section/w_section_4.inc mode change 100755 => 100644 testautomation/writer/optional/includes/sorting/w_sorting1.inc mode change 100755 => 100644 testautomation/writer/optional/includes/sorting/w_sorting2.inc mode change 100755 => 100644 testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc mode change 100755 => 100644 testautomation/writer/tools/includes/w_tool3.inc diff --git a/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc b/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc index 74f65eaa1704..bf14a2dae8e9 100644 --- a/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc +++ b/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc @@ -106,7 +106,7 @@ testcase tPictureAlternativeText Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\tPictureAlternativeText.odt" ) + hFileOpenLocally( gOfficePath + "user\work\tPictureAlternativeText.odt" ) ' select graphic Call wTypeKeys ("") @@ -190,7 +190,7 @@ testcase tFrameAlternativeText Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\tFrameAlternativeText.odt" ) + hFileOpenLocally( gOfficePath + "user\work\tFrameAlternativeText.odt" ) ' select frame Call wTypeKeys ("") @@ -271,7 +271,7 @@ testcase tOLEAlternativeText Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\tOLEAlternativeText.odt" ) + hFileOpenLocally( gOfficePath + "user\work\tOLEAlternativeText.odt" ) ' select OLE Call wTypeKeys ("") diff --git a/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc b/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc old mode 100755 new mode 100644 index b15edc69479a..88297c3aa709 --- a/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc +++ b/testautomation/writer/optional/includes/autocorrection/w_autocorrect2.inc @@ -127,8 +127,8 @@ testcase tToolsAutocorrectWordCompletion_2 '/// delete all entries '/// close and reopen dialog, check entries again - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list Call fDeleteAllEntries() @@ -196,8 +196,8 @@ testcase tToolsAutocorrectWordCompletion_3 '/// backwards with '/// endless loop test - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list Call fDeleteAllEntries() @@ -287,8 +287,8 @@ testcase tToolsAutocorrectWordCompletion_4 MaxEintraege.SetText sTestMaxEntries TabWortergaenzung.OK - Call hFileOpen ( gTesttoolPath + "writer\optional\input\advanced\" + sTestFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\advanced\" + sTestFile ) + Sleep 4 ToolsAutocorrect @@ -337,8 +337,8 @@ testcase tToolsAutocorrectWordCompletion_5 'Test when checkbox is checkec -- default 'Open 1st file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list Call fDeleteAllEntries() @@ -355,8 +355,8 @@ testcase tToolsAutocorrectWordCompletion_5 Call wTypeKeys sTestWord1 'Open 2nd file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) + Call wTypeKeys sTestWord2 Call wTypeKeys sTestWord3 @@ -386,8 +386,8 @@ testcase tToolsAutocorrectWordCompletion_5 'Test when checkbox is Checked 'Open 1st file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + 'Delete all entries in the list fDeleteAllEntries() @@ -403,8 +403,8 @@ testcase tToolsAutocorrectWordCompletion_5 Call wTypeKeys sTestWord1 'Open 2nd file - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01-01.odt" ) + Call wTypeKeys sTestWord2 Call wTypeKeys sTestWord3 @@ -453,8 +453,8 @@ testcase tToolsAutocorrectWordCompletion_6 '/// and a help tip will appear <--- no way to test yet 'Show as Tip -- uncheck (default) - Call hFileOpen ( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\autocorrection\01.odt" ) + Call wTypeKeys sTestWord Call wTypeKeys "" diff --git a/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc b/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc old mode 100755 new mode 100644 index de6a4d0b4fef..0c9f976b187b --- a/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc +++ b/testautomation/writer/optional/includes/clipboard/clipbrd_func.inc @@ -141,8 +141,8 @@ end function function wSetClipboardtestDefaults(ForWhat as string) as boolean printlog " Points cursor to beginning of document " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\writer.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\writer.sxw") + Kontext "DocumentWriter" printlog " Jump to beginning of document " Call wTypeKeys "" diff --git a/testautomation/writer/optional/includes/clipboard/w_210_.inc b/testautomation/writer/optional/includes/clipboard/w_210_.inc old mode 100755 new mode 100644 index 12926c8a486b..8f744c28fb6e --- a/testautomation/writer/optional/includes/clipboard/w_210_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_210_.inc @@ -225,7 +225,7 @@ testcase WriterToWriterFrame printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_frame.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_frame.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -267,7 +267,7 @@ testcase WriterToWriterDrawingObject printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_draw.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_draw.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -309,7 +309,7 @@ testcase WriterToWriterGraphicLinked printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_graphic1.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_graphic1.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -351,7 +351,7 @@ testcase WriterToWriterGraphicEmbedded printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_graphic2.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_graphic2.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -393,7 +393,7 @@ testcase WriterToWriterOLEObject printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_ole.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_ole.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -435,7 +435,7 @@ testcase WriterToWriterControl printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_control.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_control.odt",false) printlog " + Close saved document " Call hCloseDocument else diff --git a/testautomation/writer/optional/includes/clipboard/w_211_.inc b/testautomation/writer/optional/includes/clipboard/w_211_.inc old mode 100755 new mode 100644 index b385e745cf16..f40021cf38a1 --- a/testautomation/writer/optional/includes/clipboard/w_211_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_211_.inc @@ -79,7 +79,7 @@ testcase WriterToCalcText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_text.ods",true) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_text.ods",true) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -133,7 +133,7 @@ testcase WriterToCalcField Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_field.ods",true) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_field.ods",true) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -192,7 +192,7 @@ testcase WriterToCalcTable kontext "navigator" if navigator.exists then navigator.close - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_table.ods",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_table.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -248,7 +248,7 @@ testcase WriterToCalcFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_frame.ods",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_frame.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -302,7 +302,7 @@ testcase WriterToCalcDrawingObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_draw.ods",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_draw.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -357,7 +357,7 @@ testcase WriterToCalcGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_graphic1.ods",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_graphic1.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -412,7 +412,7 @@ testcase WriterToCalcGraphicEmbedded Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_graphic2.ods",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_graphic2.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -466,7 +466,7 @@ testcase WriterToCalcOLEObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_ole.ods",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_ole.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -520,7 +520,7 @@ testcase WriterToCalcControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_calc_control.ods",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_control.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_212_.inc b/testautomation/writer/optional/includes/clipboard/w_212_.inc old mode 100755 new mode 100644 index 6c2a6e9c175e..8f13f3c46488 --- a/testautomation/writer/optional/includes/clipboard/w_212_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_212_.inc @@ -80,7 +80,7 @@ testcase WriterToImpressText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_text.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_text.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -134,7 +134,7 @@ testcase WriterToImpressField Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_field.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_field.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -188,7 +188,7 @@ testcase WriterToImpressTable Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_table.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_table.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -242,7 +242,7 @@ testcase WriterToImpressFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_frame.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_frame.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -296,7 +296,7 @@ testcase WriterToImpressDrawingObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_draw.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_draw.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -350,7 +350,7 @@ testcase WriterToImpressGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_graphic1.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_graphic1.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -404,7 +404,7 @@ testcase WriterToImpressGraphicEmbedded Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_graphic2.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_graphic2.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -458,7 +458,7 @@ testcase WriterToImpressOLEObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_ole.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_ole.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -512,7 +512,7 @@ testcase WriterToImpressControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_impress_control.odp",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_control.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_213_.inc b/testautomation/writer/optional/includes/clipboard/w_213_.inc old mode 100755 new mode 100644 index 1cf8e50fa2de..ac11201662fb --- a/testautomation/writer/optional/includes/clipboard/w_213_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_213_.inc @@ -79,7 +79,7 @@ testcase WriterToDrawText Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_text.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_text.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -133,7 +133,7 @@ testcase WriterToDrawField Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_field.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_field.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -187,7 +187,7 @@ testcase WriterToDrawTable Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_table.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_table.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -241,7 +241,7 @@ testcase WriterToDrawFrame Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_frame.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_frame.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -295,7 +295,7 @@ testcase WriterToDrawDrawingObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_draw.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_draw.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -350,7 +350,7 @@ testcase WriterToDrawGraphicLinked Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_graphic1.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_graphic1.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -405,7 +405,7 @@ testcase WriterToDrawGraphicEmbedded Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_graphic2.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_graphic2.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -459,7 +459,7 @@ testcase WriterToDrawOLEObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_ole.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_ole.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -513,7 +513,7 @@ testcase WriterToDrawControl Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_draw_control.odg",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_control.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_214_.inc b/testautomation/writer/optional/includes/clipboard/w_214_.inc old mode 100755 new mode 100644 index 5f6521b4ae67..d02caff65d76 --- a/testautomation/writer/optional/includes/clipboard/w_214_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_214_.inc @@ -78,7 +78,7 @@ testcase WriterToHTMLText Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_text.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_text.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -131,7 +131,7 @@ testcase WriterToHTMLField Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_field.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_field.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -184,7 +184,7 @@ testcase WriterToHTMLTable Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_table.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_table.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -237,7 +237,7 @@ testcase WriterToHTMLFrame Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_frame.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_frame.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -290,7 +290,7 @@ testcase WriterToHTMLDrawingObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_draw.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_draw.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -343,7 +343,7 @@ testcase WriterToHTMLGraphicLinked Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_graphic1.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_graphic1.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -396,7 +396,7 @@ testcase WriterToHTMLGraphicEmbedded Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_graphic2.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_graphic2.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -449,7 +449,7 @@ testcase WriterToHTMLOLEObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_ole.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_ole.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -502,7 +502,7 @@ testcase WriterToHTMLControl Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\writer_to_html_control.html") + hFileOpenLocally( gOfficepath + "user\work\writer_to_html_control.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_215_.inc b/testautomation/writer/optional/includes/clipboard/w_215_.inc old mode 100755 new mode 100644 index 95883f35ae1b..74669a4f29b0 --- a/testautomation/writer/optional/includes/clipboard/w_215_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_215_.inc @@ -50,8 +50,8 @@ testcase CalcToWriterText1 printlog " Jump to beginning of document " printlog " Select cell " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "" @@ -113,8 +113,8 @@ testcase CalcToWriterText2 printlog " Jump to beginning of document " printlog " Select cell , press F2 and select all " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "" @@ -147,7 +147,7 @@ testcase CalcToWriterText2 Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_textformat_cellcontent.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_textformat_cellcontent.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -168,8 +168,8 @@ testcase CalcToWriterCalculation printlog " Jump to beginning of document " printlog " Select cell " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "" @@ -232,8 +232,8 @@ testcase CalcToWriterHyperlink1 printlog " Jump to beginning of document " printlog " Select cell " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "" @@ -295,8 +295,8 @@ testcase CalcToWriterHyperlink2 printlog " Jump to beginning of document " printlog " Select cell " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " DocumentCalc.TypeKeys "" @@ -329,7 +329,7 @@ testcase CalcToWriterHyperlink2 Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_hyperlink_cellcontent.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_hyperlink_cellcontent.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -350,8 +350,8 @@ testcase CalcToWriterDrawObject printlog " Jump to beginning of document " printlog " Select Drawing object " printlog " Copy selected object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " Call wNavigatorAuswahl(8,1) @@ -381,7 +381,7 @@ testcase CalcToWriterDrawObject Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_draw.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_draw.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -402,8 +402,8 @@ testcase CalcToWriterOLE printlog " Jump to beginning of document " printlog " Select OLE-Object " printlog " Copy selected object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\calc.sxc") + Kontext "DocumentCalc" printlog " Jump to beginning of document " Call wNavigatorAuswahl(6,1) @@ -433,7 +433,7 @@ testcase CalcToWriterOLE Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\writer_to_writer_ole.odt",false) + hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_ole.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_216_.inc b/testautomation/writer/optional/includes/clipboard/w_216_.inc old mode 100755 new mode 100644 index 3952ece03e4c..1537d2969692 --- a/testautomation/writer/optional/includes/clipboard/w_216_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_216_.inc @@ -50,8 +50,8 @@ testcase HTMLToWRITERText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + sleep (3) if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" @@ -122,8 +122,8 @@ testcase HTMLToWRITERField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -192,8 +192,8 @@ testcase HTMLToWRITERTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -262,8 +262,8 @@ testcase HTMLToWRITERGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -297,7 +297,7 @@ testcase HTMLToWRITERGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_writer_graphic1.odt",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_writer_graphic1.odt",false) printlog " Reopen saved document " Wait 500 printlog " Close saved document " @@ -321,8 +321,8 @@ testcase HTMLToWRITERControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -357,7 +357,7 @@ testcase HTMLToWRITERControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_writer_control.odt",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_writer_control.odt",false) printlog " Reopen saved document " Wait 500 printlog " Close saved document " @@ -381,8 +381,8 @@ testcase HTMLToWRITERFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + if GetDocumentCount() = 2 then Warnlog "#i104365#read only document remains opened" endif @@ -423,7 +423,7 @@ testcase HTMLToWRITERFloatingFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_writer_float.odt",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_writer_float.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_217_.inc b/testautomation/writer/optional/includes/clipboard/w_217_.inc old mode 100755 new mode 100644 index fcb6b450803a..de3f78367e24 --- a/testautomation/writer/optional/includes/clipboard/w_217_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_217_.inc @@ -49,8 +49,8 @@ testcase HTMLToCALCText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "" @@ -115,8 +115,8 @@ testcase HTMLToCALCField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",2 @@ -149,7 +149,7 @@ testcase HTMLToCALCField Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_field.ods",true) + hFileOpenLocally( gOfficepath + "user\work\html_to_calc_field.ods",true) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -172,8 +172,8 @@ testcase HTMLToCALCTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",5 @@ -203,7 +203,7 @@ testcase HTMLToCALCTable printlog " Save document as ..\user\work\html_to_calc_table.ods" Call hCloseDocument printlog " Close saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_table.ods",true) + hFileOpenLocally( gOfficepath + "user\work\html_to_calc_table.ods",true) printlog " Reopen saved document " Call hCloseDocument printlog " Close saved document " @@ -226,8 +226,8 @@ testcase HTMLToCALCGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -260,7 +260,7 @@ testcase HTMLToCALCGraphicLinked Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_graphic1.ods",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_calc_graphic1.ods",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -283,8 +283,8 @@ testcase HTMLToCALCControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -317,7 +317,7 @@ testcase HTMLToCALCControl Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_control.ods",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_calc_control.ods",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -340,8 +340,8 @@ testcase HTMLToCALCFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html",false) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html",false) + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -378,7 +378,7 @@ testcase HTMLToCALCFloatingFrame printlog " Close saved document " Call hCloseDocument printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_calc_float.ods",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_calc_float.ods",false) printlog " Close saved document " Call hCloseDocument else diff --git a/testautomation/writer/optional/includes/clipboard/w_218_.inc b/testautomation/writer/optional/includes/clipboard/w_218_.inc old mode 100755 new mode 100644 index 6788407f6c05..fb8aae68a7ec --- a/testautomation/writer/optional/includes/clipboard/w_218_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_218_.inc @@ -49,8 +49,8 @@ testcase HTMLToDRAWText printlog " + Jump to beginning of document " printlog " + Select first paragraph " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "" @@ -115,8 +115,8 @@ testcase HTMLToDRAWField printlog " + Jump to beginning of document " printlog " + Select paragraph with 'Date Field' " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",2 @@ -154,7 +154,7 @@ testcase HTMLToDRAWField Call hCloseDocument sleep (2) printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_field.odg",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_draw_field.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -177,8 +177,8 @@ testcase HTMLToDRAWTable printlog " + Jump to beginning of document " printlog " + Select 'Table' " printlog " + Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",5 @@ -211,7 +211,7 @@ testcase HTMLToDRAWTable Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_table.odg",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_draw_table.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -234,8 +234,8 @@ testcase HTMLToDRAWGraphicLinked printlog " + Jump to beginning of document " printlog " + Select 'Linked Graphic' " printlog " + Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -267,7 +267,7 @@ testcase HTMLToDRAWGraphicLinked Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_graphic1.odg",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_draw_graphic1.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -290,8 +290,8 @@ testcase HTMLToDRAWControl printlog " + Jump to beginning of document " printlog " + Select 'Control' " printlog " + Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -324,7 +324,7 @@ testcase HTMLToDRAWControl Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_control.odg",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_draw_control.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -347,8 +347,8 @@ testcase HTMLToDRAWFloatingFrame printlog " + Jump to beginning of document " printlog " + Select 'Floating Frame' " printlog " + Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -386,7 +386,7 @@ testcase HTMLToDRAWFloatingFrame Call hCloseDocument wait 500 printlog " + Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_draw_float.odg",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_draw_float.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_219_.inc b/testautomation/writer/optional/includes/clipboard/w_219_.inc old mode 100755 new mode 100644 index 74ca4d7c5f71..8ce54912c15c --- a/testautomation/writer/optional/includes/clipboard/w_219_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_219_.inc @@ -49,8 +49,8 @@ testcase HTMLToIMPRESSText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "" @@ -115,8 +115,8 @@ testcase HTMLToIMPRESSField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",2 @@ -149,7 +149,7 @@ testcase HTMLToIMPRESSField Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_field.odp",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_impress_field.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -172,8 +172,8 @@ testcase HTMLToIMPRESSTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",5 @@ -206,7 +206,7 @@ testcase HTMLToIMPRESSTable Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_table.odp",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_impress_table.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -229,8 +229,8 @@ testcase HTMLToIMPRESSGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -262,7 +262,7 @@ testcase HTMLToIMPRESSGraphicLinked Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_graphic1.odp",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_impress_graphic1.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -285,8 +285,8 @@ testcase HTMLToIMPRESSControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -319,7 +319,7 @@ testcase HTMLToIMPRESSControl Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_control.odp",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_impress_control.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -342,8 +342,8 @@ testcase HTMLToIMPRESSFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -381,7 +381,7 @@ testcase HTMLToIMPRESSFloatingFrame Call hCloseDocument wait 500 printlog " Reopen saved document " - Call hFileOpen (gOfficepath + "user\work\html_to_impress_float.odp",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_impress_float.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_220_.inc b/testautomation/writer/optional/includes/clipboard/w_220_.inc old mode 100755 new mode 100644 index e938ba027fd1..8e494c0e8af4 --- a/testautomation/writer/optional/includes/clipboard/w_220_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_220_.inc @@ -54,8 +54,8 @@ testcase HTMLToHTMLText printlog " Jump to beginning of document " printlog " Select first paragraph " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "" @@ -86,7 +86,7 @@ testcase HTMLToHTMLText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_text.html",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_html_text.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -110,8 +110,8 @@ testcase HTMLToHTMLField printlog " Jump to beginning of document " printlog " Select paragraph with 'Date Field' " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",2 @@ -143,7 +143,7 @@ testcase HTMLToHTMLField Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_field.html",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_html_field.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -167,8 +167,8 @@ testcase HTMLToHTMLTable printlog " Jump to beginning of document " printlog " Select 'Table' " printlog " Copy selected table " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys "",5 @@ -200,7 +200,7 @@ testcase HTMLToHTMLTable Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_table.html",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_html_table.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -224,8 +224,8 @@ testcase HTMLToHTMLGraphicLinked printlog " Jump to beginning of document " printlog " Select 'Linked Graphic' " printlog " Copy selected Linked Graphic " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -256,7 +256,7 @@ testcase HTMLToHTMLGraphicLinked Call hCloseDocument printlog " Close saved document " sleep (2) - Call hFileOpen (gOfficepath + "user\work\html_to_html_graphic1.html",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_html_graphic1.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -280,8 +280,8 @@ testcase HTMLToHTMLControl printlog " Jump to beginning of document " printlog " Select 'Control' " printlog " Copy selected Control " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -313,7 +313,7 @@ testcase HTMLToHTMLControl Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_control.html",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_html_control.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -337,8 +337,8 @@ testcase HTMLToHTMLFloatingFrame printlog " Jump to beginning of document " printlog " Select 'Floating Frame' " printlog " Copy selected Floating Frame " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\html.html") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\html.html") + printlog " Jump to beginning of document " Call wTypeKeys "" Call wTypeKeys ( "" ) @@ -375,7 +375,7 @@ testcase HTMLToHTMLFloatingFrame Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\html_to_html_float.html",false) + hFileOpenLocally( gOfficepath + "user\work\html_to_html_float.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_221_.inc b/testautomation/writer/optional/includes/clipboard/w_221_.inc old mode 100755 new mode 100644 index 4b5818065244..0436ef6531d4 --- a/testautomation/writer/optional/includes/clipboard/w_221_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_221_.inc @@ -50,8 +50,8 @@ testcase DrawToHTMLScrollingText printlog " + Jump to beginning of document " printlog " + Select Scrolling text " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "" @@ -80,7 +80,7 @@ testcase DrawToHTMLScrollingText Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_scrolling_text.html",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_html_scrolling_text.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -105,8 +105,8 @@ testcase DrawToHTMLGroupedObject printlog " + Jump to beginning of document " printlog " + Select Grouped Object " printlog " + Copy selected Object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",2 @@ -135,7 +135,7 @@ testcase DrawToHTMLGroupedObject Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_grouped_object.html",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_html_grouped_object.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -160,8 +160,8 @@ testcase DrawToHTML3D printlog " + Jump to beginning of document " printlog " + Select cell " printlog " + Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",3 @@ -190,7 +190,7 @@ testcase DrawToHTML3D Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_3d.html",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_html_3d.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -215,8 +215,8 @@ testcase DrawToHTMLFontwork printlog " + Jump to beginning of document " printlog " + Select Fontwork " printlog " + Copy selected Fontwork " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",4 @@ -245,7 +245,7 @@ testcase DrawToHTMLFontwork Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_fontwork.html",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_html_fontwork.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -270,8 +270,8 @@ testcase DrawToHTMLBullets printlog " + Jump to beginning of document " printlog " + Select Bullets " printlog " + Copy selected Bullets " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",5 @@ -300,7 +300,7 @@ testcase DrawToHTMLBullets Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_bullets.html",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_html_bullets.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -325,8 +325,8 @@ testcase DrawToHTMLDimensionLines printlog " + Jump to beginning of document " printlog " + Select Dimension Lines " printlog " + Copy selected Dimension Lines " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "" @@ -356,7 +356,7 @@ testcase DrawToHTMLDimensionLines Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_dim_lines.html",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_html_dim_lines.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -381,8 +381,8 @@ testcase DrawToHTMLConnectors printlog " + Jump to beginning of document " printlog " + Select Connectors " printlog " + Copy selected Connectors " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "" @@ -412,7 +412,7 @@ testcase DrawToHTMLConnectors Call hCloseDocument printlog " + Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_html_connectors.html",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_html_connectors.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_222_.inc b/testautomation/writer/optional/includes/clipboard/w_222_.inc old mode 100755 new mode 100644 index 1efb0e67fda4..488f0d40ca6d --- a/testautomation/writer/optional/includes/clipboard/w_222_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_222_.inc @@ -51,8 +51,8 @@ testcase DrawToWriterScrollingText printlog " Jump to beginning of document " printlog " Select Scrolling text " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "" @@ -81,7 +81,7 @@ testcase DrawToWriterScrollingText Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_scrolling_text.odt",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_scrolling_text.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -106,8 +106,8 @@ testcase DrawToWriterGroupedObject printlog " Jump to beginning of document " printlog " Select Grouped Object " printlog " Copy selected Object " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",2 @@ -136,7 +136,7 @@ testcase DrawToWriterGroupedObject Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_grouped_object.odt",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_grouped_object.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -161,8 +161,8 @@ testcase DrawToWriter3D printlog " Jump to beginning of document " printlog " Select cell " printlog " Copy selected text " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",3 @@ -191,7 +191,7 @@ testcase DrawToWriter3D Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_3d.odt",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_3d.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -216,8 +216,8 @@ testcase DrawToWriterFontwork printlog " Jump to beginning of document " printlog " Select Fontwork " printlog " Copy selected Fontwork " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",4 @@ -246,7 +246,7 @@ testcase DrawToWriterFontwork Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_fontwork.odt",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_fontwork.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -271,8 +271,8 @@ testcase DrawToWriterBullets printlog " Jump to beginning of document " printlog " Select Bullets " printlog " Copy selected Bullets " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "",5 @@ -301,7 +301,7 @@ testcase DrawToWriterBullets Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_bullets.odt",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_bullets.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -326,8 +326,8 @@ testcase DrawToWriterDimensionLines printlog " Jump to beginning of document " printlog " Select Dimension Lines " printlog " Copy selected Dimension Lines " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "" @@ -357,7 +357,7 @@ testcase DrawToWriterDimensionLines Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_dim_lines.odt",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_dim_lines.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -382,8 +382,8 @@ testcase DrawToWriterConnectors printlog " Jump to beginning of document " printlog " Select Connectors " printlog " Copy selected Connectors " - Call hFileOpen (gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath & "writer\optional\input\clipboard\draw.sxd") + Kontext "DocumentDraw" printlog " Jump to beginning of document " DocumentDraw.TypeKeys "" @@ -413,7 +413,7 @@ testcase DrawToWriterConnectors Call hCloseDocument printlog " Close saved document " wait 500 - Call hFileOpen (gOfficepath + "user\work\draw_to_writer_connectors.odt",false) + hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_connectors.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc b/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc old mode 100755 new mode 100644 index 8b6b8e8329e8..43b16a2878a0 --- a/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc +++ b/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc @@ -636,8 +636,8 @@ testcase tGroup_12 Call hCloseDocument PrintLog "- Open previous saved document " - Call hFileOpen (sDocument) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sDocument) + Kontext "DocumentWriter" Call gMouseClick(34,34) 'set focus in the group diff --git a/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc b/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc old mode 100755 new mode 100644 index 6c4b39d0263f..7e1eee588127 --- a/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc +++ b/testautomation/writer/optional/includes/dropdownLB/w_dropdownLB1.inc @@ -1024,8 +1024,8 @@ testcase tDropDownLB_17 PrintLog "- Open a new document" Call hNewDocument PrintLog "- Open a word document which includes 2 entries." - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Kontext "EditInputList" if EditInputList.Exists then EditInputList.Cancel diff --git a/testautomation/writer/optional/includes/fields/w_fields2.inc b/testautomation/writer/optional/includes/fields/w_fields2.inc old mode 100755 new mode 100644 index 4f2c5c39388c..0f10d2b9ef42 --- a/testautomation/writer/optional/includes/fields/w_fields2.inc +++ b/testautomation/writer/optional/includes/fields/w_fields2.inc @@ -319,8 +319,8 @@ testcase tDocumentChapter Call hNewDocument '/// Open test file chapterTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call wTypeKeys "" @@ -416,7 +416,7 @@ testcase tDocumentFilename Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call wTypeKeys "" Call wTypeKeys "" @@ -470,8 +470,8 @@ testcase tDocumentPage Call hNewDocument '/// Open test file pageTest.sxw which includes 3 pages - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Go to the 2nd page Call wTypeKeys "" @@ -890,7 +890,7 @@ testcase tDocumentStatistics '/// Open test file statisticsTest.sxw which includes '/// 2 tables , 2 pictures , 22 paragraph , 1 object , '/// 2 words , 12 characters and 2 pages - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call wTypeKeys "" @@ -958,7 +958,7 @@ testcase tDocumentTemplate '/// Insert/Fields/Other/Document / Template '/// Open test file diploma.ott - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call wTypeKeys "" diff --git a/testautomation/writer/optional/includes/fields/w_fields3.inc b/testautomation/writer/optional/includes/fields/w_fields3.inc old mode 100755 new mode 100644 index 7b4e7f50722b..64261c7e1ac6 --- a/testautomation/writer/optional/includes/fields/w_fields3.inc +++ b/testautomation/writer/optional/includes/fields/w_fields3.inc @@ -94,8 +94,8 @@ testcase tSetReferenceNoSelection Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd page Call wTypeKeys "" @@ -182,8 +182,8 @@ testcase tInsertReferencePage Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd page Call wTypeKeys "" @@ -242,8 +242,8 @@ testcase tInsertReferenceChapter Call hNewDocument '/// Open test file chapterTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd line Call wTypeKeys "" @@ -685,8 +685,8 @@ testcase tInsertBookmarkPage Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd page Call wTypeKeys "" @@ -743,8 +743,8 @@ testcase tInsertBookmarkChapter Call hNewDocument '/// Open test file chapterTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Set curson to the 2nd line Call wTypeKeys "" diff --git a/testautomation/writer/optional/includes/fields/w_fields4.inc b/testautomation/writer/optional/includes/fields/w_fields4.inc old mode 100755 new mode 100644 index d1e16a1a36be..fb5a67ce8bb7 --- a/testautomation/writer/optional/includes/fields/w_fields4.inc +++ b/testautomation/writer/optional/includes/fields/w_fields4.inc @@ -67,8 +67,8 @@ testcase tDocInformationTitle Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + new text in Title @@ -119,8 +119,8 @@ testcase tDocInformationSubject Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + text in Subject @@ -171,8 +171,8 @@ testcase tDocInformationKeywords Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + text in Keywords @@ -223,8 +223,8 @@ testcase tDocInformationDescription Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// File / Properties / Description , input some '/// + text in Description @@ -301,7 +301,7 @@ testcase tDocInformationUserDefined Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// File / Properties / Description , input some '/// + text in Description @@ -378,8 +378,8 @@ testcase tDocInformationCreated Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call fFindWord ("Created") Call wTypeKeys "" @@ -495,7 +495,7 @@ testcase tDocInformationModified Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call hFileSaveAsKill (sSaveAsFile) Call fFindWord ("Modified") @@ -632,7 +632,7 @@ testcase tDocInformationModifiedSavefile Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call fFindWord ("Modified") Call wTypeKeys "" @@ -749,7 +749,7 @@ testcase tDocInformationPrinted Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) Call fFindWord ("Last printed") Call wTypeKeys "" @@ -873,7 +873,7 @@ testcase tDocInformationRevisionnumber Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Change author to author : Test2 Test1 ToolsOptions @@ -972,7 +972,7 @@ testcase tDocInformationTotaleditingtime Call hNewDocument '/// Open test file fields_docinfos.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Save the file as another file Call hFileSaveAsKill(sSaveAsFile) diff --git a/testautomation/writer/optional/includes/fields/w_fields5.inc b/testautomation/writer/optional/includes/fields/w_fields5.inc old mode 100755 new mode 100644 index 334d01906307..75f94e8a3351 --- a/testautomation/writer/optional/includes/fields/w_fields5.inc +++ b/testautomation/writer/optional/includes/fields/w_fields5.inc @@ -722,7 +722,7 @@ testcase tVariablesDDEFieldManual '/// Open the test file which you just closed , add something , '/// Save the file - Call hFileOpen(sDDEFile) + hFileOpenLocally( sDDEFile) Call wTypeKeys "" Call wTypeKeys "XYZ" FileSave @@ -818,7 +818,7 @@ testcase tVariablesDDEFieldAutomatic '/// Open the test file which you just closed , add something , '/// Save the file - Call hFileOpen(sDDEFile) + hFileOpenLocally( sDDEFile) Call wTypeKeys "" Call wTypeKeys "XYZ" FileSave diff --git a/testautomation/writer/optional/includes/fields/w_fields6.inc b/testautomation/writer/optional/includes/fields/w_fields6.inc old mode 100755 new mode 100644 index e310b67740af..f29eff451edb --- a/testautomation/writer/optional/includes/fields/w_fields6.inc +++ b/testautomation/writer/optional/includes/fields/w_fields6.inc @@ -795,8 +795,8 @@ testcase tFunctionsCombineCharacter Call hNewDocument '/// Open test file pageTest.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Call wTypeKeys "" Call wTypeKeys "" diff --git a/testautomation/writer/optional/includes/fields/w_fields7.inc b/testautomation/writer/optional/includes/fields/w_fields7.inc old mode 100755 new mode 100644 index 5893e324366b..af3e73c284b1 --- a/testautomation/writer/optional/includes/fields/w_fields7.inc +++ b/testautomation/writer/optional/includes/fields/w_fields7.inc @@ -119,8 +119,8 @@ testcase tL10NtestAboveBelow Call hNewDocument '/// Open test file AboveBelow.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Check if reference above/below is changed after language is changed @@ -248,7 +248,7 @@ testcase tL10NtestDate Call hNewDocument '/// Open test file Date.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Check if Date is changed after language is changed j = UBound(iCountry) @@ -371,7 +371,7 @@ testcase tL10NtestTime Call hNewDocument '/// Open test file Time.sxw - Call hFileOpen(sTestFile) + hFileOpenLocally( sTestFile ) '/// Check if time is changed after language is changed j = UBound(iCountry) diff --git a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc old mode 100755 new mode 100644 index eb2de884a8cc..7b8b0e61d784 --- a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc +++ b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc @@ -243,9 +243,9 @@ testcase tFormatCharacter3 Call hCloseDocument printlog "reopen previous saved document and check saved character format" if gApplication = "WRITER" then - Call hFileOpen ( gOfficePath + "user\work\format1.odt" ) + hFileOpenLocally( gOfficePath + "user\work\format1.odt" ) else - Call hFileOpen ( gOfficePath + "user\work\format1.odm" ) + hFileOpenLocally( gOfficePath + "user\work\format1.odm" ) end if Call wTypeKeys "" Wait 500 @@ -579,9 +579,9 @@ testcase tFormatCharacter Call hCloseDocument printlog "re-open previous saved document" if gApplication = "WRITER" then - Call hFileOpen ( gOfficePath + "user\work\format1.odt" ) + hFileOpenLocally( gOfficePath + "user\work\format1.odt" ) else - Call hFileOpen ( gOfficePath + "user\work\format1.odm" ) + hFileOpenLocally( gOfficePath + "user\work\format1.odm" ) end if Call wTypeKeys "" Wait 500 diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc index 84a5c5281f8b..c597fef06f87 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc @@ -348,7 +348,7 @@ testcase tFormatPage_6 Call hNewDocument - Call hFileOpen(gOfficepath + "user\work\tFormatPage_6.odt") + hFileOpenLocally( gOfficepath + "user\work\tFormatPage_6.odt") '/// Check if Pre-defined formats are correct fFormatPageWriter("TabSeite") @@ -602,8 +602,8 @@ testcase tFormatPage_11 '/// Open a test file , '/// + There are 2 pictures in 2 pages separately , '/// + and they are anchored as character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Right to left" @@ -662,8 +662,8 @@ testcase tFormatPage_12 '/// Open a test file , '/// + there are 2 pictures in 2 pages separately , and they are anchored as character - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Mirrored" @@ -724,8 +724,8 @@ testcase tFormatPage_13 '/// Open a test file , '/// + there are 2 pictures in 2 pages separately - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Only right" @@ -781,8 +781,8 @@ testcase tFormatPage_14 '/// Open a test file , '/// + there are 2 pictures in 2 pages separately - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// FormatPage / tabpage Page , Set left margins to 10cm , '/// + and set page layout to "Only left" diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc old mode 100755 new mode 100644 index 290b1a395b94..a191efc726cf --- a/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage2.inc @@ -60,8 +60,8 @@ testcase tFormatPage_16 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -151,8 +151,8 @@ testcase tFormatPage_17 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -255,8 +255,8 @@ testcase tFormatPage_18 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -340,8 +340,8 @@ testcase tFormatPage_19 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -417,8 +417,8 @@ testcase tFormatPage_20 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -507,8 +507,8 @@ testcase tFormatPage_21 '/// AutoFit height - Check (Footer,multiline content) '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -613,8 +613,8 @@ testcase tFormatPage_22 Call hNewDocument '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" @@ -697,8 +697,8 @@ testcase tFormatPage_23 '/// AutoFit height - UnCheck (Footer,multiline content) '/// Open test file testForAutoFit.sxw - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Open Navigator and enter as page number 2 Kontext "Navigator" diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc index 784f6dad28cc..f4954d106df6 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc @@ -71,8 +71,8 @@ testcase tFormatPage_29 '/// Open test file testHeaderContent29.sxw '/// + (The test file include 2 pages , and the '/// + content in header are different ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage header , check 'same content left/right' fFormatPageWriter("TabKopfzeile") @@ -159,8 +159,8 @@ testcase tFormatPage_30 '/// Open test file testHeaderContent30.sxw '/// + (The test file include 2 pages , and the '/// + content in header is same ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage header , Uncheck 'same content left/right' fFormatPageWriter("TabKopfzeile") @@ -226,8 +226,8 @@ testcase tFormatPage_31 '/// Open test file testFooterContent31.sxw '/// + (The test file include 2 pages , and the content '/// + in footer are different ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// + formatPage , tabpage footer , check 'same content left/right' fFormatPageWriter("TabFusszeile") @@ -314,8 +314,8 @@ testcase tFormatPage_32 '/// Open test file testFooterContent32.sxw '/// + (The test file include 2 pages , and the '/// + content in footer is same ) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage footer , Uncheck 'same content left/right' fFormatPageWriter("TabFusszeile") @@ -743,8 +743,8 @@ testcase tFormatPage_39 '/// Open test file testColumnInPage.sxw '/// + (The test file includes 2 pages , some text '/// + is in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage columns , change column to 3 via controls fFormatPageWriter("TabSpalten") @@ -808,8 +808,8 @@ testcase tFormatPage_40 '/// Open test file testColumnInPage.sxw '/// + (The test file includes 2 pages , some text is '/// + in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage columns , change column to 3 via spinfield fFormatPageWriter("TabSpalten") @@ -882,8 +882,8 @@ testcase tFormatPage_41 '/// Open test file testColumnInPage2.sxw '/// + (The test file includes 2 pages , some text is '/// + in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Create 3 with different columns . formatPage , '/// + tabpage columns , set 3 columns @@ -973,8 +973,8 @@ testcase tFormatPage_42 '/// Open test file testColumnInPage2.sxw '/// + (The test file includes 2 pages , some text is '/// + in 1st page and another is in 2nd page) - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage columns , set 3 columns fFormatPageWriter("TabSpalten") @@ -1136,8 +1136,8 @@ testcase tFormatPage_45 '/// Open test file testSeparatorLine.sxw '/// + (The test file includes 6 columns , some '/// + test text lllll... is in 2nd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + Kontext EditSearchAndReplace @@ -1263,7 +1263,7 @@ testcase tFormatPage_46 Call hCloseDocument Call hNewDocument - Call hFileOpen(gOfficepath + "user\work\tFormatPage_46.odt") + hFileOpenLocally( gOfficepath + "user\work\tFormatPage_46.odt") '/// Check if the setting are still kept fFormatPageWriter("TabSpalten") diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc index 9b800e3bad4b..526cf111bc16 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc @@ -375,8 +375,8 @@ testcase tFormatPage_53 '/// Open test file testColumnVertical.sxw '/// + There are 8 columns in the page , and a test '/// + word is in 3rd column - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// formatPage , tabpage page, select right to left (vertical) Call fFormatPageWriter("TabSeite") @@ -763,8 +763,8 @@ testcase tFormatPage_60 Call hCloseDocument Call hNewDocument - Call hFileOpen(gOfficepath + "user\work\tFormatPage_60.odt") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gOfficepath + "user\work\tFormatPage_60.odt") + '/// check if the configuration is all right fFormatPageWriter("TabUmrandung") diff --git a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc old mode 100755 new mode 100644 index 4fa007cfc4b0..7c31482e37af --- a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc +++ b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph1.inc @@ -366,8 +366,8 @@ testcase tParagraphIndent5 '/// Open the test file '/// This file includes 2 paragraphs , and the end of 2nd paragraph is in 1st page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to 2nd paragraph Kontext @@ -426,8 +426,8 @@ testcase tParagraphIndent6 '/// Open the test file '/// This file includes 2 paragraphs , and the end of 2nd paragraph is in 1st page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to 1st paragraph Kontext @@ -494,8 +494,8 @@ testcase tParagraphIndent7 '/// if the spacing is adopted 1cm ,2nd paragrahp will be in 1st page '/// if the spacing is adopted 2cm ,2nd paragrahp part will be in 1st page , part will be in 2nd page '/// if the spacing is adopted 3cm ,2nd paragrahp will be in 2nd page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to the end of the 1st paragraph Kontext @@ -582,8 +582,8 @@ testcase tParagraphIndent8 '/// if the spacing is adopted 1cm ,2nd paragrahp will be in 1st page '/// if the spacing is adopted 2cm ,2nd paragrahp part will be in 1st page , part will be in 2nd page '/// if the spacing is adopted 3cm ,2nd paragrahp will be in 2nd page - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Set the focus to the end of the 1st paragraph Kontext @@ -642,8 +642,8 @@ testcase tParagraphIndent9 '/// Open the test file '/// This file includes 8 lines , '/// + when the spacing is single line , the 8 lines should be in 1 page as design. - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , select single line in Line spacing Call fFormatParagraph("TabEinzuegeUndAbstaende") @@ -683,8 +683,8 @@ testcase tParagraphIndent10 '/// This file includes 8 lines '/// when the spacing is 1.5 lines , '/// + the last 2(or 3) lines should be in 2nd page. - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , select 1.5 lines in Line spacing Call fFormatParagraph("TabEinzuegeUndAbstaende") @@ -753,8 +753,8 @@ testcase tParagraphIndent11 '/// This file includes 8 lines '/// when the spacing is Double lines , the first 4 lines should be in 1st page '/// + the last 4 lines should be in 2nd page. - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , select Double lines in Line spacing Call fFormatParagraph("TabEinzuegeUndAbstaende") @@ -833,8 +833,8 @@ testcase tParagraphIndent12 '/// This file includes 8 lines '/// when the spacing Proportional is more than 200% , '/// + then it will change to be Double line automatically - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , '/// + select Proportional in Line spacing , and input 300% @@ -907,8 +907,8 @@ testcase tParagraphIndent13 '/// This file includes 8 lines and 1 pic is anchored as character in 1st line '/// when the spacing is At least to 4cm, there should be 1 line/page '/// + and the pic should move down - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Get the original coordinate-Y Call wTypeKeys ( "" ) @@ -976,8 +976,8 @@ testcase tParagraphIndent14 '/// This file includes 8 lines and 1 pic is anchored as character in 1st line '/// when the spacing is leading to 4cm, there should be 1 line/page '/// + and the pic should NOT move - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Get the original coordinate-Y Call wTypeKeys ( "" ) @@ -1042,8 +1042,8 @@ testcase tParagraphIndent15 '/// Open the test file '/// + This file includes 8 lines , and font size is 12 - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Indents & Spacing , '/// + select Fixed lines in Line spacing @@ -1112,8 +1112,8 @@ testcase tParagraphIndent16 '/// + You will find out the "He2 heard quiet steps" '/// + isn't at the same line with the context left it . '/// + There is a pic anchored "He2" . - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + 'Get the original location for the pic Call wTypeKeys ( "" ) @@ -1171,8 +1171,8 @@ testcase tParagraphIndent17 '/// In Tools/Optionis/Text Document/Compatibility, '/// + the 'Add spacing between paragarph and talbes' '/// + should be checked - Call hFileOpen(sTestFile1) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile1) + ToolsOptions Call hToolsOptions("WRITER","COMPATIBILITY") @@ -1193,8 +1193,8 @@ testcase tParagraphIndent17 '/// In Tools/Optionis/Text Document/Compatibility, '/// + the 'Add spacing between paragarph and talbes' '/// + should NOT be checked - Call hFileOpen(sTestFile2) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile2) + ToolsOptions Call hToolsOptions("WRITER","COMPATIBILITY") diff --git a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc old mode 100755 new mode 100644 index 77af9b0a0301..37c79948a1cc --- a/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc +++ b/testautomation/writer/optional/includes/formatparagraph/w_formatparagraph3.inc @@ -73,8 +73,8 @@ testcase tParagraphTabs1 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Left in the type area , and input 3cm in Position @@ -119,8 +119,8 @@ testcase tParagraphTabs2 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Right in the type area , and input 3cm in Position @@ -165,8 +165,8 @@ testcase tParagraphTabs3 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Centered in the type area , and input 3cm in Position @@ -212,8 +212,8 @@ testcase tParagraphTabs4 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file , '/// + and there are 1 "." seperator in front of the pic - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Tabs , '/// + check Decimal in the type area , @@ -351,8 +351,8 @@ testcase tParagraphDropCaps1 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , close the dialog @@ -403,8 +403,8 @@ testcase tParagraphDropCaps2 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , then check 'whole word' , then close the dialog @@ -457,8 +457,8 @@ testcase tParagraphDropCaps3 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , then set '6' in 'number of characters' ,then close the dialog @@ -511,8 +511,8 @@ testcase tParagraphDropCaps4 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' , then set '6' in 'Lines' ,then close the dialog @@ -562,8 +562,8 @@ testcase tParagraphDropCaps5 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' ,then set 'Space to text' to be 1cm , close the dialog @@ -648,8 +648,8 @@ testcase tParagraphDropCaps7 '/// Open the test file '/// + There is 1 pic which is anchored as character in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Format/Paragraph / Drop Caps , '/// + Check 'Display Drop Caps' ,then set Xyz in Contents 'Text' field , close the dialog @@ -779,8 +779,8 @@ testcase tParagraphNumbering1 '/// Open the test file , '/// + there are 2 paragraphes in the file - Call hFileOpen(sTestFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sTestFile ) + '/// Find the test word , set the focus to 1st paragraph Call fFindWord( sTest1 ) diff --git a/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc b/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc old mode 100755 new mode 100644 index 62132356360c..560265c301e8 --- a/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc +++ b/testautomation/writer/optional/includes/hyphenation/w_hyphenation.inc @@ -51,8 +51,8 @@ testcase tHyphenation_1 printlog "Test Hyphenation using ctrl and -" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly @@ -98,8 +98,8 @@ testcase tHyphenation_2 printlog "Test Hyphenation using ctrl and -" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly @@ -153,8 +153,8 @@ testcase tHyphenation_3 printlog "Test Hyphenation using Tools/Hyphenation ,test like fol-lowing" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly @@ -265,8 +265,8 @@ testcase tHyphenation_4 printlog "Test Hyphenation using Tools/Hyphenation ,test like follow-ing" printlog "open a test file" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\hyphenation\" + testFile ) + ' we must assure the word 'following' is the first word in second line ' otherwise the test will not work correctly diff --git a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc old mode 100755 new mode 100644 index 4b0a23775f33..bf90c2744768 --- a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc +++ b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc @@ -642,9 +642,9 @@ testcase tInsertGraphic_10 sleep(2) '/// Reload the file - Call hFileOpen(gOfficepath + "user\work\tInsertGraphic_5.odt") + hFileOpenLocally( gOfficepath + "user\work\tInsertGraphic_5.odt") sleep(2) - Call sMakeReadOnlyDocumentEditable + '/// Check if the inserted graphics are still there Kontext "DocumentWriter" diff --git a/testautomation/writer/optional/includes/loadsave/w_loadsave.inc b/testautomation/writer/optional/includes/loadsave/w_loadsave.inc index 7454f733665d..3bfd69c481d6 100644 --- a/testautomation/writer/optional/includes/loadsave/w_loadsave.inc +++ b/testautomation/writer/optional/includes/loadsave/w_loadsave.inc @@ -80,7 +80,7 @@ testcase tExportAllReadableFormatsIntoODF if GetExtention ( sExportFile ) = "psw" then QAErrorlog "#i102221#Pocket Word filter puts General I/O Error" else - Call hFileOpen ( ImportFileList(i) ) + hFileOpenLocally( ImportFileList(i) ) printlog "- done" Kontext "TextImport" diff --git a/testautomation/writer/optional/includes/navigator/w_navigator.inc b/testautomation/writer/optional/includes/navigator/w_navigator.inc old mode 100755 new mode 100644 index ec3b6cfd4627..c0f03039176d --- a/testautomation/writer/optional/includes/navigator/w_navigator.inc +++ b/testautomation/writer/optional/includes/navigator/w_navigator.inc @@ -216,8 +216,8 @@ testcase tViewNavigator3 '/// Edit / Navigator : check some Navigator-Functions /// printlog "- Edit / Navigator : check some Navigator-Functions" '/// Open document ( navigator.odt ) /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) + '/// Open Navigator /// Kontext "Navigator" if Navigator.NotExists then ViewNavigator @@ -363,8 +363,8 @@ testcase tViewNavigator4 endif printlog "- Edit / Navigator : check entry's in Navigator Index" '/// File / Open / 'gTesttoolpath + "writer\optional\input\navigator\navigator.odt"' /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) + '/// Open Navigator through Edit / Navigator /// ViewNavigator Kontext "NavigatorWriter" @@ -432,8 +432,8 @@ testcase tViewNavigator5 printlog "- Edit / Navigator : Check Jumpmark from Index in Navigator" '/// File / Open / 'gTesttoolpath + "writer\optional\input\navigator\navigator.odt"' /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\navigator.odt" ) + '/// Open Navigator /// Kontext "NavigatorWriter" if Not NavigatorWriter.Exists then @@ -617,8 +617,8 @@ testcase tViewNavigator6 printlog "- Edit / Navigator : Rename Objects" '/// File / Open / 'gTesttoolpath + "writer\optional\input\navigator\st1_1.sxw" ' /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\navigator\st1_1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\navigator\st1_1.sxw" ) + Kontext "Navigator" '/// Open Navigator /// if Navigator.NotExists then ViewNavigator @@ -674,7 +674,7 @@ testcase tViewNavigator6 Sleep 2 printlog "- Saving and Loading the document, check settings" - Call hFileOpen(gOfficePath + "user\work\uvobj.odt") + hFileOpenLocally( gOfficePath + "user\work\uvobj.odt") '/// Navigator has to be opened with document /// Kontext "Navigator" if Navigator.NotExists then diff --git a/testautomation/writer/optional/includes/number/w_205_.inc b/testautomation/writer/optional/includes/number/w_205_.inc old mode 100755 new mode 100644 index 57a56ab80b8c..dafa55b3d9bb --- a/testautomation/writer/optional/includes/number/w_205_.inc +++ b/testautomation/writer/optional/includes/number/w_205_.inc @@ -183,7 +183,7 @@ testcase tFormatNumberingBullets Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\format4." & WriterFilterExtension(0) ) + hFileOpenLocally( gOfficePath + "user\work\format4." & WriterFilterExtension(0) ) Sleep 2 '/// Close document /// Call hCloseDocument @@ -315,7 +315,7 @@ testcase tFormatNumberingPosition Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\tFormatNumberingPosition." & WriterFilterExtension(0) ) + hFileOpenLocally( gOfficePath + "user\work\tFormatNumberingPosition." & WriterFilterExtension(0) ) '/// check settings on Format / NumberingBullets /// FormatNumberingBullets @@ -499,7 +499,7 @@ testcase tFormatNumberingOptions Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\format6." & WriterFilterExtension(0) ) + hFileOpenLocally( gOfficePath + "user\work\format6." & WriterFilterExtension(0) ) For i = 1 to 15 call wTypeKeys "" Wait 500 @@ -713,7 +713,7 @@ testcase tFormatNumberingAll Sleep 2 Call hCloseDocument Sleep 2 - Call hFileOpen ( gOfficePath + "user\work\format7." & WriterFilterExtension(0) ) + hFileOpenLocally( gOfficePath + "user\work\format7." & WriterFilterExtension(0) ) Sleep 2 FormatNumberingBullets '/// reopen Format / NumberingBullets and check saved settings /// diff --git a/testautomation/writer/optional/includes/number/w_205a_.inc b/testautomation/writer/optional/includes/number/w_205a_.inc old mode 100755 new mode 100644 index 0e157368d433..d981dbde812f --- a/testautomation/writer/optional/includes/number/w_205a_.inc +++ b/testautomation/writer/optional/includes/number/w_205a_.inc @@ -47,8 +47,8 @@ testcase tToolsOutlineNumbering1 Dim i as integer PrintLog "- Tools / Outline Numbering: Part 1 - Numbering" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) + ToolsOutlineNumbering Kontext @@ -240,10 +240,10 @@ testcase tToolsOutlineNumbering1 Select Case i Case 1 printlog "- Load sxw and check formattings" - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering1.sxw" ) + hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering1.sxw" ) Case 2 printlog "- Load odt and check formattings" - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering1.odt" ) + hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering1.odt" ) end select call wTypeKeys "", 8 call wTypeKeys "", 10 @@ -343,8 +343,8 @@ testcase tToolsOutlineNumbering2 PrintLog "- Tools / Outline Numbering: Part 2 - Tabpage Position" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\number\numbering1.sxw" ) + ToolsOutlineNumbering Kontext @@ -463,7 +463,7 @@ testcase tToolsOutlineNumbering2 printlog " - check saved Numbering" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsOutlineNumbering2.odt", "writer8" ) Call hCloseDocument - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering2.odt" ) + hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering2.odt" ) ToolsOutlineNumbering Kontext @@ -638,7 +638,7 @@ testcase tToolsOutlineNumbering3 printlog " - check saved Numbering" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsOutlineNumbering3.odt", "writer8" ) Call hCloseDocument - Call hFileOpen ( gOfficePath + "user\work\tToolsOutlineNumbering3.odt" ) + hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering3.odt" ) ToolsOutlineNumbering Kontext Active.SetPage TabKapitelnumerierung @@ -840,7 +840,7 @@ testcase tToolsFootnoteEndnote printlog " - Save and reload" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsFootnoteEndnote.odt", "writer8" ) Call hCloseDocument - Call hFileOpen ( gOfficePath + "user\work\tToolsFootnoteEndnote.odt" ) + hFileOpenLocally( gOfficePath + "user\work\tToolsFootnoteEndnote.odt" ) printlog " - check saved properties" ToolsFootnote Kontext diff --git a/testautomation/writer/optional/includes/number/w_206_.inc b/testautomation/writer/optional/includes/number/w_206_.inc old mode 100755 new mode 100644 index ae7698017216..46cc61715ad9 --- a/testautomation/writer/optional/includes/number/w_206_.inc +++ b/testautomation/writer/optional/includes/number/w_206_.inc @@ -340,7 +340,7 @@ testcase tToolsNumbering6 Call hFileSaveAsKill ( gOfficepath & "user\work\tToolsNumbering6.odt" ) '/// Close and reload document Call hCloseDocument - Call hFileOpen ( gOfficepath & "user\work\tToolsNumbering6.odt" ) + hFileOpenLocally( gOfficepath & "user\work\tToolsNumbering6.odt" ) end if call wTypeKeys ( "" ) EditCopy @@ -448,7 +448,7 @@ testcase tToolsNumbering7 Call hFileSaveAsKill ( gOfficepath & "user\work\tToolsNumbering7.odt" ) '/// Close and reload document Call hCloseDocument - Call hFileOpen ( gOfficepath & "user\work\tToolsNumbering7.odt" ) + hFileOpenLocally( gOfficepath & "user\work\tToolsNumbering7.odt" ) end if call wTypeKeys ( "" ) diff --git a/testautomation/writer/optional/includes/number/w_207_.inc b/testautomation/writer/optional/includes/number/w_207_.inc old mode 100755 new mode 100644 index 634e7c5773a7..f356f1e21e4e --- a/testautomation/writer/optional/includes/number/w_207_.inc +++ b/testautomation/writer/optional/includes/number/w_207_.inc @@ -74,10 +74,10 @@ testcase tToolsNumbering12 end select printlog( "Open file: " & DocFileList( iCurrentDocument ) ) - Call hFileOpen ( DocFileList( iCurrentDocument ) ) + hFileOpenLocally( DocFileList( iCurrentDocument ) ) printlog( "Make a copy if the file is write protected" ) - Call sMakeReadOnlyDocumentEditable + printlog( "Test for unexpected dialog: Filter Selection" ) Kontext "Filterauswahl" @@ -111,7 +111,7 @@ testcase tToolsNumbering12 Call hCloseDocument printlog " - load previous saved document" - Call hFileOpen ( ExportFileName ) + hFileOpenLocally( ExportFileName ) printlog " - close document" hFileCloseAll() @@ -132,8 +132,8 @@ testcase tToolsNumbering13 '/// This testcase loads a Worddocument that lost all formattings printlog "#i73790 regression testing" '/// Load document 'writer\\optional\\input\\number\\regression\\73790.doc' - Call hFileOpen ( gTesttoolPath + "writer\optional\input\number\regression\73790.doc" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\number\regression\73790.doc" ) + '/// Document has Heading1-Heading3 formatted, be sure it is call wTypeKeys ("") '/// Point cursor to top of document with diff --git a/testautomation/writer/optional/includes/option/wh_o_1.inc b/testautomation/writer/optional/includes/option/wh_o_1.inc old mode 100755 new mode 100644 index cbc35f599a4b..4eb667c7dc19 --- a/testautomation/writer/optional/includes/option/wh_o_1.inc +++ b/testautomation/writer/optional/includes/option/wh_o_1.inc @@ -148,8 +148,8 @@ testcase tToolsOptionsHTMLLayout Dim iMasseinheit(3) as integer Dim iTemp(3) as integer '///Open "writer\\optional\\input\\options\\options1.sxw /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + printlog "'///- Tools/Options/Writer: View ///" ToolsOptions @@ -397,8 +397,8 @@ testcase tToolsOptionsHTMLGrid Dim sTempMetricField(4) as string '/// uses: "writer\\optional\\input\\options\\options1.sxw" /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + printlog "'///- Tools/Options/HTML: Grid ///" printlog ("'/// - save states ///") @@ -552,8 +552,8 @@ testcase tToolsOptionsHTMLGrid '/// ( gTesttoolPath + "writer\optional\input\options\gridtst.sxw" ) ///' '/// NOT Possible Without + stuff :-((((( BugID: 84741 ///' '/// uses"writer\optional\input\options\htmltag.html" /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\htmltag.html" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\htmltag.html" ) + '/// check if writeable!///' try diff --git a/testautomation/writer/optional/includes/option/wh_o_2.inc b/testautomation/writer/optional/includes/option/wh_o_2.inc old mode 100755 new mode 100644 index bdee49ed7460..6555e741c5e3 --- a/testautomation/writer/optional/includes/option/wh_o_2.inc +++ b/testautomation/writer/optional/includes/option/wh_o_2.inc @@ -48,8 +48,8 @@ testcase tToolsOptionsHTMLPrint dim bRadioBut(4) as boolean ' RadioButtons dim bTempRadioBut(4) as boolean - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\test.html" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\test.html" ) + printlog "- Tools/Options/HTML: PrintHTML " printlog (" - save states ") @@ -163,7 +163,7 @@ testcase tToolsOptionsHTMLPrint ' Is saved with document Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK - Call hFileOpen(gOfficepath + "user\work\printtest.html") + hFileOpenLocally( gOfficepath + "user\work\printtest.html") ToolsOptions Call hToolsOptions ( "HTML" , "PRINT" ) diff --git a/testautomation/writer/optional/includes/option/wr_o_1.inc b/testautomation/writer/optional/includes/option/wr_o_1.inc old mode 100755 new mode 100644 index 26edd589af84..6ca437431ec4 --- a/testautomation/writer/optional/includes/option/wr_o_1.inc +++ b/testautomation/writer/optional/includes/option/wr_o_1.inc @@ -426,8 +426,8 @@ testcase tToolsOptionsWriterView5 Call hNewDocument '/// open document: writer\\optional\\input\\options\\options1.sxw - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + '///- Tools/Options/Writer: View printlog ("'/// - save states ///") @@ -481,8 +481,8 @@ testcase tToolsOptionsWriterView6 Call hNewDocument '/// open document: writer\\optional\\input\\options\\options1.sxw - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + '///- Tools/Options/Writer: View printlog ("'/// - save states ///") @@ -542,8 +542,8 @@ testcase tToolsOptionsWriterView7 Call hNewDocument '/// open document: writer\\optional\\input\\options\\options1.sxw - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options1.sxw" ) + '///- Tools/Options/Writer: View printlog ("'/// - save states ///") @@ -867,8 +867,8 @@ testcase tToolsOptionsWriterGrid4 printlog ("'/// Function Test: Grid Resolution ///'") '/// ( gTesttoolPath + "writer\optional\input\options\gridtst.sxw" ) ///' - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\gridtst.sxw", False ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\gridtst.sxw", False ) + ' select grafik element Call wNavigatorAuswahl(4,1) diff --git a/testautomation/writer/optional/includes/option/wr_o_2.inc b/testautomation/writer/optional/includes/option/wr_o_2.inc old mode 100755 new mode 100644 index cdc8dc00de4c..b2a4e72ecec1 --- a/testautomation/writer/optional/includes/option/wr_o_2.inc +++ b/testautomation/writer/optional/includes/option/wr_o_2.inc @@ -102,8 +102,8 @@ testcase tToolsOptionsWriterDefaultfont (WestOrEast as string) '/// use a document to check the font with styles///' '///+ use 'input\\writer\\optional\\options\\options2.sxw' /// - Call hFileOpen ( sFileName ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sFileName ) + printlog "- Tools/Options/Writer: DefaultFont" printlog ("/// - save states ///") @@ -239,8 +239,8 @@ testcase tToolsOptionsWriterDefaultfont (WestOrEast as string) Printlog "'/// - verify global settings don't affect saved Document ///" '///+ use input\\writer\\optional\\options\\options2.sxw /// - Call hFileOpen ( sFileName ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( sFileName ) + Kontext "DocumentWriter" DocumentWriter.TypeKeys "", 5 Call wTypeKeys "" @@ -463,8 +463,8 @@ testcase tToolsOptionsWriterPrint1 '(4) = Seitenende '/// uses "input\\writer\\optional\\options\\options3.sxw" /// - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) + printlog "'///- Tools/Options/Writer: PrintWriter ///" printlog ("'/// - save states ///") @@ -587,7 +587,7 @@ testcase tToolsOptionsWriterPrint1 ExtrasOptionenDlg.OK WaitSlot (2) ' Notify is saved with document - Call hFileOpen(gOfficepath + "user\work\printtest." & WriterFilterExtension(0) ) + hFileOpenLocally( gOfficepath + "user\work\printtest." & WriterFilterExtension(0) ) ToolsOptions Call hToolsOptions ( "WRITER" , "PRINT" ) diff --git a/testautomation/writer/optional/includes/option/wr_o_3.inc b/testautomation/writer/optional/includes/option/wr_o_3.inc old mode 100755 new mode 100644 index 39fd97994e1a..df70dfc52faf --- a/testautomation/writer/optional/includes/option/wr_o_3.inc +++ b/testautomation/writer/optional/includes/option/wr_o_3.inc @@ -938,7 +938,7 @@ testcase tToolsOptionsWriterCompatibility1 printlog "- load previously saved document" Call hNewDocument - Call hFileOpen (gOfficePath + "user\work\tToolsOptionsWriterCompatibility1.odt") + hFileOpenLocally( gOfficePath + "user\work\tToolsOptionsWriterCompatibility1.odt") Printlog "check state of all checkboxes and uncheck all checkboxes" ToolsOptions @@ -1010,8 +1010,8 @@ testcase tToolsOptionsWriterCompatibility2 Call hNewDocument printlog "open document ./writer/leve11/input/options/compatibility1.doc" printlog "check formatting of current opened document" - Call hFileOpen ( gTesttoolpath & "writer\optional\input\options\compatibility1.doc" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\options\compatibility1.doc" ) + Call wTypeKeys ("") Call wTypeKeys ("") @@ -1253,7 +1253,7 @@ DIM sFoundWord AS string 'variable for word found one line below ExtrasOptionenDLG.Cancel printlog "Reload recently saved document" - Call hFileOpen (sDocument) + hFileOpenLocally( sDocument) printlog "Tools-Options-OOo Writer-Compatibility" ToolsOptions diff --git a/testautomation/writer/optional/includes/option/wr_o_4.inc b/testautomation/writer/optional/includes/option/wr_o_4.inc old mode 100755 new mode 100644 index 83f09e5c7e89..3201411e0e82 --- a/testautomation/writer/optional/includes/option/wr_o_4.inc +++ b/testautomation/writer/optional/includes/option/wr_o_4.inc @@ -217,7 +217,7 @@ testcase tToolsOptionsWriterOther ' load file in this environment '///use "output\\writer\\w95\\tab25cm.odt" /// - Call hFileOpen (gOfficePath + "user\work\tab25cm.odt") + hFileOpenLocally( gOfficePath + "user\work\tab25cm.odt") sleep (2) ' check TabStops, have to be the ones this file was saved with ToolsOptions diff --git a/testautomation/writer/optional/includes/option/wr_o_a.inc b/testautomation/writer/optional/includes/option/wr_o_a.inc old mode 100755 new mode 100644 index ac6084157867..64f60fa7e0f9 --- a/testautomation/writer/optional/includes/option/wr_o_a.inc +++ b/testautomation/writer/optional/includes/option/wr_o_a.inc @@ -45,8 +45,8 @@ testcase tToolsOptionsWriterPrint Dim i as integer printlog "- Tools/Options/Writer: PrintWriter (real print)" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\options\options3.sxw" ) + Printlog " - check all (real print)" ToolsOptions diff --git a/testautomation/writer/optional/includes/redlining/w_redlining1.inc b/testautomation/writer/optional/includes/redlining/w_redlining1.inc old mode 100755 new mode 100644 index d6983e200a4c..b08faaf6d8d8 --- a/testautomation/writer/optional/includes/redlining/w_redlining1.inc +++ b/testautomation/writer/optional/includes/redlining/w_redlining1.inc @@ -1104,8 +1104,8 @@ testcase tRedlining_16 '/// + Redlining test => OK_2 <-- Numbering style : list 2 '/// + Redlining test => OK_3 <-- Numbering style : list 3 - Call hFileOpen ( gTesttoolPath + "writer\optional\input\redlining\tRedlining_15.sxw" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\redlining\tRedlining_15.sxw" ) + Call wTypeKeys "" , 3 diff --git a/testautomation/writer/optional/includes/regexp/regular.inc b/testautomation/writer/optional/includes/regexp/regular.inc old mode 100755 new mode 100644 index 3a323bce2a49..d53277085b13 --- a/testautomation/writer/optional/includes/regexp/regular.inc +++ b/testautomation/writer/optional/includes/regexp/regular.inc @@ -899,8 +899,8 @@ sub Ausgangszustand_herstellen '///+ Uncheck 'Search for Styles' /// '///+ Uncheck 'Similarity Search' /// '///+ Check 'Regular Expressions' /// - Call hFileOpen ( gtesttoolpath + "writer\optional\input\search\regu_aus.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gtesttoolpath + "writer\optional\input\search\regu_aus.sxw") + kontext if FindAndReplace.Exists then FindAndReplace.Close kontext "DocumentWriter" diff --git a/testautomation/writer/optional/includes/regexp/search.inc b/testautomation/writer/optional/includes/regexp/search.inc old mode 100755 new mode 100644 index 8121859870ad..163aa230f2e1 --- a/testautomation/writer/optional/includes/regexp/search.inc +++ b/testautomation/writer/optional/includes/regexp/search.inc @@ -1524,11 +1524,11 @@ sub wSetFindAndReplaceToDefault(WhichDocument as integer) Case 0 Call hNewDocument ' empty Document Case 1 - Call hFileOpen ( gTesttoolPath +"writer\optional\input\search\such_u_e.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath +"writer\optional\input\search\such_u_e.sxw") + case 2 - Call hFileOpen ( gTesttoolPath +"writer\optional\input\search\attrib.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath +"writer\optional\input\search\attrib.sxw") + end select kontext "FindAndReplace" Sleep 2 diff --git a/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc b/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc old mode 100755 new mode 100644 index 5e13f9353891..c03cb811e0f0 --- a/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc +++ b/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc @@ -153,8 +153,8 @@ testcase i65094 Call hNewDocument '/// Open file \\writer\\optional\\input\\regression\\issuezilla\\i65094a.odt printlog "- Open file: i65094a.odt" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\regression\issuezilla\i65094a.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\regression\issuezilla\i65094a.odt" ) + '/// Compare document with other version \\writer\\optional\\input\\regression\\issuezilla\\i65094b.odt ' UseBindings printlog "- Compare document with other version" @@ -165,7 +165,7 @@ testcase i65094 ' Sleep 2 Oeffnen.Click Sleep 5 - Call sMakeReadOnlyDocumentEditable + printlog "- Accept all" '/// In Redlining dialog select 'Accept all' Kontext "Redlining" @@ -205,7 +205,7 @@ testcase i69045 Call hCloseDocument printlog "- Save, close and load document" '/// Open saved document - Call hFileOpen ( gOfficepath & "user\work\i69045.odt" ) + hFileOpenLocally( gOfficepath & "user\work\i69045.odt" ) '/// Check try EditChangesAcceptOrReject @@ -236,8 +236,8 @@ testcase i69521 '/// New writer document Call hNewDocument '/// Load document: \\writer\\optional\\input\\regression\\issuezilla\\i69521.odt - Call hFileOpen (gTesttoolpath & "writer\optional\input\regression\issuezilla\i69521.odt") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath & "writer\optional\input\regression\issuezilla\i69521.odt") + '/// Loaded document should have 5 EPS Graphics iItems = CountItemsInNavigatorGroup(4) if iItems <> 5 then @@ -251,7 +251,7 @@ testcase i69521 '/// close document Call hCloseDocument '/// reload previous saved document - Call hFileOpen (gOfficePath & "user\work\i96521-1.odt") + hFileOpenLocally( gOfficePath & "user\work\i96521-1.odt") '/// Check if all 5 Graphics are still in document iItems = CountItemsInNavigatorGroup(4) if iItems <> 5 then @@ -325,7 +325,7 @@ testcase i75027 Call hFileSaveAsKill (gOfficepath & "user\work\i75027.html") '/// Reload previous saved document Call hCloseDocument - Call hFileOpen (gOfficepath & "user\work\i75027.html") + hFileOpenLocally( gOfficepath & "user\work\i75027.html") '/// Check that the numbering is still the same. printlog "- check numbering (previous saved)" Call wTypeKeys ( "" ) @@ -444,8 +444,8 @@ testcase i103265 printlog "ODF Hyperlinks in TOCs" Call hNewDocument printlog "- Open test document" - Call hFileOpen ( gTesttoolPath + "writer\optional\input\regression\issuezilla\i103265.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\regression\issuezilla\i103265.odt" ) + printlog "- Update TOC" ToolsUpdateAllIndexes @@ -482,7 +482,7 @@ testcase i103265 Call hCloseDocument printlog "- Reload" - Call hFileOpen ( gOfficePath + "user\work\ODFHyperlinksInTOCs.html" ) + hFileOpenLocally( gOfficePath + "user\work\ODFHyperlinksInTOCs.html" ) printlog "Check that every hyperlink jumps correctly to its target" For i = 1 to 3 ' point cursor to beginning of document diff --git a/testautomation/writer/optional/includes/section/w_section_3.inc b/testautomation/writer/optional/includes/section/w_section_3.inc old mode 100755 new mode 100644 index 6dc00cd5c0f3..72963282511e --- a/testautomation/writer/optional/includes/section/w_section_3.inc +++ b/testautomation/writer/optional/includes/section/w_section_3.inc @@ -1064,7 +1064,7 @@ testcase tPasswordProtectSection_2 Call hCloseDocument PrintLog " Reload the file" - Call hFileOpen (gOfficePath + "user\work\tPasswordProtectSection_2.odt") + hFileOpenLocally( gOfficePath + "user\work\tPasswordProtectSection_2.odt") FormatSections Kontext "BereicheBearbeiten" @@ -1200,7 +1200,7 @@ testcase tPasswordProtectSection_4 Call hCloseDocument PrintLog " Reload the file" - Call hFileOpen (gOfficePath + "user\work\tPasswordProtectSection_4.odt") + hFileOpenLocally( gOfficePath + "user\work\tPasswordProtectSection_4.odt") PrintLog " In format/section, PW-Dialogue should appear when clicking 'option' button" FormatSections diff --git a/testautomation/writer/optional/includes/section/w_section_4.inc b/testautomation/writer/optional/includes/section/w_section_4.inc old mode 100755 new mode 100644 index 2c811268f93b..632956e92d17 --- a/testautomation/writer/optional/includes/section/w_section_4.inc +++ b/testautomation/writer/optional/includes/section/w_section_4.inc @@ -856,8 +856,8 @@ testcase tParagraphSection_1 PrintLog " - Keep paragraphs together" '/// Open a file with 4 paragraphs, the 4th paragraph is crossing the page - Call hFileOpen(documentName) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( documentName) + EditSelectAll Call fInsertSection(sectionName) @@ -1198,8 +1198,8 @@ testcase tScenarioSection_1 next i '/// open testdocument (tScenarioSection_1.sxw) /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\section\tScenarioSection_1.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\section\tScenarioSection_1.sxw") + '/// Select 'File /Send -> Create Masterdocument /// FileSendCreateMasterdocument @@ -1318,8 +1318,8 @@ testcase tScenarioSection_2 next i '/// open testdocument (tScenarioSection_2.sxw) /// - Call hFileOpen ( gTesttoolpath + "writer\optional\input\section\tScenarioSection_2.sxw") - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolpath + "writer\optional\input\section\tScenarioSection_2.sxw") + '/// Select 'File -> Send -> Create Masterdocument /// FileSendCreateMasterdocument diff --git a/testautomation/writer/optional/includes/sorting/w_sorting1.inc b/testautomation/writer/optional/includes/sorting/w_sorting1.inc old mode 100755 new mode 100644 index d4cb27449cba..ae6fae7345d7 --- a/testautomation/writer/optional/includes/sorting/w_sorting1.inc +++ b/testautomation/writer/optional/includes/sorting/w_sorting1.inc @@ -243,11 +243,11 @@ testcase tToolsSort3 Trennzeichen = "|" end select if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort2.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort2.odt" ) + else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort2.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort2.odm" ) + end if if i <> 1 then TrennzeichenSetzen ( Trennzeichen ) @@ -319,11 +319,11 @@ endcase testcase tToolsSort4 PrintLog "- Tools / Sorting in table with header" if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) + else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) + end if Call wTypeKeys "", 2 @@ -444,11 +444,11 @@ endcase testcase tToolsSort5 PrintLog "- Tools / Sorting in table without header" if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) + else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) + end if Call wNavigatorAuswahl (2, 2) @@ -574,11 +574,11 @@ testcase tToolsSort6 PrintLog "- Tools / Sort a sorted table and copy in another one" if gApplication = "WRITER" then - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort3.odt" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort3.odt" ) + else - Call hFileOpen ( gTesttoolPath + "writer\optional\input\sorting\sort3.odm" ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort3.odm" ) + end if Call wTypeKeys "", 2 diff --git a/testautomation/writer/optional/includes/sorting/w_sorting2.inc b/testautomation/writer/optional/includes/sorting/w_sorting2.inc old mode 100755 new mode 100644 index d5d3b49ea61f..c716b597126b --- a/testautomation/writer/optional/includes/sorting/w_sorting2.inc +++ b/testautomation/writer/optional/includes/sorting/w_sorting2.inc @@ -93,8 +93,8 @@ testcase tSort_1 printlog " open a test file" - Call hFileOpen ( TestFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( TestFile ) + printlog " select all table" Call wTypeKeys "", 2 @@ -187,8 +187,8 @@ testcase tSort_2 end select printlog " open a test file" - Call hFileOpen ( TestFile ) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( TestFile ) + printlog " select all table" Call wTypeKeys "", 2 diff --git a/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc b/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc index 886f7fa91967..bc73cd945b95 100644 --- a/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc +++ b/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc @@ -59,7 +59,7 @@ testcase tToolsSpellcheckWithShortcut end if call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + printlog " Insert some faulty text" select case iSprache @@ -150,7 +150,7 @@ testcase tToolsSpellcheckCorrect printlog " Open document where the formatting is set to the language we wish to test." call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + printlog " Insert some faulty text" Sleep 1 @@ -285,7 +285,7 @@ testcase tToolsSpellcheck1Mistake printlog " Open document where the formatting is set to the language we wish to test." call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + '/// Insert a sentence with one definded mistake and execute spellcheck /// Call wTypeKeys sErrorSampleText @@ -387,8 +387,8 @@ testcase tToolsSpellcheckForward if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if '/// point cursor to beginning of document and execute spellcheck /// Call wTypeKeys "" @@ -561,8 +561,8 @@ testcase tToolsSpellcheckOnlyOneWord if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "" @@ -742,7 +742,7 @@ testcase tToolsSpellcheckAutomatic PrintLog "- Tools / Spellcheck / AutoSpellcheck" printlog " Open document where the formatting is set to the language we wish to test." call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + '/// Enable Auto-Spellcheck in options Call wEnableAutoSpellcheck ( true ) @@ -937,8 +937,8 @@ testcase tToolsSpellcheckChangeLanguageAttribute if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "" @@ -1135,8 +1135,8 @@ testcase tToolsSpellcheckButtonChange if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "" @@ -1202,8 +1202,8 @@ testcase tToolsSpellcheckButtonChangeAll if wInsertDocumentinMasterDoc(InsFile) = False then goto endsub EditPaste else - Call hFileOpen(InsFile) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally( InsFile) + end if Call wTypeKeys "" @@ -1289,7 +1289,7 @@ testcase tToolsThesaurus printlog "Open new preformatted-writerdocument" call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + printlog "- Thesaurus without a word" '/// Call Thesaurus without a written word /// @@ -1323,7 +1323,7 @@ testcase tToolsThesaurus printlog " Open new preformatted-document where the formatting is set to the language we wish to test." call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + Call wTypeKeys sWordInitial Call wTypeKeys "" @@ -1445,7 +1445,7 @@ testcase tToolsThesaurusSynonyms printlog "Open new preformatted-writerdocument" call hFileOpen (TheFile,false) - Call sMakeReadOnlyDocumentEditable + Call wTypeKeys sWordInitial Call wTypeKeys "" diff --git a/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc b/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc old mode 100755 new mode 100644 index 069b133700bd..d2df892a3bc5 --- a/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc +++ b/testautomation/writer/optional/includes/spellcheck/w_spellcheck1.inc @@ -50,7 +50,7 @@ DIM WordLanguageTemp AS string 'variable for checking if Office language is a '///Load test document/// call hFileOpen (ConvertPath ( gTesttoolPath + "writer\optional\input\spellcheck\Language_Guessing_Sample_Texts.odt")) 'loading Test-Doc - Call sMakeReadOnlyDocumentEditable + sleep(5) '---------------------------------------------------------------- '///Enable auto spellcheck/// diff --git a/testautomation/writer/optional/includes/textframes/w_textframes1.inc b/testautomation/writer/optional/includes/textframes/w_textframes1.inc index a3d284438643..ed3ee9b2dd5e 100644 --- a/testautomation/writer/optional/includes/textframes/w_textframes1.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes1.inc @@ -852,7 +852,7 @@ testcase tTextframes_10 '/// Open a test file '/// + This test file is designed for Anchor in gathering pages&columns test. '/// + There are 2 columns in the page. And the frame is in the second column. - Call hFileOpen(sTestFile1,false) + hFileOpenLocally( sTestFile1,false) 'Press return to ensure the frame is in 2nd column @@ -888,7 +888,7 @@ testcase tTextframes_10 '/// + This test file is designed for Anchor in seperating '/// + pages&columns test. '/// + There are 2 pages. And the frame is in the second page. - Call hFileOpen(sTestFile2,false) + hFileOpenLocally( sTestFile2,false) 'check if the frame is in the 2nd page diff --git a/testautomation/writer/optional/includes/undo/w_undo_history_4.inc b/testautomation/writer/optional/includes/undo/w_undo_history_4.inc index e1370f29e541..506c1e1e4335 100755 --- a/testautomation/writer/optional/includes/undo/w_undo_history_4.inc +++ b/testautomation/writer/optional/includes/undo/w_undo_history_4.inc @@ -291,7 +291,7 @@ testcase tUndoSpellcheck printlog "- Spellcheck: Autocheck" '/// new document /// hfileOpen (gTesttoolpath + "writer\optional\input\undo\spellcheck_undo.odt") - Call sMakeReadOnlyDocumentEditable + '/// Type "This is a testp" Call wTypeKeys ( "" ) 'This is a testp '/// Select word' testp' diff --git a/testautomation/writer/required/includes/w_001_.inc b/testautomation/writer/required/includes/w_001_.inc index 00f7bc4ce77d..b5b6b88d1640 100644 --- a/testautomation/writer/required/includes/w_001_.inc +++ b/testautomation/writer/required/includes/w_001_.inc @@ -1027,7 +1027,7 @@ testcase tFileReload Wait (500) PrintLog "Open previous saved document" - Call hFileOpen ( gOfficePath + "user\work\" + sFile$ ) + hFileOpenLocally( gOfficePath + "user\work\" + sFile$ ) PrintLog "Insert a table in document" Call hTabelleEinfuegen PrintLog "File / Reload" diff --git a/testautomation/writer/required/includes/w_001b_.inc b/testautomation/writer/required/includes/w_001b_.inc index e20d497482f0..992396377ba4 100644 --- a/testautomation/writer/required/includes/w_001b_.inc +++ b/testautomation/writer/required/includes/w_001b_.inc @@ -125,7 +125,7 @@ testcase tFileSendOutlineToPresentation goto endsub end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Kontext "Navigator" if Navigator.Exists then Navigator.Close Sleep 1 @@ -176,7 +176,7 @@ testcase tFileSendOutlineToClipboard end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Sleep 1 PrintLog "File / Send / Outline to Clipboard" try @@ -223,7 +223,7 @@ testcase tFileSendCreateAutoabstract end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Kontext "Navigator" if Navigator.Exists then Navigator.Close Sleep 1 @@ -274,7 +274,7 @@ testcase tFileSendAutoabstractToPresentation end select PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile$ ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile$ ) Kontext "Navigator" if Navigator.Exists then Navigator.Close Sleep 1 @@ -399,7 +399,7 @@ testcase tMasterDocFileSaveWithPassword FileClose WaitSlot(2000) PrintLog "Open previous saved document" - Call hFileOpen(Datei$) + hFileOpenLocally( Datei$) Kontext "PasswordFileOpen" PrintLog "Enter a wrong password." @@ -427,7 +427,7 @@ testcase tMasterDocFileSaveWithPassword Sleep 1 PrintLog "File / Open again your previous saved document" - Call hFileOpen(Datei$) + hFileOpenLocally( Datei$) PrintLog "Enter your password in password dialog" Kontext "PasswordFileOpen" if PasswordFileOpen.Exists then @@ -468,7 +468,7 @@ testcase tMasterDocFileSaveWithPassword Sleep 1 FileClose PrintLog "File / Close and open your document again" - Call hFileOpen(Datei$) + hFileOpenLocally( Datei$) Sleep 1 Kontext "PasswordFileOpen" PrintLog "Now the passwort dialog should come up" @@ -517,7 +517,7 @@ testcase tMasterDocFileReload endif PrintLog "Open previous saved document" - Call hFileOpen ( sDocumentPath ) + hFileOpenLocally( sDocumentPath ) PrintLog "Insert a table in document" Call hTabelleEinfuegen @@ -652,7 +652,7 @@ testcase tMasterDocFileSendOutlineToPresentation gApplication = "MASTERDOCUMENT" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) Kontext "Navigator" if ( Navigator.Exists ) then @@ -698,7 +698,7 @@ testcase tMasterDocFileSendOutlineToClipboard Dim sFile as string : sFile = "htmltest.sxg" PrintLog "- File / Send / Outline to Clipboard" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) PrintLog "File / Send / Outline to Clipboard" try @@ -738,7 +738,7 @@ testcase tMasterDocFileSendCreateAutoabstract Dim sFile as string : sFile = "htmltest.sxg" PrintLog "- File / Send / Create Autoabstract" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) Kontext "Navigator" hCloseDialog( Navigator, "Close,optional" ) @@ -788,7 +788,7 @@ testcase tMasterDocFileSendAutoabstractToPresentation PrintLog "- File / Send / Autoabstract to Presentation" PrintLog "Open file ( gTesttoolPath + writer\required\input\ + htmltest.sxw )" - Call hFileOpen ( gTesttoolPath + "writer\required\input\" + sFile ) + hFileOpenLocally( gTesttoolPath + "writer\required\input\" + sFile ) Kontext "Navigator" hCloseDialog( Navigator, "Close,optional" ) diff --git a/testautomation/writer/required/includes/w_007_.inc b/testautomation/writer/required/includes/w_007_.inc index e562736b5329..20b468c9605c 100644 --- a/testautomation/writer/required/includes/w_007_.inc +++ b/testautomation/writer/required/includes/w_007_.inc @@ -1233,7 +1233,7 @@ testcase tMasterDocToolsHyphenation hUseAsyncSlot( "EditPaste" ) end if - Call sMakeReadOnlyDocumentEditable + printlog " Insert file 'writer\required\input\linguistik\0 + [OfficeLanguage] + '.odt'" Sleep 1 Call wTypeKeys ("") diff --git a/testautomation/writer/tools/includes/w_tool3.inc b/testautomation/writer/tools/includes/w_tool3.inc old mode 100755 new mode 100644 index 16fd825f6447..5aa58e2f967c --- a/testautomation/writer/tools/includes/w_tool3.inc +++ b/testautomation/writer/tools/includes/w_tool3.inc @@ -270,7 +270,7 @@ sub UndoRichtigBeiSortierung if Fehler = TRUE then Warnlog "Undo after sorting has not been functioned correctly" Call hCloseDocument - Call hFileOpen ( gTesttoolPath + "writer\optional\input\st1_5.sdw" ) + hFileOpenLocally( gTesttoolPath + "writer\optional\input\st1_5.sdw" ) end if Call wTypeKeys "" Call wTypeKeys "",6 diff --git a/testautomation/writer/tools/includes/w_tools.inc b/testautomation/writer/tools/includes/w_tools.inc index 27b9526bb0de..e6bd4f92afa0 100755 --- a/testautomation/writer/tools/includes/w_tools.inc +++ b/testautomation/writer/tools/includes/w_tools.inc @@ -1042,7 +1042,7 @@ end sub function wInsertDocumentinMasterDoc(DocumentName as string) as boolean Call hNewDocument - Call hFileOpen(DocumentName) + hFileOpenLocally( DocumentName) Sleep 2 Call wTypeKeys "" Sleep 2 -- cgit From c2cb44b197656cf6dbe1c6d650484196d4826ec9 Mon Sep 17 00:00:00 2001 From: Thorsten Bosbach Date: Mon, 13 Sep 2010 14:37:08 +0200 Subject: #i114476# No testing for Mac as some Window attributes do not exist --- testautomation/framework/required/includes/window_functions.inc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/testautomation/framework/required/includes/window_functions.inc b/testautomation/framework/required/includes/window_functions.inc index 6917639d30f8..efbbacf44b63 100755 --- a/testautomation/framework/required/includes/window_functions.inc +++ b/testautomation/framework/required/includes/window_functions.inc @@ -36,7 +36,7 @@ testcase tWindowFunctions printlog( "Update test for window functions" ) if ( gtSysName = "Mac OS X" ) then - printlog( "No testing for Mac as some Window attributes do not exist" ) + qaErrorLog( "#i114476# No testing for Mac as some Window attributes do not exist" ) goto endsub endif @@ -196,9 +196,6 @@ end sub testcase tCheckWindowTitle( sApplication as string, sReference as string ) - if ( sApplication = "soffice" ) then - - printlog( "Update test for the office window titles" ) ' This is a Testtool-only problem that the product name is not displayed -- cgit From acb32fd8134af541ac82661b49ce1888a2c90350 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 13 Sep 2010 15:08:32 +0200 Subject: automationdev300m87: #i112208# - Eliminate sMakeReadonlyDocumentEditable() and affiliated functions from global, removed any calls to these functions --- .../global/tools/includes/required/t_doc2.inc | 129 --------------------- .../optional/includes/global/g_clipboard.inc | 7 +- .../optional/includes/global/g_demoguide.inc | 4 +- .../graphics/optional/includes/global/g_tools.inc | 22 ++-- .../optional/includes/impress/i_slideshow.inc | 19 +-- .../graphics/required/includes/global/id_006.inc | 5 +- .../writer/optional/includes/fields/w_fields2.inc | 36 +----- .../writer/optional/includes/fields/w_fields4.inc | 81 ++----------- .../writer/optional/includes/fields/w_fields7.inc | 27 +---- 9 files changed, 31 insertions(+), 299 deletions(-) mode change 100755 => 100644 testautomation/global/tools/includes/required/t_doc2.inc diff --git a/testautomation/global/tools/includes/required/t_doc2.inc b/testautomation/global/tools/includes/required/t_doc2.inc old mode 100755 new mode 100644 index 4192563b0eba..0e9af93f287c --- a/testautomation/global/tools/includes/required/t_doc2.inc +++ b/testautomation/global/tools/includes/required/t_doc2.inc @@ -113,135 +113,6 @@ end sub ' '------------------------------------------------------------------------------- ' -function hEnableDocumentEditMode() as boolean - - hEnableDocumentEditMode() = false - - dim iTry as integer - - printlog( "Try to switch document to edit mode" ) - for iTry = 1 to 20 - try - kontext "Standardbar" - if ( Bearbeiten.getState( 2 ) <> 1 ) then - Bearbeiten.click() - - kontext "Active" - if ( Active.exists( 1 ) ) then - printlog( "Handle " ) - hCloseDialog( Active, "yes" ) - wait( 2000 ) - printlog( "Successfully switched to edit mode" ) - hEnableDocumentEditMode() = true - exit for - endif - endif - catch - wait( 200 ) - endcatch - next iTry - -end function - -'******************************************************************************* - -function sMakeReadOnlyDocumentEditable() as boolean - - sMakeReadOnlyDocumentEditable() = hEnableDocumentEditMode() - exit function - - ' Function returns TRUE if document has been made editable and FALSE if - ' no action was required (that is: Document was not read-only) - - dim iTry as integer - dim iWait as integer - dim rc as integer - const CFN = "sMakeReadOnlyDocumentEditable::" - - if ( GVERBOSE ) then printlog( CFN & "Making document editable (create a copy) if it is readonly" ) - - ' We still run into synchronization problems with the "Make document editable" feature - ' because we do not know when this button becomes available and ready for use: The - ' document has to be loaded, then we have to wait for the toolbar to get populated. - ' One thing appears to work though: Try to execute the slot using hUseAsyncSlot. - ' This is a little bit tricky because the state of the document is altered but if - ' the slot has been executed once we know for sure that the button on the toolbar is - ' available and can check its state and - if need be - chenge the document state back. - - ' ========== Workaround begin ========== - hUseAsyncSlot( "EditDoc" ) - kontext "Active" - if ( Active.exists() ) then - if ( GVERBOSE ) then printlog( "Handling create copy message" ) - Active.yes() - wait( 1000 ) - endif - ' ========== Workaround end ========== - Kontext "Standardbar" - iWait = 0 - Do - if ( Bearbeiten.IsEnabled() ) then - try - if Bearbeiten.getState( 2 ) = 0 then - exit do - endif - catch - if ( GVERBOSE ) then printlog "Attempt " & iWait & " to make document readable failed" - iWait = iWait + 1 - wait ( 1000 ) - endcatch - else - if ( GVERBOSE ) then printlog "Attempt " & iWait & " to make document readable failed" - iWait = iWait + 1 - wait ( 1000 ) - end if - if iWait >= 5 then exit do - Loop - - if ( Bearbeiten.IsEnabled() ) then - - if ( Bearbeiten.getState( 2 ) = 0 ) then - - rc = hUseAsyncSlot("editdoc") - - if ( rc >= 0 ) then - for iTry = 1 to 2 - - - Kontext "Active" - if ( Active.exists( 5 ) ) then - - printlog( CFN & "Messagebox: " & Active.getText() ) - - try - if ( GVERBOSE ) then printlog( CFN & "Document was read-only. A copy will be used." ) - Active.Yes() - if ( GVERBOSE ) then printlog( CFN & "Closed 'use copy' message" ) - catch - if ( GVERBOSE ) then printlog( CFN & "Probing for unexpected messagebox..." ) - active.ok() - qaerrorlog( "#i100701 - Object not found message" ) - endcatch - else - printlog( CFN & "No messagebox informing about a copy being used" ) - endif - sMakeReadOnlyDocumentEditable() = TRUE - next iTry - else - printlog( CFN & "Document appears to be editable" ) - endif - else - if ( GVERBOSE ) then printlog( CFN & "Button is pressed, document is editable" ) - sMakeReadOnlyDocumentEditable() = FALSE - endif - else - if ( GVERBOSE ) then printlog( CFN & "Control is not enabled" ) - endif - -end function -' -'------------------------------------------------------------------------------- -' function fSelectFirstOLE() as integer 'Select first visible OLE object using Navigator 'Returns error-code: diff --git a/testautomation/graphics/optional/includes/global/g_clipboard.inc b/testautomation/graphics/optional/includes/global/g_clipboard.inc index 4c1900876565..9d4629f3d262 100644 --- a/testautomation/graphics/optional/includes/global/g_clipboard.inc +++ b/testautomation/graphics/optional/includes/global/g_clipboard.inc @@ -45,7 +45,7 @@ testcase tiEditUndo Dim sDatei as string Dim Ueber_Text_1 as string - if (gApplication = "IMPRESS") then + if ( gApplication = "IMPRESS" ) then ExtensionString = "odp" else ExtensionString = "odg" @@ -53,10 +53,7 @@ testcase tiEditUndo sDatei = gTesttoolPath + "graphics\required\input\leer."+ExtensionString - hFileOpen ConvertPath (sDatei) - sleep 5 - printlog "Checking for readonly state. If so, make it editable." - sMakeReadOnlyDocumentEditable + hFileOpenLocally( sDatei ) hTypeKeys "" sleep 3 diff --git a/testautomation/graphics/optional/includes/global/g_demoguide.inc b/testautomation/graphics/optional/includes/global/g_demoguide.inc index 54a3a67c58d0..71bfb2ac11eb 100644 --- a/testautomation/graphics/optional/includes/global/g_demoguide.inc +++ b/testautomation/graphics/optional/includes/global/g_demoguide.inc @@ -224,10 +224,8 @@ testcase t_Interoperability '///Open PowerPoint presentation printlog "Open PowerPoint presentation" - hFileOpen (Convertpath (gTesttoolPath + "graphics/required/input/dotNetOverview.ppt")) + hFileOpenLocally( gTesttoolPath + "graphics/required/input/dotNetOverview.ppt" ) - Call sMakeReadOnlyDocumentEditable - 'Save the name of the origin background (taken from last slide) Kontext "DocumentImpress" DocumentImpress.TypeKeys "" diff --git a/testautomation/graphics/optional/includes/global/g_tools.inc b/testautomation/graphics/optional/includes/global/g_tools.inc index c54881a0b68e..35b53c07c1cd 100644 --- a/testautomation/graphics/optional/includes/global/g_tools.inc +++ b/testautomation/graphics/optional/includes/global/g_tools.inc @@ -107,14 +107,13 @@ testcase tiToolsThesaurus PrintLog "Thesaurus with 1 word: " + sWord - if( Ucase(gApplication) = "DRAW" ) then + if( gApplication = "DRAW" ) then sExt = ".odg" - elseif( Ucase(gApplication) = "IMPRESS" ) then + elseif( gApplication = "IMPRESS" ) then sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) - Call sMakeReadOnlyDocumentEditable() + Call hFileOpenLocally(gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) Call hTextrahmenErstellen (sWord,20,20,50,30) sleep 1 @@ -280,16 +279,15 @@ testcase tiToolsThesaurusContextMenu PrintLog "Thesaurus with 1 word: " + sWord - if( Ucase(gApplication) = "DRAW" ) then + if( gApplication = "DRAW" ) then sExt = ".odg" Kontext "DrawDocument" - elseif( Ucase(gApplication) = "IMPRESS" ) then + elseif( gApplication = "IMPRESS" ) then sExt = ".odp" Kontext "ImpressDocument" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) - Call sMakeReadOnlyDocumentEditable + hFileOpenLocally(gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) Call hTextrahmenErstellen (sWord,20,20,50,30) sleep 1 @@ -384,14 +382,14 @@ testcase tiToolsHyphenation2 dim sDraw as string dim sFile as string PrintLog "- Tools/Hyphenation2" - Select Case Ucase(gApplication) + Select Case gApplication case "DRAW" : sExt = ".odg" case "IMPRESS" : sExt = ".odp" end select if ((not bAsianLan) AND (iSprache <> 07)) then sFile = gTesttoolpath + "graphics\required\input\silben_"+iSprache+sExt - Call hFileOpen (sFile) + hFileOpenLocally( sFile ) endif select case iSprache '/// Open prepared document ///' @@ -411,7 +409,7 @@ testcase tiToolsHyphenation2 case else : if bAsianLan then printlog "For the language " + iSprache +" nothing is prepared yet, but is AsianLan, so OK :-)" printlog " :-) will use English instead" - Call hFileOpen (gTesttoolpath + "graphics\required\input\silben_"+"1"+sExt) + hFileOpenLocally( gTesttoolpath + "graphics\required\input\silben_"+"1"+sExt ) DasWort = "ation" : DasWort2 = "tion" : DasWort3 = "ion" : DasWort4 = "on" '+Chr(34) else Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here and create file: "+sFile @@ -419,8 +417,6 @@ testcase tiToolsHyphenation2 endif end select - Call sMakeReadOnlyDocumentEditable - printlog " - Test hyphenation" EditSelectAll '/// Press CTRL + A to select all ///' '/// press return to go into the edit mode ///' diff --git a/testautomation/graphics/optional/includes/impress/i_slideshow.inc b/testautomation/graphics/optional/includes/impress/i_slideshow.inc index d313f444994b..c9fec2c44ea8 100644 --- a/testautomation/graphics/optional/includes/impress/i_slideshow.inc +++ b/testautomation/graphics/optional/includes/impress/i_slideshow.inc @@ -29,28 +29,17 @@ '* '* short description : '* -'******************************************************************* -'* -' #1 tSlideShowSlideShow -' #1 tSlideShowRehearseTimings -' #1 tSlideShowSlideShowSettings -' #1 tSlideShowCustomSlideShow -' #1 tSlideShowSlideTransition -' #1 tSlideShowShowHideSlide -'* '\****************************************************************** + testcase tSlideShowSlideShow dim bLoaded as boolean dim i as integer '/// open file 'graphics\\input\\diashow.odp' ///' - hFileOpen ConvertPath (gTesttoolPath + "graphics\required\input\diashow.odp") + hFileOpenLocally( gTesttoolPath + "graphics\required\input\diashow.odp" ) sleep 30 - printlog "check if the document is writable" - sMakeReadOnlyDocumentEditable - bLoaded = false Kontext "Navigator" @@ -292,10 +281,8 @@ testcase tSlideShowSlideShowSettings bLoaded = false '/// open file 'graphics\\input\\diashow.odp' (Slide Show with 4 Slides) ///' - hFileOpen ConvertPath (gTesttoolPath + "graphics\required\input\diashow.odp") + hFileOpenLocally( gTesttoolPath + "graphics\required\input\diashow.odp" ) sleep 10 - printlog "check if the document is writable" - sMakeReadOnlyDocumentEditable try Kontext "DocumentImpress" diff --git a/testautomation/graphics/required/includes/global/id_006.inc b/testautomation/graphics/required/includes/global/id_006.inc index 434959a7ac2d..ccdfc5eb3e69 100644 --- a/testautomation/graphics/required/includes/global/id_006.inc +++ b/testautomation/graphics/required/includes/global/id_006.inc @@ -167,14 +167,13 @@ testcase tiToolsThesaurus PrintLog "Thesaurus with 1 word: " + sWord - if( Ucase(gApplication) = "DRAW" ) then + if( gApplication = "DRAW" ) then sExt = ".odg" elseif( Ucase(gApplication) = "IMPRESS" ) then sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) - Call sMakeReadOnlyDocumentEditable() + hFileOpenLocally( gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) Call hTextrahmenErstellen (sWord,20,20,50,30) sleep 1 diff --git a/testautomation/writer/optional/includes/fields/w_fields2.inc b/testautomation/writer/optional/includes/fields/w_fields2.inc index 0f10d2b9ef42..6c4b0eef2141 100644 --- a/testautomation/writer/optional/includes/fields/w_fields2.inc +++ b/testautomation/writer/optional/includes/fields/w_fields2.inc @@ -391,24 +391,15 @@ testcase tDocumentFilename goto endsub end if - Dim sOriginalFile as String Dim sTestFile as String Dim sFilename(4) as String Dim i as Integer - sTestFile = Convertpath (gOfficepath + "user\work\pageTest.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\pageTest.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath & "writer\optional\input\fields\pageTest.sxw" sFilename(0) = "pageTest.sxw" sFilename(1) = "pageTest" - sFilename(2) = Convertpath (gOfficepath + "user\work\") + sFilename(2) = Convertpath( gOfficepath + "user\work\" ) sFilename(3) = sTestFile printlog "Insert/Fields/Other/Document / File name" @@ -867,22 +858,12 @@ endcase testcase tDocumentStatistics Dim sTestFile as String - Dim sOriginalFile as string Dim sStatistics() as String Dim sType as string Dim i as Integer sStatistics = Array( "2", "2", "3", "13", "2", "2", "1" ) - - sTestFile = Convertpath (gOfficepath + "user\work\statisticsTest.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\statisticsTest.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile= Convertpath (gTesttoolpath + "writer\optional\input\fields\statisticsTest.sxw") printlog "Insert/Fields/Other/Document / Statistics" '/// Insert/Fields/Other/Document / Statistics @@ -928,7 +909,6 @@ endcase testcase tDocumentTemplate Dim sTestFile as String - Dim sOriginalFile as string Dim sDirectory as String Dim oDirectory as String Dim sLanguage as String @@ -937,15 +917,7 @@ testcase tDocumentTemplate Dim i as Integer sLanguage = fGetDirLanguage() - sTestFile = Convertpath (gOfficepath + "user\work\diploma.ott") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\diploma.ott") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\diploma.ott" sResult(0) = fGetCateGory() sResult(1) = "diploma.ott" diff --git a/testautomation/writer/optional/includes/fields/w_fields4.inc b/testautomation/writer/optional/includes/fields/w_fields4.inc index fb5a67ce8bb7..331e8753dc1b 100644 --- a/testautomation/writer/optional/includes/fields/w_fields4.inc +++ b/testautomation/writer/optional/includes/fields/w_fields4.inc @@ -264,23 +264,13 @@ testcase tDocInformationUserDefined QAErrorLog "#i112077#Tabpage 'Custom properties' has no declaration" goto endsub Dim sTestFile as String - Dim sOriginalFile as string Dim sVarResult() as String Dim sFixResult() as String Dim i as integer Dim j as Integer j = UBound(sVarResult) - sTestFile = Convertpath (gOfficepath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sVarResult = Array( _ "A1" , _ "B2" , _ @@ -344,8 +334,6 @@ endcase testcase tDocInformationCreated - Dim sTestFile as String - Dim sOriginalFile as String Dim sFirstName as String Dim sLastName as String Dim sFirstName1 as String @@ -355,15 +343,7 @@ testcase tDocInformationCreated Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sVarResult(0) = sFirstName1 + " " + sLastName1 sVarResult(1) = fGetDate1(Date) @@ -458,7 +438,6 @@ endcase testcase tDocInformationModified Dim sTestFile as String - Dim sOriginalFile as String Dim sSaveasFile as String Dim sFirstName as String Dim sLastName as String @@ -469,15 +448,7 @@ testcase tDocInformationModified Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sSaveasFile = ConvertPath (gOfficePath + "user\work\fields_docinfos1.sxw" ) sVarResult(0) = sFirstName1 + " " + sLastName1 @@ -595,7 +566,6 @@ testcase tDocInformationModifiedSavefile goto endsub Dim sTestFile as String - Dim sOriginalFile as string Dim sSaveasFile as String Dim sFirstName as String Dim sLastName as String @@ -606,15 +576,7 @@ testcase tDocInformationModifiedSavefile Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sSaveasFile = ConvertPath (gOfficePath + "user\work\fields_docinfos1.sxw" ) sVarResult(0) = sFirstName1 + " " + sLastName1 @@ -715,7 +677,6 @@ endcase testcase tDocInformationPrinted Dim sTestFile as String - Dim sOriginalFile as String Dim sFirstName as String Dim sLastName as String Dim sFirstName1 as String @@ -725,17 +686,7 @@ testcase tDocInformationPrinted Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sVarResult(0) = sFirstName1 + " " + sLastName1 sVarResult(1) = fGetDate1(Date) @@ -842,7 +793,6 @@ endcase testcase tDocInformationRevisionnumber Dim sTestFile as String - Dim sOriginalFile as string Dim sSaveasFile as String Dim sFirstName as String Dim sLastName as String @@ -854,15 +804,7 @@ testcase tDocInformationRevisionnumber sFirstName1 = "Test1" : sLastName1 = "Test2" sVarResult = "17" : sFixResult = "4" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw" sSaveasFile = ConvertPath (gOfficePath + "user\work\tDocInformationRevisionnumber.sxw" ) if FileExists ( sSaveAsFile ) then app.kill ( sSaveAsFile ) @@ -947,21 +889,12 @@ endcase testcase tDocInformationTotaleditingtime Dim sTestFile as String - Dim sOriginalFile as string Dim sSaveasFile as String Dim sVarResult as String Dim sFixResult as String sFixResult = "00:29:05" - sTestFile = Convertpath (gOfficePath + "user\work\fields_docinfos.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if + sTestFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\fields_docinfos.sxw") sSaveasFile = ConvertPath (gOfficePath + "user\work\tDocInformationRevisionnumber.sxw" ) if FileExists ( sSaveAsFile ) then app.kill ( sSaveAsFile ) diff --git a/testautomation/writer/optional/includes/fields/w_fields7.inc b/testautomation/writer/optional/includes/fields/w_fields7.inc index af3e73c284b1..c5b21d00d5eb 100644 --- a/testautomation/writer/optional/includes/fields/w_fields7.inc +++ b/testautomation/writer/optional/includes/fields/w_fields7.inc @@ -182,7 +182,6 @@ testcase tL10NtestDate end if Dim sTestFile as String - Dim sOriginalFile as string Dim sDate() as String Dim iCountry() as Integer Dim i , j as Integer @@ -215,17 +214,7 @@ testcase tL10NtestDate ExtrasOptionenDlg.Cancel Call hCloseDocument - sTestFile = Convertpath (gOfficepath + "user\work\Date.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\Date.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - + sTestFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\Date.sxw") sDate = Array( _ "Tuesday, August 3, 2004" , _ "mardi 3 août 2004" , _ @@ -304,7 +293,6 @@ testcase tL10NtestTime end if Dim sTestFile as String - Dim sOriginalFile as string Dim sTime() as String Dim iCountry() as Integer Dim i as Integer @@ -338,17 +326,8 @@ testcase tL10NtestTime ExtrasOptionenDlg.Cancel Call hCloseDocument - sTestFile = Convertpath (gOfficepath + "user\work\Time.sxw") - sOriginalFile = Convertpath (gTesttoolpath + "writer\optional\input\fields\Time.sxw") - ' document has to be copied to local file system to avoid opening a read-only file - ' because all field data gets lost if documents write-protection is removed via 'sMakeReadOnlyDocumentEditable' - FileCopy (sOriginalFile, sTestFile) - if FileExists ( sTestFile ) = false then - Warnlog "Test document couldn't be copied to local file system. Test aborted!" - goto endsub - end if - - + + sTestFile = gTesttoolpath + "writer\optional\input\fields\Time.sxw" sTime = Array( _ "04:46:08 PM" , _ "04:46:08 PM" , _ -- cgit From 3f0450eecdf2ae68d014ddae7c34517c8478e0ff Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Tue, 14 Sep 2010 09:24:30 +0200 Subject: automationdev300m87: #i112208# - Revert all to hFileOpen() in all the places where we are working on a local context already. --- .../includes/alternative_text/w_alternative_text.inc | 9 +++------ .../writer/optional/includes/clipboard/w_210_.inc | 12 ++++++------ .../writer/optional/includes/clipboard/w_211_.inc | 18 +++++++++--------- .../writer/optional/includes/clipboard/w_212_.inc | 18 +++++++++--------- .../writer/optional/includes/clipboard/w_213_.inc | 18 +++++++++--------- .../writer/optional/includes/clipboard/w_214_.inc | 18 +++++++++--------- .../writer/optional/includes/clipboard/w_215_.inc | 8 ++++---- .../writer/optional/includes/clipboard/w_216_.inc | 6 +++--- .../writer/optional/includes/clipboard/w_217_.inc | 10 +++++----- .../writer/optional/includes/clipboard/w_218_.inc | 10 +++++----- .../writer/optional/includes/clipboard/w_219_.inc | 10 +++++----- .../writer/optional/includes/clipboard/w_220_.inc | 12 ++++++------ .../writer/optional/includes/clipboard/w_221_.inc | 14 +++++++------- .../writer/optional/includes/clipboard/w_222_.inc | 14 +++++++------- .../includes/formatcharacter/w_format_character1.inc | 8 ++++---- .../optional/includes/formatpage/w_formatpage1.inc | 2 +- .../optional/includes/formatpage/w_formatpage3.inc | 2 +- .../optional/includes/formatpage/w_formatpage4.inc | 2 +- .../includes/insertgraphic/w_insertgraphic1.inc | 2 +- .../writer/optional/includes/navigator/w_navigator.inc | 2 +- .../writer/optional/includes/number/w_205_.inc | 8 ++++---- .../writer/optional/includes/number/w_205a_.inc | 10 +++++----- .../writer/optional/includes/number/w_206_.inc | 4 ++-- .../writer/optional/includes/option/wh_o_2.inc | 2 +- .../writer/optional/includes/option/wr_o_2.inc | 2 +- .../writer/optional/includes/option/wr_o_3.inc | 2 +- .../writer/optional/includes/option/wr_o_4.inc | 2 +- .../regression/issuezilla/w_issuezilla_regression.inc | 8 ++++---- .../writer/optional/includes/section/w_section_3.inc | 4 ++-- 29 files changed, 117 insertions(+), 120 deletions(-) diff --git a/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc b/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc index bf14a2dae8e9..a80e5b0e925b 100644 --- a/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc +++ b/testautomation/writer/optional/includes/alternative_text/w_alternative_text.inc @@ -37,7 +37,6 @@ sub w_alternative_text Call tFrameAlternativeText Call tOLEAlternativeText - end sub '------------------------------------------------------------------------- @@ -106,7 +105,7 @@ testcase tPictureAlternativeText Call hCloseDocument printlog "- Reload" - hFileOpenLocally( gOfficePath + "user\work\tPictureAlternativeText.odt" ) + hFileOpen( gOfficePath + "user\work\tPictureAlternativeText.odt" ) ' select graphic Call wTypeKeys ("") @@ -190,7 +189,7 @@ testcase tFrameAlternativeText Call hCloseDocument printlog "- Reload" - hFileOpenLocally( gOfficePath + "user\work\tFrameAlternativeText.odt" ) + hFileOpen( gOfficePath + "user\work\tFrameAlternativeText.odt" ) ' select frame Call wTypeKeys ("") @@ -271,7 +270,7 @@ testcase tOLEAlternativeText Call hCloseDocument printlog "- Reload" - hFileOpenLocally( gOfficePath + "user\work\tOLEAlternativeText.odt" ) + hFileOpen( gOfficePath + "user\work\tOLEAlternativeText.odt" ) ' select OLE Call wTypeKeys ("") @@ -293,7 +292,5 @@ testcase tOLEAlternativeText printlog "- close document" Call hCloseDocument - - endcase \ No newline at end of file diff --git a/testautomation/writer/optional/includes/clipboard/w_210_.inc b/testautomation/writer/optional/includes/clipboard/w_210_.inc index 8f744c28fb6e..bef3214a1d46 100644 --- a/testautomation/writer/optional/includes/clipboard/w_210_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_210_.inc @@ -225,7 +225,7 @@ testcase WriterToWriterFrame printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_frame.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_frame.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -267,7 +267,7 @@ testcase WriterToWriterDrawingObject printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_draw.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_draw.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -309,7 +309,7 @@ testcase WriterToWriterGraphicLinked printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_graphic1.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_graphic1.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -351,7 +351,7 @@ testcase WriterToWriterGraphicEmbedded printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_graphic2.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_graphic2.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -393,7 +393,7 @@ testcase WriterToWriterOLEObject printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_ole.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_ole.odt",false) printlog " + Close saved document " Call hCloseDocument else @@ -435,7 +435,7 @@ testcase WriterToWriterControl printlog " + Close saved document " Call hCloseDocument printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_control.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_control.odt",false) printlog " + Close saved document " Call hCloseDocument else diff --git a/testautomation/writer/optional/includes/clipboard/w_211_.inc b/testautomation/writer/optional/includes/clipboard/w_211_.inc index f40021cf38a1..7c4476eccc92 100644 --- a/testautomation/writer/optional/includes/clipboard/w_211_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_211_.inc @@ -79,7 +79,7 @@ testcase WriterToCalcText Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_text.ods",true) + hFileOpen( gOfficepath + "user\work\writer_to_calc_text.ods",true) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -133,7 +133,7 @@ testcase WriterToCalcField Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_field.ods",true) + hFileOpen( gOfficepath + "user\work\writer_to_calc_field.ods",true) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -192,7 +192,7 @@ testcase WriterToCalcTable kontext "navigator" if navigator.exists then navigator.close - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_table.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_table.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -248,7 +248,7 @@ testcase WriterToCalcFrame Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_frame.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_frame.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -302,7 +302,7 @@ testcase WriterToCalcDrawingObject Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_draw.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_draw.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -357,7 +357,7 @@ testcase WriterToCalcGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_graphic1.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_graphic1.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -412,7 +412,7 @@ testcase WriterToCalcGraphicEmbedded Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_graphic2.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_graphic2.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -466,7 +466,7 @@ testcase WriterToCalcOLEObject Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_ole.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_ole.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -520,7 +520,7 @@ testcase WriterToCalcControl Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_calc_control.ods",false) + hFileOpen( gOfficepath + "user\work\writer_to_calc_control.ods",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_212_.inc b/testautomation/writer/optional/includes/clipboard/w_212_.inc index 8f13f3c46488..277a837d42bd 100644 --- a/testautomation/writer/optional/includes/clipboard/w_212_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_212_.inc @@ -80,7 +80,7 @@ testcase WriterToImpressText Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_text.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_text.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -134,7 +134,7 @@ testcase WriterToImpressField Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_field.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_field.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -188,7 +188,7 @@ testcase WriterToImpressTable Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_table.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_table.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -242,7 +242,7 @@ testcase WriterToImpressFrame Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_frame.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_frame.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -296,7 +296,7 @@ testcase WriterToImpressDrawingObject Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_draw.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_draw.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -350,7 +350,7 @@ testcase WriterToImpressGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_graphic1.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_graphic1.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -404,7 +404,7 @@ testcase WriterToImpressGraphicEmbedded Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_graphic2.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_graphic2.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -458,7 +458,7 @@ testcase WriterToImpressOLEObject Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_ole.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_ole.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -512,7 +512,7 @@ testcase WriterToImpressControl Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_impress_control.odp",false) + hFileOpen( gOfficepath + "user\work\writer_to_impress_control.odp",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_213_.inc b/testautomation/writer/optional/includes/clipboard/w_213_.inc index ac11201662fb..72cdeac69678 100644 --- a/testautomation/writer/optional/includes/clipboard/w_213_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_213_.inc @@ -79,7 +79,7 @@ testcase WriterToDrawText Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_text.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_text.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -133,7 +133,7 @@ testcase WriterToDrawField Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_field.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_field.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -187,7 +187,7 @@ testcase WriterToDrawTable Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_table.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_table.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -241,7 +241,7 @@ testcase WriterToDrawFrame Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_frame.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_frame.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -295,7 +295,7 @@ testcase WriterToDrawDrawingObject Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_draw.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_draw.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -350,7 +350,7 @@ testcase WriterToDrawGraphicLinked Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_graphic1.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_graphic1.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -405,7 +405,7 @@ testcase WriterToDrawGraphicEmbedded Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_graphic2.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_graphic2.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -459,7 +459,7 @@ testcase WriterToDrawOLEObject Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_ole.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_ole.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -513,7 +513,7 @@ testcase WriterToDrawControl Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_draw_control.odg",false) + hFileOpen( gOfficepath + "user\work\writer_to_draw_control.odg",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_214_.inc b/testautomation/writer/optional/includes/clipboard/w_214_.inc index d02caff65d76..12b9b687b426 100644 --- a/testautomation/writer/optional/includes/clipboard/w_214_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_214_.inc @@ -78,7 +78,7 @@ testcase WriterToHTMLText Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_text.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_text.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -131,7 +131,7 @@ testcase WriterToHTMLField Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_field.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_field.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -184,7 +184,7 @@ testcase WriterToHTMLTable Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_table.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_table.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -237,7 +237,7 @@ testcase WriterToHTMLFrame Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_frame.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_frame.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -290,7 +290,7 @@ testcase WriterToHTMLDrawingObject Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_draw.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_draw.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -343,7 +343,7 @@ testcase WriterToHTMLGraphicLinked Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_graphic1.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_graphic1.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -396,7 +396,7 @@ testcase WriterToHTMLGraphicEmbedded Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_graphic2.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_graphic2.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -449,7 +449,7 @@ testcase WriterToHTMLOLEObject Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_ole.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_ole.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -502,7 +502,7 @@ testcase WriterToHTMLControl Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\writer_to_html_control.html") + hFileOpen( gOfficepath + "user\work\writer_to_html_control.html") printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_215_.inc b/testautomation/writer/optional/includes/clipboard/w_215_.inc index 74669a4f29b0..992efb2981ca 100644 --- a/testautomation/writer/optional/includes/clipboard/w_215_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_215_.inc @@ -147,7 +147,7 @@ testcase CalcToWriterText2 Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_textformat_cellcontent.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_textformat_cellcontent.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -329,7 +329,7 @@ testcase CalcToWriterHyperlink2 Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_hyperlink_cellcontent.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_hyperlink_cellcontent.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -381,7 +381,7 @@ testcase CalcToWriterDrawObject Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_draw.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_draw.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -433,7 +433,7 @@ testcase CalcToWriterOLE Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\writer_to_writer_ole.odt",false) + hFileOpen( gOfficepath + "user\work\writer_to_writer_ole.odt",false) Wait 500 printlog " Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_216_.inc b/testautomation/writer/optional/includes/clipboard/w_216_.inc index 1537d2969692..bfbbdf637695 100644 --- a/testautomation/writer/optional/includes/clipboard/w_216_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_216_.inc @@ -297,7 +297,7 @@ testcase HTMLToWRITERGraphicLinked Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_writer_graphic1.odt",false) + hFileOpen( gOfficepath + "user\work\html_to_writer_graphic1.odt",false) printlog " Reopen saved document " Wait 500 printlog " Close saved document " @@ -357,7 +357,7 @@ testcase HTMLToWRITERControl Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_writer_control.odt",false) + hFileOpen( gOfficepath + "user\work\html_to_writer_control.odt",false) printlog " Reopen saved document " Wait 500 printlog " Close saved document " @@ -423,7 +423,7 @@ testcase HTMLToWRITERFloatingFrame Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_writer_float.odt",false) + hFileOpen( gOfficepath + "user\work\html_to_writer_float.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_217_.inc b/testautomation/writer/optional/includes/clipboard/w_217_.inc index de3f78367e24..5e81b745f6d8 100644 --- a/testautomation/writer/optional/includes/clipboard/w_217_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_217_.inc @@ -149,7 +149,7 @@ testcase HTMLToCALCField Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_calc_field.ods",true) + hFileOpen( gOfficepath + "user\work\html_to_calc_field.ods",true) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -203,7 +203,7 @@ testcase HTMLToCALCTable printlog " Save document as ..\user\work\html_to_calc_table.ods" Call hCloseDocument printlog " Close saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_calc_table.ods",true) + hFileOpen( gOfficepath + "user\work\html_to_calc_table.ods",true) printlog " Reopen saved document " Call hCloseDocument printlog " Close saved document " @@ -260,7 +260,7 @@ testcase HTMLToCALCGraphicLinked Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_calc_graphic1.ods",false) + hFileOpen( gOfficepath + "user\work\html_to_calc_graphic1.ods",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -317,7 +317,7 @@ testcase HTMLToCALCControl Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_calc_control.ods",false) + hFileOpen( gOfficepath + "user\work\html_to_calc_control.ods",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -378,7 +378,7 @@ testcase HTMLToCALCFloatingFrame printlog " Close saved document " Call hCloseDocument printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_calc_float.ods",false) + hFileOpen( gOfficepath + "user\work\html_to_calc_float.ods",false) printlog " Close saved document " Call hCloseDocument else diff --git a/testautomation/writer/optional/includes/clipboard/w_218_.inc b/testautomation/writer/optional/includes/clipboard/w_218_.inc index fb8aae68a7ec..08f23ef0df96 100644 --- a/testautomation/writer/optional/includes/clipboard/w_218_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_218_.inc @@ -154,7 +154,7 @@ testcase HTMLToDRAWField Call hCloseDocument sleep (2) printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_draw_field.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_field.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -211,7 +211,7 @@ testcase HTMLToDRAWTable Call hCloseDocument wait 500 printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_draw_table.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_table.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -267,7 +267,7 @@ testcase HTMLToDRAWGraphicLinked Call hCloseDocument wait 500 printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_draw_graphic1.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_graphic1.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -324,7 +324,7 @@ testcase HTMLToDRAWControl Call hCloseDocument wait 500 printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_draw_control.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_control.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument @@ -386,7 +386,7 @@ testcase HTMLToDRAWFloatingFrame Call hCloseDocument wait 500 printlog " + Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_draw_float.odg",false) + hFileOpen( gOfficepath + "user\work\html_to_draw_float.odg",false) Wait 500 printlog " + Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_219_.inc b/testautomation/writer/optional/includes/clipboard/w_219_.inc index 8ce54912c15c..371e1e127e6e 100644 --- a/testautomation/writer/optional/includes/clipboard/w_219_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_219_.inc @@ -149,7 +149,7 @@ testcase HTMLToIMPRESSField Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_impress_field.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_field.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -206,7 +206,7 @@ testcase HTMLToIMPRESSTable Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_impress_table.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_table.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -262,7 +262,7 @@ testcase HTMLToIMPRESSGraphicLinked Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_impress_graphic1.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_graphic1.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -319,7 +319,7 @@ testcase HTMLToIMPRESSControl Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_impress_control.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_control.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument @@ -381,7 +381,7 @@ testcase HTMLToIMPRESSFloatingFrame Call hCloseDocument wait 500 printlog " Reopen saved document " - hFileOpenLocally( gOfficepath + "user\work\html_to_impress_float.odp",false) + hFileOpen( gOfficepath + "user\work\html_to_impress_float.odp",false) Wait 500 printlog " Close saved document " Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_220_.inc b/testautomation/writer/optional/includes/clipboard/w_220_.inc index 8e494c0e8af4..4ae43a6d7124 100644 --- a/testautomation/writer/optional/includes/clipboard/w_220_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_220_.inc @@ -86,7 +86,7 @@ testcase HTMLToHTMLText Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_html_text.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_text.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -143,7 +143,7 @@ testcase HTMLToHTMLField Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_html_field.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_field.html" ) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -200,7 +200,7 @@ testcase HTMLToHTMLTable Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_html_table.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_table.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -256,7 +256,7 @@ testcase HTMLToHTMLGraphicLinked Call hCloseDocument printlog " Close saved document " sleep (2) - hFileOpenLocally( gOfficepath + "user\work\html_to_html_graphic1.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_graphic1.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -313,7 +313,7 @@ testcase HTMLToHTMLControl Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_html_control.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_control.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -375,7 +375,7 @@ testcase HTMLToHTMLFloatingFrame Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\html_to_html_float.html",false) + hFileOpen( gOfficepath + "user\work\html_to_html_float.html",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_221_.inc b/testautomation/writer/optional/includes/clipboard/w_221_.inc index 0436ef6531d4..7b5674d9ca97 100644 --- a/testautomation/writer/optional/includes/clipboard/w_221_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_221_.inc @@ -80,7 +80,7 @@ testcase DrawToHTMLScrollingText Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_html_scrolling_text.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_scrolling_text.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -135,7 +135,7 @@ testcase DrawToHTMLGroupedObject Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_html_grouped_object.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_grouped_object.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -190,7 +190,7 @@ testcase DrawToHTML3D Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_html_3d.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_3d.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -245,7 +245,7 @@ testcase DrawToHTMLFontwork Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_html_fontwork.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_fontwork.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -300,7 +300,7 @@ testcase DrawToHTMLBullets Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_html_bullets.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_bullets.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -356,7 +356,7 @@ testcase DrawToHTMLDimensionLines Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_html_dim_lines.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_dim_lines.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument @@ -412,7 +412,7 @@ testcase DrawToHTMLConnectors Call hCloseDocument printlog " + Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_html_connectors.html",false) + hFileOpen( gOfficepath + "user\work\draw_to_html_connectors.html",false) printlog " + Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/clipboard/w_222_.inc b/testautomation/writer/optional/includes/clipboard/w_222_.inc index 488f0d40ca6d..166ad4b4e38e 100644 --- a/testautomation/writer/optional/includes/clipboard/w_222_.inc +++ b/testautomation/writer/optional/includes/clipboard/w_222_.inc @@ -81,7 +81,7 @@ testcase DrawToWriterScrollingText Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_scrolling_text.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_scrolling_text.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -136,7 +136,7 @@ testcase DrawToWriterGroupedObject Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_grouped_object.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_grouped_object.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -191,7 +191,7 @@ testcase DrawToWriter3D Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_3d.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_3d.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -246,7 +246,7 @@ testcase DrawToWriterFontwork Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_fontwork.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_fontwork.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -301,7 +301,7 @@ testcase DrawToWriterBullets Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_bullets.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_bullets.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -357,7 +357,7 @@ testcase DrawToWriterDimensionLines Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_dim_lines.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_dim_lines.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument @@ -413,7 +413,7 @@ testcase DrawToWriterConnectors Call hCloseDocument printlog " Close saved document " wait 500 - hFileOpenLocally( gOfficepath + "user\work\draw_to_writer_connectors.odt",false) + hFileOpen( gOfficepath + "user\work\draw_to_writer_connectors.odt",false) printlog " Reopen saved document " Wait 500 Call hCloseDocument diff --git a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc index 7b8b0e61d784..87c1d9f47082 100644 --- a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc +++ b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc @@ -243,9 +243,9 @@ testcase tFormatCharacter3 Call hCloseDocument printlog "reopen previous saved document and check saved character format" if gApplication = "WRITER" then - hFileOpenLocally( gOfficePath + "user\work\format1.odt" ) + hFileOpen( gOfficePath & "user\work\format1.odt" ) else - hFileOpenLocally( gOfficePath + "user\work\format1.odm" ) + hFileOpen( gOfficePath & "user\work\format1.odm" ) end if Call wTypeKeys "" Wait 500 @@ -579,9 +579,9 @@ testcase tFormatCharacter Call hCloseDocument printlog "re-open previous saved document" if gApplication = "WRITER" then - hFileOpenLocally( gOfficePath + "user\work\format1.odt" ) + hFileOpen( gOfficePath & "user\work\format1.odt" ) else - hFileOpenLocally( gOfficePath + "user\work\format1.odm" ) + hFileOpen( gOfficePath & "user\work\format1.odm" ) end if Call wTypeKeys "" Wait 500 diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc index c597fef06f87..a7393d50f6df 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage1.inc @@ -348,7 +348,7 @@ testcase tFormatPage_6 Call hNewDocument - hFileOpenLocally( gOfficepath + "user\work\tFormatPage_6.odt") + hFileOpen( gOfficepath + "user\work\tFormatPage_6.odt") '/// Check if Pre-defined formats are correct fFormatPageWriter("TabSeite") diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc index f4954d106df6..df0f810f9093 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage3.inc @@ -1263,7 +1263,7 @@ testcase tFormatPage_46 Call hCloseDocument Call hNewDocument - hFileOpenLocally( gOfficepath + "user\work\tFormatPage_46.odt") + hFileOpen( gOfficepath + "user\work\tFormatPage_46.odt") '/// Check if the setting are still kept fFormatPageWriter("TabSpalten") diff --git a/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc b/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc index 526cf111bc16..728cd204ed50 100644 --- a/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc +++ b/testautomation/writer/optional/includes/formatpage/w_formatpage4.inc @@ -763,7 +763,7 @@ testcase tFormatPage_60 Call hCloseDocument Call hNewDocument - hFileOpenLocally( gOfficepath + "user\work\tFormatPage_60.odt") + hFileOpen( gOfficepath + "user\work\tFormatPage_60.odt") '/// check if the configuration is all right diff --git a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc index bf90c2744768..fddd341bd9eb 100644 --- a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc +++ b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc @@ -642,7 +642,7 @@ testcase tInsertGraphic_10 sleep(2) '/// Reload the file - hFileOpenLocally( gOfficepath + "user\work\tInsertGraphic_5.odt") + hFileOpen( gOfficepath & "user\work\tInsertGraphic_5.odt") sleep(2) diff --git a/testautomation/writer/optional/includes/navigator/w_navigator.inc b/testautomation/writer/optional/includes/navigator/w_navigator.inc index c0f03039176d..e164bce470be 100644 --- a/testautomation/writer/optional/includes/navigator/w_navigator.inc +++ b/testautomation/writer/optional/includes/navigator/w_navigator.inc @@ -674,7 +674,7 @@ testcase tViewNavigator6 Sleep 2 printlog "- Saving and Loading the document, check settings" - hFileOpenLocally( gOfficePath + "user\work\uvobj.odt") + hFileOpen( gOfficePath & "user\work\uvobj.odt") '/// Navigator has to be opened with document /// Kontext "Navigator" if Navigator.NotExists then diff --git a/testautomation/writer/optional/includes/number/w_205_.inc b/testautomation/writer/optional/includes/number/w_205_.inc index dafa55b3d9bb..ade7afe66ad2 100644 --- a/testautomation/writer/optional/includes/number/w_205_.inc +++ b/testautomation/writer/optional/includes/number/w_205_.inc @@ -183,7 +183,7 @@ testcase tFormatNumberingBullets Sleep 2 Call hCloseDocument Sleep 2 - hFileOpenLocally( gOfficePath + "user\work\format4." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\format4." & WriterFilterExtension(0) ) Sleep 2 '/// Close document /// Call hCloseDocument @@ -315,7 +315,7 @@ testcase tFormatNumberingPosition Sleep 2 Call hCloseDocument Sleep 2 - hFileOpenLocally( gOfficePath + "user\work\tFormatNumberingPosition." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\tFormatNumberingPosition." & WriterFilterExtension(0) ) '/// check settings on Format / NumberingBullets /// FormatNumberingBullets @@ -499,7 +499,7 @@ testcase tFormatNumberingOptions Sleep 2 Call hCloseDocument Sleep 2 - hFileOpenLocally( gOfficePath + "user\work\format6." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\format6." & WriterFilterExtension(0) ) For i = 1 to 15 call wTypeKeys "" Wait 500 @@ -713,7 +713,7 @@ testcase tFormatNumberingAll Sleep 2 Call hCloseDocument Sleep 2 - hFileOpenLocally( gOfficePath + "user\work\format7." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\format7." & WriterFilterExtension(0) ) Sleep 2 FormatNumberingBullets '/// reopen Format / NumberingBullets and check saved settings /// diff --git a/testautomation/writer/optional/includes/number/w_205a_.inc b/testautomation/writer/optional/includes/number/w_205a_.inc index d981dbde812f..385d2a5501f4 100644 --- a/testautomation/writer/optional/includes/number/w_205a_.inc +++ b/testautomation/writer/optional/includes/number/w_205a_.inc @@ -240,10 +240,10 @@ testcase tToolsOutlineNumbering1 Select Case i Case 1 printlog "- Load sxw and check formattings" - hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering1.sxw" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering1.sxw" ) Case 2 printlog "- Load odt and check formattings" - hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering1.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering1.odt" ) end select call wTypeKeys "", 8 call wTypeKeys "", 10 @@ -463,7 +463,7 @@ testcase tToolsOutlineNumbering2 printlog " - check saved Numbering" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsOutlineNumbering2.odt", "writer8" ) Call hCloseDocument - hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering2.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering2.odt" ) ToolsOutlineNumbering Kontext @@ -638,7 +638,7 @@ testcase tToolsOutlineNumbering3 printlog " - check saved Numbering" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsOutlineNumbering3.odt", "writer8" ) Call hCloseDocument - hFileOpenLocally( gOfficePath + "user\work\tToolsOutlineNumbering3.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsOutlineNumbering3.odt" ) ToolsOutlineNumbering Kontext Active.SetPage TabKapitelnumerierung @@ -840,7 +840,7 @@ testcase tToolsFootnoteEndnote printlog " - Save and reload" Call hFileSaveAsWithFilterKill ( gOfficePath + "user\work\tToolsFootnoteEndnote.odt", "writer8" ) Call hCloseDocument - hFileOpenLocally( gOfficePath + "user\work\tToolsFootnoteEndnote.odt" ) + hFileOpen( gOfficePath & "user\work\tToolsFootnoteEndnote.odt" ) printlog " - check saved properties" ToolsFootnote Kontext diff --git a/testautomation/writer/optional/includes/number/w_206_.inc b/testautomation/writer/optional/includes/number/w_206_.inc index 46cc61715ad9..92958c2d9b18 100644 --- a/testautomation/writer/optional/includes/number/w_206_.inc +++ b/testautomation/writer/optional/includes/number/w_206_.inc @@ -340,7 +340,7 @@ testcase tToolsNumbering6 Call hFileSaveAsKill ( gOfficepath & "user\work\tToolsNumbering6.odt" ) '/// Close and reload document Call hCloseDocument - hFileOpenLocally( gOfficepath & "user\work\tToolsNumbering6.odt" ) + hFileOpen( gOfficepath & "user\work\tToolsNumbering6.odt" ) end if call wTypeKeys ( "" ) EditCopy @@ -448,7 +448,7 @@ testcase tToolsNumbering7 Call hFileSaveAsKill ( gOfficepath & "user\work\tToolsNumbering7.odt" ) '/// Close and reload document Call hCloseDocument - hFileOpenLocally( gOfficepath & "user\work\tToolsNumbering7.odt" ) + hFileOpen( gOfficepath & "user\work\tToolsNumbering7.odt" ) end if call wTypeKeys ( "" ) diff --git a/testautomation/writer/optional/includes/option/wh_o_2.inc b/testautomation/writer/optional/includes/option/wh_o_2.inc index 6555e741c5e3..3163453524ff 100644 --- a/testautomation/writer/optional/includes/option/wh_o_2.inc +++ b/testautomation/writer/optional/includes/option/wh_o_2.inc @@ -163,7 +163,7 @@ testcase tToolsOptionsHTMLPrint ' Is saved with document Kontext "ExtrasOptionenDlg" ExtrasOptionenDlg.OK - hFileOpenLocally( gOfficepath + "user\work\printtest.html") + hFileOpen( gOfficePath & "user\work\printtest.html") ToolsOptions Call hToolsOptions ( "HTML" , "PRINT" ) diff --git a/testautomation/writer/optional/includes/option/wr_o_2.inc b/testautomation/writer/optional/includes/option/wr_o_2.inc index b2a4e72ecec1..7b9322c169d8 100644 --- a/testautomation/writer/optional/includes/option/wr_o_2.inc +++ b/testautomation/writer/optional/includes/option/wr_o_2.inc @@ -587,7 +587,7 @@ testcase tToolsOptionsWriterPrint1 ExtrasOptionenDlg.OK WaitSlot (2) ' Notify is saved with document - hFileOpenLocally( gOfficepath + "user\work\printtest." & WriterFilterExtension(0) ) + hFileOpen( gOfficePath & "user\work\printtest." & WriterFilterExtension(0) ) ToolsOptions Call hToolsOptions ( "WRITER" , "PRINT" ) diff --git a/testautomation/writer/optional/includes/option/wr_o_3.inc b/testautomation/writer/optional/includes/option/wr_o_3.inc index df70dfc52faf..9868740c733c 100644 --- a/testautomation/writer/optional/includes/option/wr_o_3.inc +++ b/testautomation/writer/optional/includes/option/wr_o_3.inc @@ -938,7 +938,7 @@ testcase tToolsOptionsWriterCompatibility1 printlog "- load previously saved document" Call hNewDocument - hFileOpenLocally( gOfficePath + "user\work\tToolsOptionsWriterCompatibility1.odt") + hFileOpen( gOfficePath & "user\work\tToolsOptionsWriterCompatibility1.odt") Printlog "check state of all checkboxes and uncheck all checkboxes" ToolsOptions diff --git a/testautomation/writer/optional/includes/option/wr_o_4.inc b/testautomation/writer/optional/includes/option/wr_o_4.inc index 3201411e0e82..53915f76bc63 100644 --- a/testautomation/writer/optional/includes/option/wr_o_4.inc +++ b/testautomation/writer/optional/includes/option/wr_o_4.inc @@ -217,7 +217,7 @@ testcase tToolsOptionsWriterOther ' load file in this environment '///use "output\\writer\\w95\\tab25cm.odt" /// - hFileOpenLocally( gOfficePath + "user\work\tab25cm.odt") + hFileOpen( gOfficePath & "user\work\tab25cm.odt") sleep (2) ' check TabStops, have to be the ones this file was saved with ToolsOptions diff --git a/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc b/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc index c03cb811e0f0..dd3b304ad151 100644 --- a/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc +++ b/testautomation/writer/optional/includes/regression/issuezilla/w_issuezilla_regression.inc @@ -205,7 +205,7 @@ testcase i69045 Call hCloseDocument printlog "- Save, close and load document" '/// Open saved document - hFileOpenLocally( gOfficepath & "user\work\i69045.odt" ) + hFileOpen( gOfficepath & "user\work\i69045.odt" ) '/// Check try EditChangesAcceptOrReject @@ -251,7 +251,7 @@ testcase i69521 '/// close document Call hCloseDocument '/// reload previous saved document - hFileOpenLocally( gOfficePath & "user\work\i96521-1.odt") + hFileOpen( gOfficePath & "user\work\i96521-1.odt") '/// Check if all 5 Graphics are still in document iItems = CountItemsInNavigatorGroup(4) if iItems <> 5 then @@ -325,7 +325,7 @@ testcase i75027 Call hFileSaveAsKill (gOfficepath & "user\work\i75027.html") '/// Reload previous saved document Call hCloseDocument - hFileOpenLocally( gOfficepath & "user\work\i75027.html") + hFileOpen( gOfficepath & "user\work\i75027.html") '/// Check that the numbering is still the same. printlog "- check numbering (previous saved)" Call wTypeKeys ( "" ) @@ -482,7 +482,7 @@ testcase i103265 Call hCloseDocument printlog "- Reload" - hFileOpenLocally( gOfficePath + "user\work\ODFHyperlinksInTOCs.html" ) + hFileOpen( gOfficePath & "user\work\ODFHyperlinksInTOCs.html" ) printlog "Check that every hyperlink jumps correctly to its target" For i = 1 to 3 ' point cursor to beginning of document diff --git a/testautomation/writer/optional/includes/section/w_section_3.inc b/testautomation/writer/optional/includes/section/w_section_3.inc index 72963282511e..e23b4c8502d5 100644 --- a/testautomation/writer/optional/includes/section/w_section_3.inc +++ b/testautomation/writer/optional/includes/section/w_section_3.inc @@ -1064,7 +1064,7 @@ testcase tPasswordProtectSection_2 Call hCloseDocument PrintLog " Reload the file" - hFileOpenLocally( gOfficePath + "user\work\tPasswordProtectSection_2.odt") + hFileOpen( gOfficepath + "user\work\tPasswordProtectSection_2.odt") FormatSections Kontext "BereicheBearbeiten" @@ -1200,7 +1200,7 @@ testcase tPasswordProtectSection_4 Call hCloseDocument PrintLog " Reload the file" - hFileOpenLocally( gOfficePath + "user\work\tPasswordProtectSection_4.odt") + hFileOpen( gOfficepath + "user\work\tPasswordProtectSection_4.odt") PrintLog " In format/section, PW-Dialogue should appear when clicking 'option' button" FormatSections -- cgit From 33056e84c7972d6a8a3834b49e339cf7edbbcb04 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 10:14:56 +0200 Subject: automationdev300m87: #i112208# - Some test files rely on other files (e.g. for embedding) which must be copied as well. If the referenced file does not exist we get a warning that the document could not be found. In the current state of development this is bad because the dialog cannot be handled. So i added another dialog to hCloseDocument() which can be closed with either YES() or OK() while issuing a warning. --- .../global/tools/includes/required/t_doc1.inc | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/testautomation/global/tools/includes/required/t_doc1.inc b/testautomation/global/tools/includes/required/t_doc1.inc index ff07554bca35..9ddbc2bb42ad 100755 --- a/testautomation/global/tools/includes/required/t_doc1.inc +++ b/testautomation/global/tools/includes/required/t_doc1.inc @@ -252,10 +252,25 @@ function hCloseDocument() try Active.No catch - Active.Click( 202 ) endcatch end if + if ( Active.exists() ) then + try + Active.click( 202 ) + catch + endcatch + endif + + if ( Active.exists() ) then + try + warnlog( "hCloseDocument: Unexpected dialog: " & Active.getText() ) + Active.ok() + catch + Active.yes() + endcatch + endif + '/// Wait for FileClose to complete' WaitSlot( 2000 ) -- cgit From af33379f75415172ce3534d4abd87a21a211ccda Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 10:17:27 +0200 Subject: automationdev300m87: #i112208# - In some cases it is required to copy a list of files from testautomation to the local work directory. To make this as easy as possible i added two functions: hFileGetLocalPath( file ) which returns the fully qualified path that the file is going to have when copied to the local user directory and hFileListCopyLocal( list of files ) which copies a given list of files to the local work directory. --- .../global/tools/includes/required/t_files.inc | 59 +++++++++++++++++++--- 1 file changed, 52 insertions(+), 7 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index ef8df3f31312..eb1b666fea27 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -550,6 +550,45 @@ function hGetWorkPath() as string hGetWorkPath() = sPath & getPathSeparator +end function +' +'------------------------------------------------------------------------------- +' +function hFileGetLocalPath( sSourcePath as string ) as string + + ' Isolate filename from path, prepend local work directory and return new file path + hFileGetLocalPath() = hGetWorkFile( hSplitString( sSourcePath, getPathSeparator, 0 ) ) + +end function +' +'------------------------------------------------------------------------------- +' +function hFileListCopyLocal( lsSourceList() as string ) as boolean + + ' Copy a list of files from testautomation to the local work directory + + const CFN = "global::tools::includes::required::t_files.inc:hFileListCopyLocal(): " + dim iCurrentPath as integer + dim cTargetPath as string + dim cSourcePath as string + + hFileListCopyLocal() = true + + for iCurrentPath = 1 to listcount( lsSourceList() ) + + cSourcePath = lsSourceList( iCurrentPath ) + cTargetPath = hFileGetLocalPath( cSourcePath ) + + FileCopy( cSourcePath, cTargetPath ) + + ' If any one copy operation fails we + if ( not FileExists( cTargetPath ) ) then + hFileListCopyLocal() = false + warnlog( CFN & "File was not copied: " & cSourcePath ) + endif + + next iCurrentPath + end function ' '------------------------------------------------------------------------------- @@ -557,12 +596,12 @@ end function function hFileOpenLocally( byVal sSourcePath as string ) as boolean ' Issue #i112208# - implement a function that copies a file from testautomation - ' into the local work directory to avoid that the document gets opened - ' in read-only mode. See details of the implementation in the issue - ' description. + ' into the local work directory and opens it from there to avoid that the + ' document gets opened in read-only mode. See details of the implementation + ' in the issue description. ' Parameters - ' 1) Path as string, URLs are untested + ' 1) Path as string, URLs are untested. ' 2) Separator, usually "getPathSeparator" ' 3) Item number, 0 = last item which usually is the file name from a path. ' Begin counting with 1, while the function internally accesses item 0 @@ -571,7 +610,6 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean const CFN = "global::tools::includes::required::t_files.inc:hFileOpenLocally(): " dim sTargetPath as string - dim sTargetFile as string ' If the source file does not exist we quit if ( not FileExists( sSourcePath ) ) then @@ -581,8 +619,7 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean endif ' Find out what the name of the target file is going to be - sTargetFile = hSplitString( sSourcePath, getPathSeparator, 0 ) ' The file - sTargetPath = hGetWorkFile( sTargetFile ) ' The path + file + sTargetPath = hFileGetLocalPath( sSourcePath ) ' The path + file ' Copy the file from anywhere to the local user directory if it does not ' exist. This behavior was discussed on IRC @@ -597,6 +634,14 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean FileCopy( sSourcePath, sTargetPath ) endif + ' Verify that the file has been created. return an empty string and warn + if ( not FileExists( sTargetPath ) ) then + warnlog( CFN & "File was not copied: " & sTargetFile ) + hFileOpenLocally() = false + gLastWorkFile = "" + exit function + endif + ' This is a hook that allows to access the filename under which the file ' has been saved. Due to restrictive coding guidelines we cannot return ' the new filename. -- cgit From 7935c81acc75d652412441419f2bc3b8745ccf40 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 10:19:03 +0200 Subject: automationdev300m87: #i112208# - Modified one test case to copy all files from testautomation/.../input to the local work directory as some files rely on others which are expected to be found at the same location. hFileOpenLocally() cannot do this as it does not know of dependencies to other files. --- .../optional/includes/loadsave/w_loadsave.inc | 615 ++++++++++----------- 1 file changed, 299 insertions(+), 316 deletions(-) diff --git a/testautomation/writer/optional/includes/loadsave/w_loadsave.inc b/testautomation/writer/optional/includes/loadsave/w_loadsave.inc index 3bfd69c481d6..b7a7c7b2dd61 100644 --- a/testautomation/writer/optional/includes/loadsave/w_loadsave.inc +++ b/testautomation/writer/optional/includes/loadsave/w_loadsave.inc @@ -27,22 +27,16 @@ '* '* owner : helge.delfs@oracle.com '* -'* short description : Checks the export to all available Filters from +'* short description : Checks the export to all available Filters from '* -'*********************************************************************** -' -' #1 tExportAllReadableFormatsIntoODF -' #1 tExportAllReadableFormatsIntoThemselves -' #1 tExportTop5FormatsIntoTop5 -' '\*********************************************************************** testcase tExportAllReadableFormatsIntoODF - if iSprache <> 1 then - QAErrorlog "#100970#test only support english language" - goto endsub - end if + if iSprache <> 1 then + QAErrorlog "#100970#test only support english language" + goto endsub + end if Dim AvailableFilters( 35 ) as String Dim ImportFileList ( 300 ) as String @@ -50,8 +44,8 @@ testcase tExportAllReadableFormatsIntoODF Dim WorkDirectory as String Dim ImportDir as String Dim SavedCorrectly as Boolean - Dim sExportFilter as string - Dim sExportFile as string + Dim sExportFilter as string + Dim sExportFile as string Dim i as Integer WorkDirectory = ( ConvertPath ( gOfficePath + "user\work\" + gPlatgroup + "\export\")) @@ -64,7 +58,7 @@ testcase tExportAllReadableFormatsIntoODF for i=1 to FehlerListe(0) printlog " <> " & FehlerListe(i) next i - goto endsub + goto endsub end if end if app.Mkdir WorkDirectory @@ -73,106 +67,107 @@ testcase tExportAllReadableFormatsIntoODF GetFileList ( ImportDir, "*.*", ImportFileList() ) printlog "- Done." + ' Create local copies of all files to be imported + hFileListCopyLocal( ImportFileList() ) + printlog "- Start loading files in list" - For i = 1 to listCount(ImportFileList()) - printlog "- " & i & ". load: " & ImportFileList(i) - sExportFile = ImportFileList(i) - if GetExtention ( sExportFile ) = "psw" then - QAErrorlog "#i102221#Pocket Word filter puts General I/O Error" - else - hFileOpenLocally( ImportFileList(i) ) - printlog "- done" - - Kontext "TextImport" - if TextImport.Exists then - TextImport.Ok - printlog "- Text import dialog passed" - end if - - Kontext "Filterauswahl" - if Filterauswahl.Exists then - Filterauswahl.Cancel - printlog "- Filterdialog passed" - end if - - Kontext "AsciiFilterOptionen" - if AsciiFilterOptionen.Exists then - AsciiFilterOptionen.Ok - printlog "- ASCII-Filter dialog passed" - end if - - Kontext "SecurityWarning" - if SecurityWarning.Exists(3) then - SecurityWarning.Ok - printlog "- Security warning passed" - end if - - Kontext "DocumentWriter" - if DocumentWriter.Exists(3) then - Do until DocumentWriter.StatusIsProgress = false - wait 500 - Loop - else - Kontext "DocumentCalc" - if DocumentCalc.Exists(3) then - Do until DocumentCalc.StatusIsProgress = false - wait 500 - Loop - else - Warnlog "Neither DocumentWriter or DocumentCalc existed? Some other dialogue in focus?" - end if - end if - - ' Check for macro alert - Kontext "SecurityWarning" - if SecurityWarning.Exists then - if inStr(ImportFileList(i),"sw40") = false then - QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" - end if - SecurityWarning.Cancel - end if - Sleep 1 - - Kontext "AlienWarning" - if AlienWarning.Exists then - AlienWarning.Ok - printlog "- Alien warning passed" - end if - - ' HTML-File can't be exported as odf this way - if GetExtention(ImportFileList(i)) <> "html" then - - sExportFile = WorkDirectory & "ExportedFile" & i & ".odf" - Printlog "- Save as : " & ConvertPath ( sExportFile ) - if hFileSaveAsWithFilterKill (sExportFile, "writer8") = true then - printlog "- done" - printlog "- close file" - Call hCloseDocument - - Printlog "- Open previous saved file" - Call hFileOpenWithFilter (sExportFile, "writer8") - printlog "- done" - ' Check for macro alert - Kontext "SecurityWarning" - if SecurityWarning.Exists then - if inStr(ImportFileList(i),"sw40") = false then - QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" - end if - SecurityWarning.Cancel - end if - Sleep 1 - else - Warnlog "Unable to save file: " & sExportFile - end if - else - printlog "- HTML-file is not exported this way" - end if - - printlog "- Close all open files." - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - endif + For i = 1 to listCount(ImportFileList()) + printlog "- " & i & ". load: " & ImportFileList(i) + sExportFile = ImportFileList(i) + if GetExtention ( sExportFile ) = "psw" then + QAErrorlog "#i102221#Pocket Word filter puts General I/O Error" + else + hFileOpenLocally( ImportFileList(i) ) + printlog "- done" + + Kontext "TextImport" + if TextImport.Exists then + TextImport.Ok + printlog "- Text import dialog passed" + end if + + Kontext "Filterauswahl" + if Filterauswahl.Exists then + Filterauswahl.Cancel + printlog "- Filterdialog passed" + end if + + Kontext "AsciiFilterOptionen" + if AsciiFilterOptionen.Exists then + AsciiFilterOptionen.Ok + printlog "- ASCII-Filter dialog passed" + end if + + Kontext "SecurityWarning" + if SecurityWarning.Exists(3) then + SecurityWarning.Ok + printlog "- Security warning passed" + end if + + Kontext "DocumentWriter" + if DocumentWriter.Exists(3) then + Do until DocumentWriter.StatusIsProgress = false + wait 500 + Loop + else + Kontext "DocumentCalc" + if DocumentCalc.Exists(3) then + Do until DocumentCalc.StatusIsProgress = false + wait 500 + Loop + else + Warnlog "Neither DocumentWriter or DocumentCalc existed? Some other dialogue in focus?" + end if + end if + + ' Check for macro alert + Kontext "SecurityWarning" + if SecurityWarning.Exists then + if inStr(ImportFileList(i),"sw40") = false then + QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" + end if + SecurityWarning.Cancel + end if + Sleep 1 + + Kontext "AlienWarning" + if AlienWarning.Exists then + AlienWarning.Ok + printlog "- Alien warning passed" + end if + + ' HTML-File can't be exported as odf this way + if GetExtention(ImportFileList(i)) <> "html" then + + sExportFile = WorkDirectory & "ExportedFile" & i & ".odf" + Printlog "- Save as : " & ConvertPath ( sExportFile ) + if hFileSaveAsWithFilterKill (sExportFile, "writer8") = true then + printlog "- done" + printlog "- close file" + Call hCloseDocument + + Printlog "- Open previous saved file" + Call hFileOpenWithFilter (sExportFile, "writer8") + printlog "- done" + ' Check for macro alert + Kontext "SecurityWarning" + if SecurityWarning.Exists then + if inStr(ImportFileList(i),"sw40") = false then + QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" + end if + SecurityWarning.Cancel + end if + Sleep 1 + else + Warnlog "Unable to save file: " & sExportFile + end if + else + printlog "- HTML-file is not exported this way" + end if + + printlog "- Close all open files." + hFileCloseAll() + endif next i 'File endcase @@ -181,11 +176,11 @@ endcase testcase tExportAllReadableFormatsIntoThemselves - if iSprache <> 1 then - QAErrorlog "#100970#test only support english language" - goto endsub - end if - + if iSprache <> 1 then + QAErrorlog "#100970#test only support english language" + goto endsub + end if + Dim AvailableFilters( 35 ) as String Dim SavedCorrectly as Boolean Dim ImportFileList ( 300 ) as String @@ -217,154 +212,152 @@ testcase tExportAllReadableFormatsIntoThemselves For iCurrentFileIndex = 7 to 7 select case iCurrentFileIndex - case 1 : sCurrentFile = "xml2.odt" - sCurrentFilter = "writer8" - case 2 : sCurrentFile = "wpsfile.wps" - sCurrentFilter = "Text (encoded)" - case 3 : sCurrentFile = "dostext.txt" - sCurrentFilter = "Text (encoded)" - case 4 : sCurrentFile = "sw30.sdw" - sCurrentFilter = "StarWriter 3.0" - case 5 : sCurrentFile = "sw50.vor" - sCurrentFilter = "StarWriter 5.0 Vorlage/Template" - case 6 : sCurrentFile = "sw31.sdw" - sCurrentFilter = "StarWriter 3.0" - case 7 : sCurrentFile = "sw31.vor" - sCurrentFilter = "StarWriter 3.0 Vorlage/Template" - case 8 : sCurrentFile = "sw40.sdw" - sCurrentFilter = "StarWriter 4.0" - case 9 : sCurrentFile = "sw40_sp2.vor" - sCurrentFilter = "StarWriter 4.0 Vorlage/Template" - case 10 : sCurrentFile = "sw50.sdw" - sCurrentFilter = "StarWriter 5.0" - case 11 : sCurrentFile = "html.html" - sCurrentFilter = "HTML (StarWriter)" - case 12 : sCurrentFile = "rtf.rtf" - sCurrentFilter = "Rich Text Format" - case 13 : sCurrentFile = "sw60.sxw" - sCurrentFilter = "StarOffice XML (Writer)" - case 14 : sCurrentFile = "winw97.doc" - sCurrentFilter = "MS Word 97" - case 15 : sCurrentFile = "winword6.doc" - sCurrentFilter = "MS Word 95" - case 16 : sCurrentFile = "wintext.txt" - sCurrentFilter = "Text (encoded)" -' case 17 : sCurrentFile = "pocketword.psw" -' sCurrentFilter = "PocketWord File" -' TODO: 18-23 not applyable. Can be opened, but saving in the format is not supported. -' case 18 : sCurrentFile = "unixtext.txt" -' sCurrentFilter = "Text" -' case 19 : sCurrentFile = "sw2.sdw" -' sCurrentFilter = "StarWriter 2.0" -' case 20 : sCurrentFile = "amipro3.sam" -' sCurrentFilter = "Ami Pro 1.x-3.1 (W4W)" -' case 21 : sCurrentFile = "mactext.txt" -' sCurrentFilter = "Mac Write 4.x 5.0 (W4W)" -' case 22 : sCurrentFile = "sw1.sdw" -' sCurrentFilter = "StarWriter 1.0" -' case 23 : sCurrentFile = "swdoc.txt" -' sCurrentFilter = "Text (encoded) (StarWriter/GlobalDocument)" -' case 24 : sCurrentFile = "hangul.hwp" -' sCurrentFilter = "writer_MIZI_Hwp_97" + case 1 : sCurrentFile = "xml2.odt" + sCurrentFilter = "writer8" + case 2 : sCurrentFile = "wpsfile.wps" + sCurrentFilter = "Text (encoded)" + case 3 : sCurrentFile = "dostext.txt" + sCurrentFilter = "Text (encoded)" + case 4 : sCurrentFile = "sw30.sdw" + sCurrentFilter = "StarWriter 3.0" + case 5 : sCurrentFile = "sw50.vor" + sCurrentFilter = "StarWriter 5.0 Vorlage/Template" + case 6 : sCurrentFile = "sw31.sdw" + sCurrentFilter = "StarWriter 3.0" + case 7 : sCurrentFile = "sw31.vor" + sCurrentFilter = "StarWriter 3.0 Vorlage/Template" + case 8 : sCurrentFile = "sw40.sdw" + sCurrentFilter = "StarWriter 4.0" + case 9 : sCurrentFile = "sw40_sp2.vor" + sCurrentFilter = "StarWriter 4.0 Vorlage/Template" + case 10 : sCurrentFile = "sw50.sdw" + sCurrentFilter = "StarWriter 5.0" + case 11 : sCurrentFile = "html.html" + sCurrentFilter = "HTML (StarWriter)" + case 12 : sCurrentFile = "rtf.rtf" + sCurrentFilter = "Rich Text Format" + case 13 : sCurrentFile = "sw60.sxw" + sCurrentFilter = "StarOffice XML (Writer)" + case 14 : sCurrentFile = "winw97.doc" + sCurrentFilter = "MS Word 97" + case 15 : sCurrentFile = "winword6.doc" + sCurrentFilter = "MS Word 95" + case 16 : sCurrentFile = "wintext.txt" + sCurrentFilter = "Text (encoded)" + ' case 17 : sCurrentFile = "pocketword.psw" + ' sCurrentFilter = "PocketWord File" + ' TODO: 18-23 not applyable. Can be opened, but saving in the format is not supported. + ' case 18 : sCurrentFile = "unixtext.txt" + ' sCurrentFilter = "Text" + ' case 19 : sCurrentFile = "sw2.sdw" + ' sCurrentFilter = "StarWriter 2.0" + ' case 20 : sCurrentFile = "amipro3.sam" + ' sCurrentFilter = "Ami Pro 1.x-3.1 (W4W)" + ' case 21 : sCurrentFile = "mactext.txt" + ' sCurrentFilter = "Mac Write 4.x 5.0 (W4W)" + ' case 22 : sCurrentFile = "sw1.sdw" + ' sCurrentFilter = "StarWriter 1.0" + ' case 23 : sCurrentFile = "swdoc.txt" + ' sCurrentFilter = "Text (encoded) (StarWriter/GlobalDocument)" + ' case 24 : sCurrentFile = "hangul.hwp" + ' sCurrentFilter = "writer_MIZI_Hwp_97" end select sLoadFile = sImportDir & sCurrentFile - sSaveFile = sWorkDirectory & "filenr_" & iCurrentFileIndex & "." & GetExtention ( sCurrentFile ) + sSaveFile = sWorkDirectory & "filenr_" & iCurrentFileIndex & "." & GetExtention ( sCurrentFile ) printlog "- Export of File nr " + iCurrentFileIndex + " started" printlog " - Save file: " & sLoadFile printlog " - to file: " & sSaveFile - ' Load In-file - Call hFileOpenWithFilter(sLoadFile, sCurrentFilter, false) - - kontext "active" - if active.exists(2) then - active.ok - warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." - end if - - Kontext "TextImport" - if TextImport.Exists then - TextImport.Ok - end if - - Kontext "Filterauswahl" - if Filterauswahl.Exists then - Filterauswahl.Cancel - end if - - Kontext "AsciiFilterOptionen" - if AsciiFilterOptionen.Exists then AsciiFilterOptionen.Ok - Kontext "SecurityWarning" - if SecurityWarning.Exists(3) then SecurityWarning.Ok - Kontext "DocumentWriter" - if DocumentWriter.Exists(3) then - Do until DocumentWriter.StatusIsProgress = false - wait 500 - Loop - else - Kontext "DocumentCalc" - if DocumentCalc.Exists(3) then - Do until DocumentCalc.StatusIsProgress = false - wait 500 - Loop - else - Warnlog "Neither DocumentWriter or DocumentCalc existed? Some other dialogue in focus?" - end if - end if - - ' Check for macro alert - Kontext "SecurityWarning" - if SecurityWarning.Exists then - if inStr(currentfile,"sw40") = false then - QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" - end if - SecurityWarning.Cancel - end if - Sleep 1 - - Kontext "AlienWarning" - if AlienWarning.Exists then AlienWarning.Ok - - ' Save Out-file - Call hFileSaveAsWithFilterKill(sSaveFile, sCurrentFilter) - - kontext "active" - if active.exists(2) then - active.ok - warnlog "Error saving file " + sLoadFile + " as " + sSaveFile + "." - goto Cleanup - end if - - ' Load Out-file again - Call hFileOpenWithFilter(sSaveFile, sCurrentFilter, false) - - ' Check for macro alert - Kontext "SecurityWarning" - if SecurityWarning.Exists then - if inStr(currentfile,"sw40") > 0 then - QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" - end if - SecurityWarning.Cancel - end if - Sleep 1 + ' Load In-file + Call hFileOpenWithFilter(sLoadFile, sCurrentFilter, false) + + kontext "active" + if active.exists(2) then + active.ok + warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." + end if + + Kontext "TextImport" + if TextImport.Exists then + TextImport.Ok + end if + + Kontext "Filterauswahl" + if Filterauswahl.Exists then + Filterauswahl.Cancel + end if + + Kontext "AsciiFilterOptionen" + if AsciiFilterOptionen.Exists then AsciiFilterOptionen.Ok + Kontext "SecurityWarning" + if SecurityWarning.Exists(3) then SecurityWarning.Ok + Kontext "DocumentWriter" + if DocumentWriter.Exists(3) then + Do until DocumentWriter.StatusIsProgress = false + wait 500 + Loop + else + Kontext "DocumentCalc" + if DocumentCalc.Exists(3) then + Do until DocumentCalc.StatusIsProgress = false + wait 500 + Loop + else + Warnlog "Neither DocumentWriter or DocumentCalc existed? Some other dialogue in focus?" + end if + end if + + ' Check for macro alert + Kontext "SecurityWarning" + if SecurityWarning.Exists then + if inStr(currentfile,"sw40") = false then + QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" + end if + SecurityWarning.Cancel + end if + Sleep 1 + + Kontext "AlienWarning" + if AlienWarning.Exists then AlienWarning.Ok + + ' Save Out-file + Call hFileSaveAsWithFilterKill(sSaveFile, sCurrentFilter) + + kontext "active" + if active.exists(2) then + active.ok + warnlog "Error saving file " + sLoadFile + " as " + sSaveFile + "." + goto Cleanup + end if + + ' Load Out-file again + Call hFileOpenWithFilter(sSaveFile, sCurrentFilter, false) + + ' Check for macro alert + Kontext "SecurityWarning" + if SecurityWarning.Exists then + if inStr(currentfile,"sw40") > 0 then + QAErrorlog "Macro-Security Warning is up though document should have no macro! Macro disabled" + end if + SecurityWarning.Cancel + end if + Sleep 1 Cleanup: kontext "active" - if active.exists(2) then + if active.exists(2) then active.ok Select Case iCurrentFileIndex - case 7: QAErrorlog "#i106758#Saving StarWriter 3 template corrupts file" - case else - warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." + case 7: QAErrorlog "#i106758#Saving StarWriter 3 template corrupts file" + case else + warnlog "Error with file " + sLoadFile + " as " + sSaveFile + "." end select end if printlog " Close all open files." - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop + hFileCloseAll() printlog " - File nr " + iCurrentFileIndex + " completed." Next iCurrentFileIndex @@ -375,10 +368,10 @@ endcase testcase tExportTop5FormatsIntoTop5 - if iSprache <> 1 then - QAErrorlog "#100970#test only support english language" - goto endsub - end if + if iSprache <> 1 then + QAErrorlog "#100970#test only support english language" + goto endsub + end if Dim ExportFileList(300) as String Dim sWorkDirectory as String @@ -410,76 +403,66 @@ testcase tExportTop5FormatsIntoTop5 '// Start of the LOAD-Loop For iCurrentLoadFileIndex = 1 to 4 Select case iCurrentLoadFileIndex - case 1 : sCurrentLoadFile = sImportDir & "xml2.odt" - sCurrentLoadFilter = "writer8" - case 2 : sCurrentLoadFile = sImportDir & "sw60.sxw" - sCurrentLoadFilter = "StarOffice XML (Writer)" - case 3 : sCurrentLoadFile = sImportDir & "winw97.doc" - sCurrentLoadFilter = "MS Word 97" - case 4 : sCurrentLoadFile = sImportDir & "rtf.rtf" - sCurrentLoadFilter = "Rich Text Format" - case 5 : sCurrentLoadFile = sImportDir & "html.html" - sCurrentLoadFilter = "HTML (StarWriter)" + case 1 : sCurrentLoadFile = sImportDir & "xml2.odt" + sCurrentLoadFilter = "writer8" + case 2 : sCurrentLoadFile = sImportDir & "sw60.sxw" + sCurrentLoadFilter = "StarOffice XML (Writer)" + case 3 : sCurrentLoadFile = sImportDir & "winw97.doc" + sCurrentLoadFilter = "MS Word 97" + case 4 : sCurrentLoadFile = sImportDir & "rtf.rtf" + sCurrentLoadFilter = "Rich Text Format" + case 5 : sCurrentLoadFile = sImportDir & "html.html" + sCurrentLoadFilter = "HTML (StarWriter)" End select printlog "- Export of File nr " + iCurrentLoadFileIndex + " started." printlog " - Save file: " & sCurrentLoadFile - + '/// Here comes the SAVE-Loop For iCurrentSaveFileIndex = 1 to 5 if hFileOpenWithFilter((sCurrentLoadFile), sCurrentLoadFilter) = true then - Select case iCurrentSaveFileIndex - case 1 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s1.odt" - sCurrentSaveFilter = "writer8" - case 2 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s2.sxw" - sCurrentSaveFilter = "StarOffice XML (Writer)" - case 3 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s3.doc" - sCurrentSaveFilter = "MS Word 97" - case 4 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s4.rtf" - sCurrentSaveFilter = "Rich Text Format" - case 5 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s5.html" - sCurrentSaveFilter = "HTML (StarWriter)" - End select - - printlog " - " & iCurrentSaveFileIndex & ". to file: " & sCurrentSaveFile - if hFileSaveAsWithFilterKill(sCurrentSaveFile, sCurrentSaveFilter) = true then - printlog " - close all open documents" - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - printlog " - check if file exists" - if FileExists (sCurrentSaveFile) then - printlog " - success" - printlog " - reload previously saved file" - if hFileOpenWithFilter(sCurrentSaveFile, sCurrentSaveFilter) = true then - printlog " - success" - else - Warnlog "error loading file: " & sCurrentSaveFile - end if - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - else - Warnlog "Saved file doesn't exist" - 'Close the opened file - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - end if - else - Warnlog "Error saving file: " & sCurrentLoadFile - 'Close the opened file - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - end if - else - Warnlog "Error loading file: " & sCurrentLoadFile - 'Close the opened file - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop - end if + Select case iCurrentSaveFileIndex + case 1 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s1.odt" + sCurrentSaveFilter = "writer8" + case 2 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s2.sxw" + sCurrentSaveFilter = "StarOffice XML (Writer)" + case 3 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s3.doc" + sCurrentSaveFilter = "MS Word 97" + case 4 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s4.rtf" + sCurrentSaveFilter = "Rich Text Format" + case 5 : sCurrentSaveFile = sWorkDirectory & "SavedFile_l" + iCurrentLoadFileIndex + "_s5.html" + sCurrentSaveFilter = "HTML (StarWriter)" + End select + + printlog " - " & iCurrentSaveFileIndex & ". to file: " & sCurrentSaveFile + if hFileSaveAsWithFilterKill(sCurrentSaveFile, sCurrentSaveFilter) = true then + printlog " - close all open documents" + hFileCloseAll() + printlog " - check if file exists" + if FileExists (sCurrentSaveFile) then + printlog " - success" + printlog " - reload previously saved file" + if hFileOpenWithFilter(sCurrentSaveFile, sCurrentSaveFilter) = true then + printlog " - success" + else + Warnlog "error loading file: " & sCurrentSaveFile + end if + hFileCloseAll() + else + Warnlog "Saved file doesn't exist" + 'Close the opened file + hFileCloseAll() + end if + else + Warnlog "Error saving file: " & sCurrentLoadFile + 'Close the opened file + hFileCloseAll() + end if + else + Warnlog "Error loading file: " & sCurrentLoadFile + 'Close the opened file + hFileCloseAll() + end if Next iCurrentSaveFileIndex printlog "- Export of File nr " + iCurrentLoadFileIndex + " completed." -- cgit From 6347f601e99733808e2d256ec033083b0ac6eeee Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 10:30:27 +0200 Subject: automationdev300m87: #i112208# - Added a ConvertPath() to hFileOpenLocally() as it might happen that the path is passed in wrong format. --- testautomation/global/tools/includes/required/t_files.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index eb1b666fea27..84dc37b9513b 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -611,6 +611,8 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean dim sTargetPath as string + sSourcePath = convertpath( sSourcePath ) + ' If the source file does not exist we quit if ( not FileExists( sSourcePath ) ) then warnlog( CFN & "Source path/file does not exist: " & sSourcePath ) -- cgit From 139b3696733a1e1bd6b66c32de392331627a63d6 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 13:04:51 +0200 Subject: automationdev300m87: #i112208# - Modified tDocumentFilename and tDocumentTemplate to make them compatible with hFileOpenLocally(). Need to verify on Windows though, Linux is good. --- .../writer/optional/includes/fields/w_fields2.inc | 141 ++++++++++----------- 1 file changed, 70 insertions(+), 71 deletions(-) diff --git a/testautomation/writer/optional/includes/fields/w_fields2.inc b/testautomation/writer/optional/includes/fields/w_fields2.inc index 6c4b0eef2141..168fed204ebe 100644 --- a/testautomation/writer/optional/includes/fields/w_fields2.inc +++ b/testautomation/writer/optional/includes/fields/w_fields2.inc @@ -320,7 +320,7 @@ testcase tDocumentChapter '/// Open test file chapterTest.sxw hFileOpenLocally( sTestFile ) - + Call wTypeKeys "" @@ -357,12 +357,12 @@ endcase testcase tDocumentDate Dim sDate as String - + printlog "Insert/Fields/Other/Document / Date" '/// Insert/Fields/Other/Document / Date - + Call hNewDocument - + '/// Insert/Fields/Other/Document / Date '/// Check if the insertion is correct Call fInsertFieldsOther("TabDokumentFeldbefehle") @@ -371,14 +371,14 @@ testcase tDocumentDate Einfuegen.Click Kontext "TabDokumentFeldbefehle" TabDokumentFeldbefehle.Close - + Call wTypeKeys "" EditCopy Sleep 1 if GetClipboard = "" then Warnlog "Field returns an empty string" end if - + Call hCloseDocument endcase @@ -386,56 +386,57 @@ endcase '----------------------------------------------------------------- testcase tDocumentFilename - if bAsianLan = true then - QaErrorLog "No testing with Asian language. Aborting." - goto endsub - end if - - Dim sTestFile as String - Dim sFilename(4) as String - Dim i as Integer - - sTestFile = gTesttoolpath & "writer\optional\input\fields\pageTest.sxw" - - sFilename(0) = "pageTest.sxw" - sFilename(1) = "pageTest" - sFilename(2) = Convertpath( gOfficepath + "user\work\" ) - sFilename(3) = sTestFile - - printlog "Insert/Fields/Other/Document / File name" - - Call hNewDocument - - '/// Open test file pageTest.sxw - hFileOpenLocally( sTestFile ) - - Call wTypeKeys "" - Call wTypeKeys "" - - printlog "Insert/Fields/Other/Document / File name" - printlog "Insert File name, File name without extension , Path , Path/File name" - printlog "Check if the insertion is correct" - Call fInsertFieldsOther("TabDokumentFeldbefehle") - Feldtyp.Select fGetType("File name") - for i = 0 to 3 - Kontext "TabDokumentFeldbefehle" - Formatliste.Select i+1 - Sleep 1 - Einfuegen.Click - sleep 1 - Call wTypeKeys "" - Sleep 2 - Call wTypeKeys "" 'HOME - Sleep 1 - if fGetFieldContent() <> sFilename(i) then - Warnlog i &" - Should get " & sFilename(i) & " but get " & fGetFieldContent() - end if - Call wTypeKeys "" - next i - Kontext "TabDokumentFeldbefehle" - TabDokumentFeldbefehle.Close - - Call hCloseDocument + + if ( bAsianLan ) then + QaErrorLog "No testing with Asian language. Aborting." + goto endsub + end if + + Dim sTestFile as String + Dim sFilename(4) as String + Dim i as Integer + + sTestFile = convertpath( gTesttoolPath & "writer\optional\input\fields\pageTest.sxw" ) + + sFilename(0) = "pageTest.sxw" + sFilename(1) = "pageTest" + sFilename(2) = hGetWorkPath() + sFilename(3) = hFileGetLocalPath( sTestFile ) + + printlog "Insert/Fields/Other/Document / File name" + + Call hNewDocument + + '/// Open test file pageTest.sxw + hFileOpenLocally( sTestFile ) + + Call wTypeKeys "" + Call wTypeKeys "" + + printlog "Insert/Fields/Other/Document / File name" + printlog "Insert File name, File name without extension , Path , Path/File name" + printlog "Check if the insertion is correct" + Call fInsertFieldsOther("TabDokumentFeldbefehle") + Feldtyp.Select fGetType("File name") + for i = 0 to 3 + Kontext "TabDokumentFeldbefehle" + Formatliste.Select i+1 + Sleep 1 + Einfuegen.Click + sleep 1 + Call wTypeKeys "" + Sleep 2 + Call wTypeKeys "" 'HOME + Sleep 1 + if fGetFieldContent() <> sFilename(i) then + Warnlog i &" - Should get " & sFilename(i) & " but get " & fGetFieldContent() + end if + Call wTypeKeys "" + next i + Kontext "TabDokumentFeldbefehle" + TabDokumentFeldbefehle.Close + + Call hCloseDocument endcase @@ -462,7 +463,7 @@ testcase tDocumentPage '/// Open test file pageTest.sxw which includes 3 pages hFileOpenLocally( sTestFile ) - + '/// Go to the 2nd page Call wTypeKeys "" @@ -915,25 +916,25 @@ testcase tDocumentTemplate Dim sFormat() as String Dim sResult(6) as String Dim i as Integer - + sLanguage = fGetDirLanguage() - sTestFile = gTesttoolpath + "writer\optional\input\fields\diploma.ott" - - sResult(0) = fGetCateGory() + sTestFile = convertpath( gTesttoolpath + "writer\optional\input\fields\diploma.ott" ) + + sResult(0) = fGetCategory() sResult(1) = "diploma.ott" sResult(2) = "diploma" - sResult(3) = Convertpath (gOfficepath + "user\work") - sResult(4) = sTestFile + sResult(3) = convertpath( gOfficePath & "user/work" ) + sResult(4) = hGetWorkFile( sResult( 1 ) ) sResult(5) = fGetStyle() - + printlog "Insert/Fields/Other/Document / Template" '/// Insert/Fields/Other/Document / Template - + '/// Open test file diploma.ott hFileOpenLocally( sTestFile ) - + Call wTypeKeys "" - + '/// Insert/Fields/Other/Document / Template '/// Insert Category , File name , File name without extension , '/// + Path , Path/File name , Style @@ -963,10 +964,8 @@ testcase tDocumentTemplate next i Kontext "TabDokumentFeldbefehle" TabDokumentFeldbefehle.Close - - Do Until GetDocumentCount = 0 - Call hCloseDocument - Loop + + hFileCloseAll() endcase '----------------------------------------------------------------- -- cgit From 9e7c84f288df60da40e6711c7aea6d3e83e363b9 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 13:34:29 +0200 Subject: automationdev300m87: #i112208# - Supplied missing variable --- testautomation/writer/optional/includes/fields/w_fields4.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/testautomation/writer/optional/includes/fields/w_fields4.inc b/testautomation/writer/optional/includes/fields/w_fields4.inc index 331e8753dc1b..315c6b0f96d3 100644 --- a/testautomation/writer/optional/includes/fields/w_fields4.inc +++ b/testautomation/writer/optional/includes/fields/w_fields4.inc @@ -340,6 +340,7 @@ testcase tDocInformationCreated Dim sLastName1 as String Dim sVarResult(3) as String Dim sFixResult(3) as String + dim sTestFile as string Dim i as Integer sFirstName1 = "Test1" : sLastName1 = "Test2" -- cgit From 03767ada715e519b673b3ff5f70c9762001212b4 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 14:23:25 +0200 Subject: automationdev300m87: #i112208# - Moved static filename into a variable, handled Picture dialog --- .../optional/includes/insertgraphic/w_insertgraphic1.inc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc index fddd341bd9eb..4e670f290f13 100644 --- a/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc +++ b/testautomation/writer/optional/includes/insertgraphic/w_insertgraphic1.inc @@ -520,8 +520,10 @@ endcase testcase tInsertGraphic_10 Dim sTestFile as String + dim sOutFile as string sTestFile = ConvertPath(gOfficepath + "user\work\tInsertGraphic_5.sxw") + sOutFile = gOfficepath + "user\work\tInsertGraphic_5.odt" PrintLog "- Insert linked graphics and break the links via Menu Edit - Link" '/// Insert linked graphics and break the links via Menu Edit - Link @@ -636,13 +638,13 @@ testcase tInsertGraphic_10 PrintLog "- Save and Reload the file" '/// Save the file and close the file - Call hFileSaveAsWithFilterKill(gOfficepath + "user\work\tInsertGraphic_5.odt", "writer8") + Call hFileSaveAsWithFilterKill( sOutFile, "writer8") sleep(2) Call hCloseDocument sleep(2) '/// Reload the file - hFileOpen( gOfficepath & "user\work\tInsertGraphic_5.odt") + hFileOpen( sOutFile ) sleep(2) @@ -652,6 +654,10 @@ testcase tInsertGraphic_10 sleep(1) if fFormatGraphic("TabZusaetze") = false then Warnlog "#i46300#linked JPEG pictures will disappear when doc is modified." + + kontext "TabZusatze" + if ( TabZusaetze.exists() ) then TabZusaetze.close() + kontext "DocumentWriter" Call hCloseDocument goto endsub end if -- cgit From c3541afaf0556eeff0ca9c6b96bae2e8db473757 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 14:28:06 +0200 Subject: automationdev300m87: #i112208# - Reverted hCloseDocument() to its old form. The extensions are no longer required --- .../global/tools/includes/required/t_doc1.inc | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_doc1.inc b/testautomation/global/tools/includes/required/t_doc1.inc index 9ddbc2bb42ad..bf9be1029c0e 100755 --- a/testautomation/global/tools/includes/required/t_doc1.inc +++ b/testautomation/global/tools/includes/required/t_doc1.inc @@ -243,35 +243,17 @@ end function ' function hCloseDocument() - '/// Trigger FileClose slot' hUseAsyncSlot( "FileClose") - '/// Accept to lose changes' Kontext "Active" if ( Active.Exists( 2 ) ) then try Active.No catch - endcatch - end if - - if ( Active.exists() ) then - try Active.click( 202 ) - catch - endcatch - endif - - if ( Active.exists() ) then - try - warnlog( "hCloseDocument: Unexpected dialog: " & Active.getText() ) - Active.ok() - catch - Active.yes() endcatch - endif + end if - '/// Wait for FileClose to complete' WaitSlot( 2000 ) end function -- cgit From f3ba020872862f3900cfedfaef3225c5f418bcd8 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 15 Sep 2010 14:39:32 +0200 Subject: automationdev300m87: #i112208# - Cosmetics --- .../optional/includes/sorting/w_sorting1.inc | 23 +++------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/testautomation/writer/optional/includes/sorting/w_sorting1.inc b/testautomation/writer/optional/includes/sorting/w_sorting1.inc index ae6fae7345d7..70fcbab3f26f 100644 --- a/testautomation/writer/optional/includes/sorting/w_sorting1.inc +++ b/testautomation/writer/optional/includes/sorting/w_sorting1.inc @@ -28,15 +28,6 @@ '* '* short description : Sorting functions in Writer '* -'************************************************************************ -'* -' #1 tToolsSort1 ' Text in one Column and 1 Key -' #1 tToolsSort2 ' Numbers in 1 Column and 1 Key -' #1 tToolsSort3 ' Text in several Columns and 3 Keys -' #1 tToolsSort4 ' Table with Header ( Text and Numbers mixed ) -' #1 tToolsSort5 ' Table without Header ( Text and Numbers mixed ) -' #1 tToolsSort6 ' Copy sorted table in another table -'* '\*********************************************************************** sub w_sorting @@ -236,18 +227,16 @@ testcase tToolsSort3 PrintLog "- Tools / Sorting text in several lines" for i=1 to 3 select case i - case 1: Printlog " - Seperator is a tabulator" - case 2: Printlog " - Seperator is a semicolon" + case 1: Printlog " - Separator is a tabulator" + case 2: Printlog " - Separator is a semicolon" Trennzeichen = ";" - case 3: Printlog " - Seperator is a '|'" + case 3: Printlog " - Separator is a '|'" Trennzeichen = "|" end select if gApplication = "WRITER" then hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort2.odt" ) - else hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort2.odm" ) - end if if i <> 1 then TrennzeichenSetzen ( Trennzeichen ) @@ -320,10 +309,8 @@ testcase tToolsSort4 PrintLog "- Tools / Sorting in table with header" if gApplication = "WRITER" then hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) - else hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) - end if Call wTypeKeys "", 2 @@ -445,10 +432,8 @@ testcase tToolsSort5 PrintLog "- Tools / Sorting in table without header" if gApplication = "WRITER" then hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odt" ) - else hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort1.odm" ) - end if Call wNavigatorAuswahl (2, 2) @@ -575,10 +560,8 @@ testcase tToolsSort6 if gApplication = "WRITER" then hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort3.odt" ) - else hFileOpenLocally( gTesttoolPath + "writer\optional\input\sorting\sort3.odm" ) - end if Call wTypeKeys "", 2 -- cgit From e7f25f2f314bd861b46eb2fa04b5326cf9d0df60 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 16 Sep 2010 08:48:09 +0200 Subject: automationdev300m87: #i112208# - add try...catch and a warnlog. --- testautomation/global/tools/includes/required/t_doc1.inc | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_doc1.inc b/testautomation/global/tools/includes/required/t_doc1.inc index ff07554bca35..d754af06117c 100755 --- a/testautomation/global/tools/includes/required/t_doc1.inc +++ b/testautomation/global/tools/includes/required/t_doc1.inc @@ -357,6 +357,8 @@ end sub ' sub hTypeKeys ( OutputText , optional _iLoop as Integer ) + const CFN & "global::tools::includes::required::t_doc1.inc::hTypeKeys(): " + dim iRepeat as integer dim iLoop as integer dim oDocument as object @@ -371,10 +373,14 @@ sub hTypeKeys ( OutputText , optional _iLoop as Integer ) hSetDocumentContext() ' set kontext to current document type oDocument = hSetDocumentObject() ' Get the document object we want to write to - for iRepeat = 1 to iLoop - oDocument.TypeKeys( OutputText ) - wait( 200 ) - next iRepeat + try + for iRepeat = 1 to iLoop + oDocument.TypeKeys( OutputText ) + wait( 200 ) + next iRepeat + catch + warnlog( CFN & "Failed to send keystroke to given context" ) + endcatch end sub -- cgit From d410e2bd866b0e89858041dcf143ee3ce21b53bf Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 16 Sep 2010 10:58:11 +0200 Subject: automationdev300m87: #i112208# - Do not reuse existing local file, warn instead. --- testautomation/global/tools/includes/required/t_files.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index ef8df3f31312..749e4ec47e96 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -587,16 +587,16 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean ' Copy the file from anywhere to the local user directory if it does not ' exist. This behavior was discussed on IRC if ( FileExists( sTargetPath ) ) then - printlog( CFN & "Re-using existing local copy of workfile" ) + 'printlog( CFN & "Re-using existing local copy of workfile" ) + warnlog( CFN & "About to reuse existing file. Please check" ) else if ( GVERBOSE ) then printlog( CFN & "Copying file" ) printlog( CFN & "From: " & sSourcePath ) printlog( CFN & "To..: " & sTargetPath ) endif - FileCopy( sSourcePath, sTargetPath ) endif - + FileCopy( sSourcePath, sTargetPath ) ' This is a hook that allows to access the filename under which the file ' has been saved. Due to restrictive coding guidelines we cannot return ' the new filename. -- cgit From fe6eabe9ec169187c05b8f04b87212f3d211ee1f Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 16 Sep 2010 11:17:46 +0200 Subject: automationdev300m87: #i112208# - Fix one of my favorite & is not = typos. --- testautomation/global/tools/includes/required/t_doc1.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testautomation/global/tools/includes/required/t_doc1.inc b/testautomation/global/tools/includes/required/t_doc1.inc index d2f723c7ac08..0ee504c5432e 100755 --- a/testautomation/global/tools/includes/required/t_doc1.inc +++ b/testautomation/global/tools/includes/required/t_doc1.inc @@ -354,7 +354,7 @@ end sub ' sub hTypeKeys ( OutputText , optional _iLoop as Integer ) - const CFN & "global::tools::includes::required::t_doc1.inc::hTypeKeys(): " + const CFN = "global::tools::includes::required::t_doc1.inc::hTypeKeys(): " dim iRepeat as integer dim iLoop as integer -- cgit From f9b8934ca13e151c75c76482fb55449e0d7dcd17 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 16 Sep 2010 11:53:22 +0200 Subject: automationdev300m87: #i112208# - Put path into a variable, delete file before usage, removed unnecessary UCASE() statements --- .../graphics/optional/includes/global/g_tools.inc | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/g_tools.inc b/testautomation/graphics/optional/includes/global/g_tools.inc index 35b53c07c1cd..9dc207b481b9 100644 --- a/testautomation/graphics/optional/includes/global/g_tools.inc +++ b/testautomation/graphics/optional/includes/global/g_tools.inc @@ -29,11 +29,6 @@ '* '* short description : will be moved to autocorrection.bas/inc '* -'************************************************************************************** -' #1 tiToolsThesaurus -' #1 tiToolsHyphenation1 -' #1 tiToolsHyphenation2 -' #1 tToolsMacro '\************************************************************************************* ' sFile = gTesttoolpath + "graphics\required\input\silben_"+iSprache+sExt @@ -46,6 +41,7 @@ testcase tiToolsThesaurus Dim sAlternativeText as string Dim sExt as string Dim ZaehlerBedeutung + dim sWorkFile as string 'for normal text, the thesaurus is enabled, 'if the format->character->language of the word has a thesaurus @@ -113,7 +109,10 @@ testcase tiToolsThesaurus sExt = ".odp" endif - Call hFileOpenLocally(gTesttoolpath + "graphics\required\input\recht_" + iSprache + sExt) + sWorkFile = gTesttoolPath & "graphics\required\input\recht_" & iSprache & sExt + hFileDelete( sWorkFile ) + + Call hFileOpenLocally( sWorkFile ) Call hTextrahmenErstellen (sWord,20,20,50,30) sleep 1 @@ -164,9 +163,9 @@ testcase tiToolsThesaurus endif Thesaurus.OK - if(Ucase(gApplication) = "DRAW") then + if( gApplication = "DRAW" ) then Kontext "Draw" - elseif(Ucase(gApplication) = "IMPRESS") then + elseif( gApplication = "IMPRESS") then Kontext "Impress" else ' fallback warnlog "gApplication is wrong" -- cgit From 32ae66f4d352fc4b14e031f4233d2700f0e83b44 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 16 Sep 2010 11:56:19 +0200 Subject: automationdev300m87: #i112208# - Debugging test cases: Enabled debug output for hFileOpenLocally() by default --- testautomation/global/tools/includes/required/t_files.inc | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index 434d125f1c79..585aa3c75e5d 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -627,14 +627,13 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean ' exist. This behavior was discussed on IRC if ( FileExists( sTargetPath ) ) then 'printlog( CFN & "Re-using existing local copy of workfile" ) - warnlog( CFN & "About to reuse existing file. Please check" ) - else - if ( GVERBOSE ) then - printlog( CFN & "Copying file" ) - printlog( CFN & "From: " & sSourcePath ) - printlog( CFN & "To..: " & sTargetPath ) - endif + warnlog( CFN & "Target file exists, it has not been deleted by prior test" ) endif + + printlog( CFN & "Copying file" ) + printlog( CFN & "From: " & sSourcePath ) + printlog( CFN & "To..: " & sTargetPath ) + FileCopy( sSourcePath, sTargetPath ) ' Verify that the file has been created. return an empty string and warn -- cgit From 97547b76291f2b10045ce4c57b83672391a43db4 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Tue, 28 Sep 2010 13:16:08 +0200 Subject: automationdev300m87: #i112208# - And reverted last change - debug is off again. --- testautomation/global/tools/includes/required/t_files.inc | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index 585aa3c75e5d..65969e0b74a7 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -623,17 +623,20 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean ' Find out what the name of the target file is going to be sTargetPath = hFileGetLocalPath( sSourcePath ) ' The path + file - ' Copy the file from anywhere to the local user directory if it does not + ' For debugging purposes set global variable gVerbose to TRUE + if ( gVerbose ) then + printlog( CFN & "Copying file" ) + printlog( CFN & "From: " & sSourcePath ) + printlog( CFN & "To..: " & sTargetPath ) + endif + + ' Copy the file from anywhere to the local user directory if it does not ' exist. This behavior was discussed on IRC if ( FileExists( sTargetPath ) ) then 'printlog( CFN & "Re-using existing local copy of workfile" ) warnlog( CFN & "Target file exists, it has not been deleted by prior test" ) endif - printlog( CFN & "Copying file" ) - printlog( CFN & "From: " & sSourcePath ) - printlog( CFN & "To..: " & sTargetPath ) - FileCopy( sSourcePath, sTargetPath ) ' Verify that the file has been created. return an empty string and warn -- cgit From 5bac830087fc7f5657ef8b5b0e4e57dbf0768acd Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 30 Sep 2010 13:18:23 +0200 Subject: automationdev300m87: #i112208# - c_updt_filemenu.in used own code to do hFileOpenLocally(), replaced it (old code left outcommented). Added deletion of workfile at the end of the test. --- .../spreadsheet/required/includes/c_upd_filemenu.inc | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc b/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc index a2e3f5a70598..4cf87e0e226a 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc @@ -371,11 +371,15 @@ end if Printlog " Enter some text" Kontext "DocumentCalc" DocumentCalc.Typekeys "The first doc!" + Printlog " Copy Test File spreadsheet/required/input/recentdocument.ods locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\required\input\recentdocument.ods"),gOfficePath + ConvertPath("user/work/recentdocument.ods") - Printlog " Load local copied testfile recentdocument.ods" - sTestFile = convertpath(gOfficePath & "user/work/recentdocument.ods") - Call hFileOpen(sTestFile) + hFileOpenLocally( gTesttoolpath & "spreadsheet\required\input\recentdocument.ods" ) + sTestFile = gLastWorkFile ' get the new file location + + 'app.FileCopy convertpath(gTesttoolpath & "spreadsheet\required\input\recentdocument.ods"),gOfficePath + ConvertPath("user/work/recentdocument.ods") + 'Printlog " Load local copied testfile recentdocument.ods" + 'sTestFile = convertpath(gOfficePath & "user/work/recentdocument.ods") + 'Call hFileOpen(sTestFile) '/// Close the document. Printlog " Close the document." '/// Now an item in File / Recent Documents should exist @@ -412,6 +416,8 @@ end if '/// Close starting document Printlog " Close starting document" Call hCloseDocument + Printlog " Delete local copy of the workfile" + hFileDelete( sTestFile ) endcase '----------------------------------------------------------- -- cgit From 41f422bc53bfee4fe464db4f1ed8fc29b88f913d Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 14 Oct 2010 14:31:58 +0200 Subject: automationdev300m87: #i112208 - Gridcontrol test needs readonly file. There is another problem which prevents the test from running but this is not going to get fixed here. --- .../optional/includes/basic_gridcontrol.inc | 90 +++++++++++----------- 1 file changed, 46 insertions(+), 44 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/includes/basic_gridcontrol.inc diff --git a/testautomation/framework/optional/includes/basic_gridcontrol.inc b/testautomation/framework/optional/includes/basic_gridcontrol.inc old mode 100755 new mode 100644 index 181bd2aa9b1f..54bc9a0e1ae8 --- a/testautomation/framework/optional/includes/basic_gridcontrol.inc +++ b/testautomation/framework/optional/includes/basic_gridcontrol.inc @@ -38,9 +38,9 @@ testcase tGridcontrolLoad const FILE_NAME = "framework/optional/input/gridcontrol.odt" dim iPos as integer - + printlog( "Open the test document: " & FILE_NAME ) - call hFileOpen( gTestToolPath & FILE_NAME ) + call hFileOpenLocally( gTestToolPath & FILE_NAME ) printlog( "Open the dialog" ) ToolsMacrosRunMacro @@ -49,56 +49,58 @@ testcase tGridcontrolLoad Kontext "ScriptSelector" if ( ScriptSelector.exists( 10 ) ) then - printlog "Start the macro, that performs the test" - Kontext "GridControlDialogStarter" - ' FAILS IF DOCUMENT IS READONLY.... - ShowGridcontrol.typeKeys "" - Kontext "GridControlDialog" - if GridControlDialog.exists(5) then - for i=1 to gridcontrolcontrol.getcolumncount - for a=1 to gridcontrolcontrol.getrowcount - printlog " " + i + ":"+a+": '" + gridcontrolcontrol.getitemtype (i,a) + "' '" + gridcontrolcontrol.getitemtext (i,a) + "'" - next a - next i - gridcontrolcontrol.select 5 - - kontext - if active.exists(5) then - printlog active.gettext - active.ok - else - warnlog "No selection Event by .select" - endif + printlog "Start the macro, that performs the test" + Kontext "GridControlDialogStarter" + ' FAILS IF DOCUMENT IS READONLY.... + ShowGridcontrol.typeKeys "" + Kontext "GridControlDialog" + if GridControlDialog.exists(5) then + for i=1 to gridcontrolcontrol.getcolumncount + for a=1 to gridcontrolcontrol.getrowcount + printlog " " + i + ":"+a+": '" + gridcontrolcontrol.getitemtype (i,a) + "' '" + gridcontrolcontrol.getitemtext (i,a) + "'" + next a + next i + gridcontrolcontrol.select 5 - Kontext "GridControlDialog" - gridcontrolcontrol.typeKeys("") + kontext + if active.exists(5) then + printlog active.gettext + active.ok + else + warnlog "No selection Event by .select" + endif - kontext - if active.exists(5) then - printlog active.gettext - active.ok - else - warnlog "No selection event by .typeKeys " - endif - Kontext "GridControlDialog" - gridcontrolcontrol.typeKeys("") - kontext - if active.exists(5) then - printlog active.gettext - active.ok + Kontext "GridControlDialog" + gridcontrolcontrol.typeKeys("") + + kontext + if active.exists(5) then + printlog active.gettext + active.ok + else + warnlog "No selection event by .typeKeys " + endif + Kontext "GridControlDialog" + gridcontrolcontrol.typeKeys("") + kontext + if active.exists(5) then + printlog active.gettext + active.ok + else + warnlog "No selection event by .typeKeys " + endif + + Kontext "GridControlDialog" + GridControlDialog.close else - warnlog "No selection event by .typeKeys " + warnlog "Gridcontrol Dialog did not come up after pressing button" endif - Kontext "GridControlDialog" - GridControlDialog.close - else - warnlog "Gridcontrol Dialog did not come up after pressing button" endif - + printlog( "Test exit, cleanup" ) hFileCloseAll() - + endcase -- cgit From ee79952f71306a13e655fc0d4352c0e473d766bf Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 14 Oct 2010 15:28:07 +0200 Subject: automationdev300m87: #i112208 - security_incorrect_password.inc had invalid path, fixed --- .../framework/optional/includes/security_incorrect_password.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/includes/security_incorrect_password.inc diff --git a/testautomation/framework/optional/includes/security_incorrect_password.inc b/testautomation/framework/optional/includes/security_incorrect_password.inc old mode 100755 new mode 100644 index 8e6eb2deffee..9f8cfcb39d7d --- a/testautomation/framework/optional/includes/security_incorrect_password.inc +++ b/testautomation/framework/optional/includes/security_incorrect_password.inc @@ -66,8 +66,8 @@ testcase tIncorrectPassword( filetypeID as string ) printlog( "Check the password checkbox" ) Passwort.check() - printlog( "Name the file as " & workpath & WORKFILE ) - Dateiname.settext( workpath & WORKFILE ) + printlog( "Name the file as " & filepath ) + Dateiname.settext( filepath ) if ( filetypeID <> "current" ) then for iCurrentFilter = 1 to DateiTyp.getItemCount() @@ -108,7 +108,7 @@ testcase tIncorrectPassword( filetypeID as string ) endif printlog( "Load the file again" ) - hFileOpen( workpath & WORKFILE & suffix ) + hFileOpen( filepath ) if ( not hSecurityEnterPasswordOnLoad( PASSWORD_FALSE , false ) ) then warnlog( "Something went wrong while using the password dialog" ) endif @@ -121,7 +121,7 @@ testcase tIncorrectPassword( filetypeID as string ) endif printlog( "Delete the workfile" ) - hDeleteFile( workpath & WORKFILE & suffix ) + hDeleteFile( filepath ) else warnlog( "Unable to open file save dialog" ) endif -- cgit From 4489a573b1baccd6252d2be353ca034ed7f47f9f Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 14 Oct 2010 15:45:19 +0200 Subject: automationdev300m87: #i112208 - +1 module --- testautomation/framework/optional/includes/basic_shared_modules.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 testautomation/framework/optional/includes/basic_shared_modules.inc diff --git a/testautomation/framework/optional/includes/basic_shared_modules.inc b/testautomation/framework/optional/includes/basic_shared_modules.inc old mode 100755 new mode 100644 index 63241fec9d7d..497d69103bf6 --- a/testautomation/framework/optional/includes/basic_shared_modules.inc +++ b/testautomation/framework/optional/includes/basic_shared_modules.inc @@ -37,7 +37,7 @@ testcase tBasicSharedModules dim iObjectPosition as integer dim iLibraryCount as integer - const EXPECTED_LIBRARY_COUNT = 13 ' prebundled extensions add a library + const EXPECTED_LIBRARY_COUNT = 14 ' prebundled extensions add a library const EXPECTED_LIBRARY_COUNT_OOO = 12 hInitSingleDoc() -- cgit From ab0812674c5338b1e2f82696f1697cd965b8b209 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 14 Oct 2010 16:00:39 +0200 Subject: automationdev300m87: #i112208 - filter-fix --- .../optional/input/filternames/OpenOffice.org_Filternames_en-US.txt | 2 +- .../input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt | 2 +- .../optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt b/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt index 04ba1195f4d0..96b6293a5285 100755 --- a/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt +++ b/testautomation/framework/optional/input/filternames/OpenOffice.org_Filternames_en-US.txt @@ -52,7 +52,7 @@ StarCalc 3.0 - 5.0 (*.sdc) StarCalc 3.0 - 5.0 Templates (*.vor) StarCalc 1.0 (*.sdc) SYLK (*.slk) -Text CSV (*.csv;*.txt;*.xls) +Text CSV (*.csv;*.txt) HTML Document (OpenOffice.org Calc) (*.html;*.htm) Microsoft Excel 2007 Binary (*.xlsb) Microsoft Excel 2007 XML (*.xlsm;*.xlsx) diff --git a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt index bf0c1e00851e..b77b17a8fa2e 100644 --- a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt +++ b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_add_en-US.txt @@ -55,7 +55,7 @@ StarCalc 3.0 - 5.0 (*.sdc) StarCalc 3.0 - 5.0 Templates (*.vor) StarCalc 1.0 (*.sdc) SYLK (*.slk) -Text CSV (*.csv;*.txt;*.xls) +Text CSV (*.csv;*.txt) HTML Document (StarOffice Calc) (*.html;*.htm) Microsoft Excel 2007 Binary (*.xlsb) Microsoft Excel 2007 XML (*.xlsm;*.xlsx) diff --git a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt index 85d580c71554..827468d13f80 100644 --- a/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt +++ b/testautomation/framework/optional/input/filternames/Oracle_Open_Office_Filternames_en-US.txt @@ -53,7 +53,7 @@ StarCalc 3.0 - 5.0 (*.sdc) StarCalc 3.0 - 5.0 Templates (*.vor) StarCalc 1.0 (*.sdc) SYLK (*.slk) -Text CSV (*.csv;*.txt;*.xls) +Text CSV (*.csv;*.txt) HTML Document (StarOffice Calc) (*.html;*.htm) Microsoft Excel 2007 Binary (*.xlsb) Microsoft Excel 2007 XML (*.xlsm;*.xlsx) -- cgit From a4372d94cbec666ee0c59120e4cfead4cee34bd2 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Fri, 15 Oct 2010 08:38:10 +0200 Subject: automationdev300m87: #i112208 - help-fix --- .../Oracle_Open_Office_help_topics_en-US.txt | 21694 ++++++++++--------- 1 file changed, 10904 insertions(+), 10790 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt diff --git a/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt b/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt old mode 100755 new mode 100644 index 24c206de5308..0db04d4a09e3 --- a/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt +++ b/testautomation/framework/optional/input/help_browser/Oracle_Open_Office_help_topics_en-US.txt @@ -1,10708 +1,4 @@ -Oracle Open Office Math : 3D text creation -Oracle Open Office Math : abbreviation replacement -Oracle Open Office Math : absolute hyperlinks -Oracle Open Office Math : absolute saving of URLs -Oracle Open Office Math : absolute values -Oracle Open Office Math : accents -Oracle Open Office Math : accents -Oracle Open Office Math : accents;in Oracle Open Office Math -Oracle Open Office Math : Access databases (base) -Oracle Open Office Math : access rights for database tables (Base) -Oracle Open Office Math : accessibility -Oracle Open Office Math : accessibility;general shortcuts -Oracle Open Office Math : accessibility;options -Oracle Open Office Math : accessibility;Oracle Open Office assistive technology -Oracle Open Office Math : accessibility;Oracle Open Office features -Oracle Open Office Math : accessibility;Oracle Open Office Math shortcuts -Oracle Open Office Math : activating -Oracle Open Office Math : activating;context menus -Oracle Open Office Math : activating;Error Report Tool -Oracle Open Office Math : activating;extended help tips -Oracle Open Office Math : activating;plug-ins -Oracle Open Office Math : ActiveX control -Oracle Open Office Math : Adabas D databases (base) -Oracle Open Office Math : add-ons, see UNO components -Oracle Open Office Math : addition signs -Oracle Open Office Math : additional selection mode -Oracle Open Office Math : address books -Oracle Open Office Math : address books;LDAP server (Base) -Oracle Open Office Math : address books;registering -Oracle Open Office Math : address labels from databases -Oracle Open Office Math : ADO databases (Base) -Oracle Open Office Math : Agenda Wizard -Oracle Open Office Math : aging filter -Oracle Open Office Math : aligning -Oracle Open Office Math : aligning;cells -Oracle Open Office Math : aligning;characters in Oracle Open Office Math -Oracle Open Office Math : aligning;multi-line formulas -Oracle Open Office Math : aligning;objects -Oracle Open Office Math : aligning;paragraphs -Oracle Open Office Math : aligning;tables in text -Oracle Open Office Math : aligning;text objects -Oracle Open Office Math : aligning formulas -Oracle Open Office Math : alignment -Oracle Open Office Math : alignment;horizontally centered (Math) -Oracle Open Office Math : alignment;left (Math) -Oracle Open Office Math : alignment;right (Math) -Oracle Open Office Math : alternative fonts -Oracle Open Office Math : ampersand symbol, see also operators -Oracle Open Office Math : anchors -Oracle Open Office Math : anchors;changing -Oracle Open Office Math : anchors;displaying (Calc) -Oracle Open Office Math : anchors;types/positions for draw objects -Oracle Open Office Math : AND operator -Oracle Open Office Math : animations -Oracle Open Office Math : animations;accessibility options -Oracle Open Office Math : appearance options -Oracle Open Office Math : approximately equal to relation -Oracle Open Office Math : Arabic -Oracle Open Office Math : Arabic;entering text -Oracle Open Office Math : Arabic;language settings -Oracle Open Office Math : arc cosine function -Oracle Open Office Math : arc cotangent function -Oracle Open Office Math : arc sine function -Oracle Open Office Math : area hyperbolic cosine function -Oracle Open Office Math : area hyperbolic cotangent function -Oracle Open Office Math : area hyperbolic tangent function -Oracle Open Office Math : areas -Oracle Open Office Math : areas;bitmap patterns -Oracle Open Office Math : areas;hatched/dotted -Oracle Open Office Math : areas;shadows -Oracle Open Office Math : areas;slanting -Oracle Open Office Math : areas;styles -Oracle Open Office Math : areas;transparency -Oracle Open Office Math : arguments in command line -Oracle Open Office Math : arranging -Oracle Open Office Math : arranging;matrices -Oracle Open Office Math : arranging;objects -Oracle Open Office Math : arrows -Oracle Open Office Math : arrows;defining arrow heads -Oracle Open Office Math : arrows;defining arrow lines -Oracle Open Office Math : arrows;drawing in text -Oracle Open Office Math : arrows;symbols in Oracle Open Office Math -Oracle Open Office Math : ASCII -Oracle Open Office Math : ASCII;definition -Oracle Open Office Math : Asian languages -Oracle Open Office Math : Asian languages;enabling -Oracle Open Office Math : Asian Phonetic Guide -Oracle Open Office Math : Asian typography -Oracle Open Office Math : assigning scripts -Oracle Open Office Math : assistive technology in Oracle Open Office -Oracle Open Office Math : attaching toolbars -Oracle Open Office Math : attachments in e-mails -Oracle Open Office Math : attributes -Oracle Open Office Math : attributes;accents -Oracle Open Office Math : attributes;additional information -Oracle Open Office Math : attributes;changing defaults -Oracle Open Office Math : attributes;changing fonts -Oracle Open Office Math : attributes;changing in Oracle Open Office Math -Oracle Open Office Math : attributes;colored characters -Oracle Open Office Math : attributes;in Oracle Open Office Math -Oracle Open Office Math : attributes;list of -Oracle Open Office Math : audio -Oracle Open Office Math : auto reloading HTML documents -Oracle Open Office Math : AutoAbstract function for sending text to presentations -Oracle Open Office Math : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Math : AutoComplete function in text and list boxes -Oracle Open Office Math : AutoCorrect function -Oracle Open Office Math : AutoCorrect function;context menu -Oracle Open Office Math : AutoCorrect function;options -Oracle Open Office Math : AutoCorrect function;pictures and frames -Oracle Open Office Math : AutoCorrect function;quotes -Oracle Open Office Math : AutoCorrect function;replacement table -Oracle Open Office Math : AutoCorrect function;switching on and off in Calc -Oracle Open Office Math : AutoCorrect function;URL recognition -Oracle Open Office Math : AutoFormat function -Oracle Open Office Math : AutoFormat function;switching on and off -Oracle Open Office Math : automatic captions (Writer) -Oracle Open Office Math : automatic control focus -Oracle Open Office Math : automatic hyperlink formatting -Oracle Open Office Math : automatic line breaks -Oracle Open Office Math : automatic lines/borders in text -Oracle Open Office Math : automatic saving -Oracle Open Office Math : AutoPilots, see wizards -Oracle Open Office Math : AutoValue (Base) -Oracle Open Office Math : axes in charts -Oracle Open Office Math : axis-ellipsis -Oracle Open Office Math : back epsilon symbol -Oracle Open Office Math : backgrounds -Oracle Open Office Math : backgrounds;defining colors/pictures -Oracle Open Office Math : backgrounds;frames/sections/indexes -Oracle Open Office Math : backgrounds;inserting from Gallery -Oracle Open Office Math : backgrounds;printing -Oracle Open Office Math : backing window -Oracle Open Office Math : backslash division sign -Oracle Open Office Math : backups -Oracle Open Office Math : backups;automatic -Oracle Open Office Math : backups;documents -Oracle Open Office Math : Basic -Oracle Open Office Math : Basic;fonts for source display -Oracle Open Office Math : Basic;programming -Oracle Open Office Math : Basic;recording macros -Oracle Open Office Math : basic fonts -Oracle Open Office Math : Bézier curves -Oracle Open Office Math : Bézier curves;control points in presentations -Oracle Open Office Math : bi-directional writing -Oracle Open Office Math : binary operators -Oracle Open Office Math : binary operators -Oracle Open Office Math : binary operators;list of -Oracle Open Office Math : binding space -Oracle Open Office Math : binomials -Oracle Open Office Math : bitmaps -Oracle Open Office Math : bitmaps;inserting and editing -Oracle Open Office Math : bitmaps;off for faster printing -Oracle Open Office Math : bitmaps;patterns -Oracle Open Office Math : black and white printing -Oracle Open Office Math : black printing in Calc -Oracle Open Office Math : block selection mode -Oracle Open Office Math : bold -Oracle Open Office Math : bold;AutoFormat function -Oracle Open Office Math : bold;text -Oracle Open Office Math : bold attribute -Oracle Open Office Math : bookmarks -Oracle Open Office Math : bookmarks;Help -Oracle Open Office Math : Boolean operators -Oracle Open Office Math : borders -Oracle Open Office Math : borders;arranging -Oracle Open Office Math : borders;cells on screen (Calc) -Oracle Open Office Math : borders;for paragraphs -Oracle Open Office Math : borders;for tables -Oracle Open Office Math : borders;shadows -Oracle Open Office Math : borders;table boundaries (Writer) -Oracle Open Office Math : borders, see also frames -Oracle Open Office Math : bound fields -Oracle Open Office Math : bound fields;controls -Oracle Open Office Math : boundaries of tables (Writer) -Oracle Open Office Math : braces in Oracle Open Office Math -Oracle Open Office Math : brackets -Oracle Open Office Math : brackets;angle (Math) -Oracle Open Office Math : brackets;angle with operator -Oracle Open Office Math : brackets;double square (Math) -Oracle Open Office Math : brackets;group -Oracle Open Office Math : brackets;in Oracle Open Office Math -Oracle Open Office Math : brackets;inserting in Oracle Open Office Math -Oracle Open Office Math : brackets;merging formula parts -Oracle Open Office Math : brackets;operator (Math) -Oracle Open Office Math : brackets;reference list -Oracle Open Office Math : brackets;round (Math) -Oracle Open Office Math : brackets;scalable -Oracle Open Office Math : brackets;single, without group function -Oracle Open Office Math : brackets;square (Math) -Oracle Open Office Math : brackets;widowed -Oracle Open Office Math : brackets and grouping in Oracle Open Office Math -Oracle Open Office Math : break display (Writer) -Oracle Open Office Math : brochures -Oracle Open Office Math : brochures;printing several -Oracle Open Office Math : build numbers of Oracle Open Office -Oracle Open Office Math : bullet lists -Oracle Open Office Math : bullet lists;formatting options -Oracle Open Office Math : bullets -Oracle Open Office Math : bullets;paragraphs -Oracle Open Office Math : bullets;replacing -Oracle Open Office Math : bullets;turning off -Oracle Open Office Math : business cards -Oracle Open Office Math : business cards;creating and synchronizing -Oracle Open Office Math : business cards;using templates -Oracle Open Office Math : button bars, see toolbars -Oracle Open Office Math : buttons -Oracle Open Office Math : buttons;adding push buttons -Oracle Open Office Math : buttons;big/small -Oracle Open Office Math : buttons;editing hyperlink buttons -Oracle Open Office Math : buttons;form functions -Oracle Open Office Math : buttons;toolbars -Oracle Open Office Math : cache for graphics -Oracle Open Office Math : calculating -Oracle Open Office Math : calculating;iterative references (Calc) -Oracle Open Office Math : callouts -Oracle Open Office Math : callouts;drawings -Oracle Open Office Math : capital letters -Oracle Open Office Math : capital letters;AutoCorrect function -Oracle Open Office Math : capital letters;font effects -Oracle Open Office Math : captions -Oracle Open Office Math : captions;automatic captions (Writer) -Oracle Open Office Math : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Math : captions, see also labels/callouts -Oracle Open Office Math : cardinal numbers -Oracle Open Office Math : cascading update (Base) -Oracle Open Office Math : case sensitivity -Oracle Open Office Math : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Math : case sensitivity;searching -Oracle Open Office Math : catalog for mathematical symbols -Oracle Open Office Math : ceiling brackets -Oracle Open Office Math : ceiling brackets;lines with -Oracle Open Office Math : ceiling brackets;scalable lines with -Oracle Open Office Math : cells -Oracle Open Office Math : cells;aligning -Oracle Open Office Math : cells;coloring (Calc) -Oracle Open Office Math : cells;cursor positions after input (Calc) -Oracle Open Office Math : cells;formatting without effect (Calc) -Oracle Open Office Math : cells;line breaks -Oracle Open Office Math : cells;linked to controls -Oracle Open Office Math : cells;number of -Oracle Open Office Math : cells;pasting -Oracle Open Office Math : cells;resetting formats -Oracle Open Office Math : cells;showing grid lines (Calc) -Oracle Open Office Math : center dots symbol -Oracle Open Office Math : centered horizontally -Oracle Open Office Math : centered horizontally;alignment (Math) -Oracle Open Office Math : centered text -Oracle Open Office Math : centimeters -Oracle Open Office Math : certificates -Oracle Open Office Math : changes -Oracle Open Office Math : changes;accepting automatically -Oracle Open Office Math : changes;accepting or rejecting -Oracle Open Office Math : changes;comparing to original -Oracle Open Office Math : changes;protecting -Oracle Open Office Math : changes;recording -Oracle Open Office Math : changes;review function -Oracle Open Office Math : changes;showing -Oracle Open Office Math : changing -Oracle Open Office Math : changing;default formatting -Oracle Open Office Math : changing;document titles -Oracle Open Office Math : changing;file associations in Setup program -Oracle Open Office Math : changing;fonts -Oracle Open Office Math : changing;icon sizes -Oracle Open Office Math : changing;links -Oracle Open Office Math : changing;work directory -Oracle Open Office Math : changing, see also editing and replacing -Oracle Open Office Math : character styles -Oracle Open Office Math : character styles;language selection -Oracle Open Office Math : characters -Oracle Open Office Math : characters;alternative fonts -Oracle Open Office Math : characters;Asian layout -Oracle Open Office Math : characters;bold -Oracle Open Office Math : characters;coloring -Oracle Open Office Math : characters;displaying only on screen (Writer) -Oracle Open Office Math : characters;enabling CTL and Asian characters -Oracle Open Office Math : characters;font effects -Oracle Open Office Math : characters;fonts and formats -Oracle Open Office Math : characters;hyperlinks -Oracle Open Office Math : characters;italics -Oracle Open Office Math : characters;language selection -Oracle Open Office Math : characters;shadowed -Oracle Open Office Math : characters;spacing -Oracle Open Office Math : characters;special -Oracle Open Office Math : characters;underlining -Oracle Open Office Math : charcoal sketches filter -Oracle Open Office Math : charts -Oracle Open Office Math : charts;arranging within stacks -Oracle Open Office Math : charts;bars with textures -Oracle Open Office Math : charts;colors -Oracle Open Office Math : charts;copying with link to source cell range -Oracle Open Office Math : charts;displaying (Calc) -Oracle Open Office Math : charts;editing axes -Oracle Open Office Math : charts;editing data -Oracle Open Office Math : charts;editing legends -Oracle Open Office Math : charts;editing titles -Oracle Open Office Math : charts;inserting -Oracle Open Office Math : charts;updating automatically (Writer) -Oracle Open Office Math : check box creation -Oracle Open Office Math : Chinese writing systems -Oracle Open Office Math : choosing printers -Oracle Open Office Math : circle attribute -Oracle Open Office Math : circle drawings -Oracle Open Office Math : circumflex attribute -Oracle Open Office Math : Client Side ImageMap -Oracle Open Office Math : clipboard -Oracle Open Office Math : clipboard;cutting -Oracle Open Office Math : clipboard;pasting -Oracle Open Office Math : clipboard;pasting formatted/unformatted text -Oracle Open Office Math : clipboard;selection clipboard -Oracle Open Office Math : clipboard;Unix -Oracle Open Office Math : closing -Oracle Open Office Math : closing;documents -Oracle Open Office Math : closing;toolbars -Oracle Open Office Math : collaboration -Oracle Open Office Math : color bar -Oracle Open Office Math : colored characters -Oracle Open Office Math : colors -Oracle Open Office Math : colors;adding -Oracle Open Office Math : colors;appearance -Oracle Open Office Math : colors;backgrounds -Oracle Open Office Math : colors;charts -Oracle Open Office Math : colors;fill format -Oracle Open Office Math : colors;fonts -Oracle Open Office Math : colors;grid lines and cells (Calc) -Oracle Open Office Math : colors;in formulas -Oracle Open Office Math : colors;models -Oracle Open Office Math : colors;not printing -Oracle Open Office Math : colors;printing in grayscale -Oracle Open Office Math : colors;restriction (Calc) -Oracle Open Office Math : colors;selection -Oracle Open Office Math : column headers -Oracle Open Office Math : column headers;displaying (Calc) -Oracle Open Office Math : column headers;highlighting (Calc) -Oracle Open Office Math : columns -Oracle Open Office Math : columns;setting with the mouse -Oracle Open Office Math : combo box creation -Oracle Open Office Math : command button creation -Oracle Open Office Math : command buttons, see push buttons -Oracle Open Office Math : command line parameters -Oracle Open Office Math : commands -Oracle Open Office Math : commands;repeating -Oracle Open Office Math : commands;SQL -Oracle Open Office Math : comments -Oracle Open Office Math : comments;displaying (Calc) -Oracle Open Office Math : comments;entering in Oracle Open Office Math -Oracle Open Office Math : comments;inserting/editing/deleting/printing -Oracle Open Office Math : comments;on changes -Oracle Open Office Math : comments;printing in text -Oracle Open Office Math : common terms -Oracle Open Office Math : common terms;Chinese dictionary -Oracle Open Office Math : common terms;glossaries -Oracle Open Office Math : common terms;Internet glossary -Oracle Open Office Math : comparisons -Oracle Open Office Math : comparisons;document versions -Oracle Open Office Math : comparisons;operators in default filter dialog -Oracle Open Office Math : compatibility settings for MS Word import -Oracle Open Office Math : complete screen view -Oracle Open Office Math : complex numbers -Oracle Open Office Math : complex numbers;set -Oracle Open Office Math : complex numbers;symbols -Oracle Open Office Math : complex text layout -Oracle Open Office Math : complex text layout;definition -Oracle Open Office Math : complex text layout;enabling -Oracle Open Office Math : complex text layout, see CTL -Oracle Open Office Math : compose key to insert special characters -Oracle Open Office Math : concatenating math symbols -Oracle Open Office Math : concatenation, see ampersand symbol -Oracle Open Office Math : conditional separators -Oracle Open Office Math : conditions -Oracle Open Office Math : conditions;in number formats -Oracle Open Office Math : conditions;items in Data Navigator -Oracle Open Office Math : Configuration Manager -Oracle Open Office Math : configuring -Oracle Open Office Math : configuring;fax icon -Oracle Open Office Math : configuring;Oracle Open Office -Oracle Open Office Math : configuring;toolbars -Oracle Open Office Math : congruent relation -Oracle Open Office Math : connections to data sources (Base) -Oracle Open Office Math : considerably greater than relation -Oracle Open Office Math : considerably less than relation -Oracle Open Office Math : contents protection -Oracle Open Office Math : context menus -Oracle Open Office Math : control point display in presentations -Oracle Open Office Math : controls -Oracle Open Office Math : controls;activating in forms -Oracle Open Office Math : controls;adding to documents -Oracle Open Office Math : controls;arranging in forms -Oracle Open Office Math : controls;arranging within stacks -Oracle Open Office Math : controls;assigning data sources -Oracle Open Office Math : controls;assigning macros (Basic) -Oracle Open Office Math : controls;bound fields/list contents/linked cells -Oracle Open Office Math : controls;events -Oracle Open Office Math : controls;focus -Oracle Open Office Math : controls;formatted fields -Oracle Open Office Math : controls;grouping -Oracle Open Office Math : controls;hidden -Oracle Open Office Math : controls;inserting -Oracle Open Office Math : controls;multi-line titles -Oracle Open Office Math : controls;positions and sizes -Oracle Open Office Math : controls;printing -Oracle Open Office Math : controls;properties of form controls -Oracle Open Office Math : controls;properties of table controls -Oracle Open Office Math : controls;reference by SQL -Oracle Open Office Math : controls;rich text control -Oracle Open Office Math : controls;select mode -Oracle Open Office Math : controls;showing (Writer) -Oracle Open Office Math : converters -Oracle Open Office Math : converters;Euro converter -Oracle Open Office Math : converters;PostScript, UNIX -Oracle Open Office Math : converters;XML -Oracle Open Office Math : converting -Oracle Open Office Math : converting;Hangul/Hanja -Oracle Open Office Math : converting;metrics -Oracle Open Office Math : converting;Microsoft documents -Oracle Open Office Math : converting;Oracle Open Office documents -Oracle Open Office Math : converting;Pocket PC formats -Oracle Open Office Math : copies -Oracle Open Office Math : copies;printing -Oracle Open Office Math : coproduct -Oracle Open Office Math : copying -Oracle Open Office Math : copying;by drag and drop -Oracle Open Office Math : copying;data from text documents -Oracle Open Office Math : copying;datasource records in spreadsheets -Oracle Open Office Math : copying;draw objects -Oracle Open Office Math : copying;draw objects between documents -Oracle Open Office Math : copying;formatting -Oracle Open Office Math : copying;from data source view -Oracle Open Office Math : copying;from Gallery -Oracle Open Office Math : copying;in Unix -Oracle Open Office Math : copying;pictures, between documents -Oracle Open Office Math : copying;sheet areas, to text documents -Oracle Open Office Math : copying;to Gallery -Oracle Open Office Math : copyright for Oracle Open Office -Oracle Open Office Math : corner roundings -Oracle Open Office Math : correspondence -Oracle Open Office Math : correspondence;original by -Oracle Open Office Math : correspondence;picture by -Oracle Open Office Math : cosine function -Oracle Open Office Math : cotangent function -Oracle Open Office Math : crash reports -Oracle Open Office Math : criteria of query design (Base) -Oracle Open Office Math : cropping pictures -Oracle Open Office Math : CTL -Oracle Open Office Math : CTL;(not) wrapping words -Oracle Open Office Math : CTL;complex text layout languages -Oracle Open Office Math : CTL;definition -Oracle Open Office Math : CTL;options -Oracle Open Office Math : currencies -Oracle Open Office Math : currencies;converters -Oracle Open Office Math : currencies;format codes -Oracle Open Office Math : currency field creation -Oracle Open Office Math : currency formats -Oracle Open Office Math : cursor -Oracle Open Office Math : cursor;allowing in protected areas (Writer) -Oracle Open Office Math : cursor;in Oracle Open Office Math -Oracle Open Office Math : cursor;in read-only text -Oracle Open Office Math : cursor;quickly moving to an object -Oracle Open Office Math : curve integrals -Oracle Open Office Math : curves -Oracle Open Office Math : curves;editing points -Oracle Open Office Math : custom dictionaries -Oracle Open Office Math : custom dictionaries;editing -Oracle Open Office Math : custom hyphens (Writer) -Oracle Open Office Math : custom quotes -Oracle Open Office Math : custom templates -Oracle Open Office Math : customizing -Oracle Open Office Math : customizing;events -Oracle Open Office Math : customizing;keyboard -Oracle Open Office Math : customizing;menus -Oracle Open Office Math : customizing;Oracle Open Office -Oracle Open Office Math : customizing;round corners -Oracle Open Office Math : customizing;toolbars -Oracle Open Office Math : cutting -Oracle Open Office Math : dashes -Oracle Open Office Math : data -Oracle Open Office Math : data;filtering in forms -Oracle Open Office Math : data;forms and subforms -Oracle Open Office Math : data;read-only -Oracle Open Office Math : data;sorting in forms -Oracle Open Office Math : data;user data -Oracle Open Office Math : data binding change in XForms -Oracle Open Office Math : Data Navigator -Oracle Open Office Math : Data Navigator;adding/editing items -Oracle Open Office Math : Data Navigator;display options -Oracle Open Office Math : data source browser -Oracle Open Office Math : data source explorer -Oracle Open Office Math : data source view -Oracle Open Office Math : data source view;drag and drop -Oracle Open Office Math : data source view;overview -Oracle Open Office Math : data source view;showing -Oracle Open Office Math : data sources -Oracle Open Office Math : data sources;as tables -Oracle Open Office Math : data sources;connection settings (Base) -Oracle Open Office Math : data sources;copying records to spreadsheets -Oracle Open Office Math : data sources;displaying current -Oracle Open Office Math : data sources;LDAP server (Base) -Oracle Open Office Math : data sources;Oracle Open Office Base -Oracle Open Office Math : data sources;registering address books -Oracle Open Office Math : data sources;reports -Oracle Open Office Math : data sources;viewing -Oracle Open Office Math : data structure of XForms -Oracle Open Office Math : data, see also values -Oracle Open Office Math : database contents -Oracle Open Office Math : database contents;inserting as tables -Oracle Open Office Math : database contents;inserting as text -Oracle Open Office Math : database reports -Oracle Open Office Math : Database Wizard (Base) -Oracle Open Office Math : databases -Oracle Open Office Math : databases;administration through SQL (Base) -Oracle Open Office Math : databases;ADO (Base) -Oracle Open Office Math : databases;connecting (Base) -Oracle Open Office Math : databases;creating -Oracle Open Office Math : databases;creating labels -Oracle Open Office Math : databases;creating queries -Oracle Open Office Math : databases;creating reports -Oracle Open Office Math : databases;creating tables -Oracle Open Office Math : databases;deleting (Base) -Oracle Open Office Math : databases;drag and drop (Base) -Oracle Open Office Math : databases;editing tables -Oracle Open Office Math : databases;form filters -Oracle Open Office Math : databases;formats (Base) -Oracle Open Office Math : databases;importing/exporting -Oracle Open Office Math : databases;JDBC (Base) -Oracle Open Office Math : databases;main page (Base) -Oracle Open Office Math : databases;ODBC (Base) -Oracle Open Office Math : databases;overview -Oracle Open Office Math : databases;registering (Base) -Oracle Open Office Math : databases;searching records -Oracle Open Office Math : databases;shortcut keys -Oracle Open Office Math : databases;sorting -Oracle Open Office Math : databases;standard filters -Oracle Open Office Math : databases;text formats -Oracle Open Office Math : databases;viewing -Oracle Open Office Math : date fields -Oracle Open Office Math : date fields;creating -Oracle Open Office Math : date fields;properties -Oracle Open Office Math : date formats -Oracle Open Office Math : dates -Oracle Open Office Math : dates;default (Calc) -Oracle Open Office Math : dates;printing in presentations -Oracle Open Office Math : dates;start 1900/01/01 (Calc) -Oracle Open Office Math : dates;start 1904/01/01 (Calc) -Oracle Open Office Math : dBASE -Oracle Open Office Math : dBASE;database settings (Base) -Oracle Open Office Math : DDE -Oracle Open Office Math : DDE;definition -Oracle Open Office Math : deactivating -Oracle Open Office Math : deactivating;plug-ins -Oracle Open Office Math : decimal places displayed (Calc) -Oracle Open Office Math : decimal separator key -Oracle Open Office Math : decimal tab stops -Oracle Open Office Math : default directories -Oracle Open Office Math : default filters -Oracle Open Office Math : default filters;comparison operators -Oracle Open Office Math : default filters;databases -Oracle Open Office Math : default printer -Oracle Open Office Math : default printer;setting up -Oracle Open Office Math : default printer;UNIX -Oracle Open Office Math : default templates -Oracle Open Office Math : default templates;changing -Oracle Open Office Math : default templates;organizing -Oracle Open Office Math : defaults -Oracle Open Office Math : defaults;changing default formatting -Oracle Open Office Math : defaults;documents -Oracle Open Office Math : defaults;file formats in file dialogs -Oracle Open Office Math : defaults;file formats in Oracle Open Office -Oracle Open Office Math : defaults;fonts -Oracle Open Office Math : defaults;grids (Writer/Calc) -Oracle Open Office Math : defaults;languages -Oracle Open Office Math : defaults;number formats -Oracle Open Office Math : defaults;of saving -Oracle Open Office Math : defaults;program configuration -Oracle Open Office Math : defaults;tab stops in text -Oracle Open Office Math : defaults;views -Oracle Open Office Math : defined as relation -Oracle Open Office Math : defining -Oracle Open Office Math : defining;arrowheads and other line ends -Oracle Open Office Math : defining;colors -Oracle Open Office Math : defining;formula fonts -Oracle Open Office Math : defining;line styles -Oracle Open Office Math : defining;paragraph borders -Oracle Open Office Math : defining;queries (Base) -Oracle Open Office Math : defining;table borders -Oracle Open Office Math : deleting -Oracle Open Office Math : deleting;all direct formatting -Oracle Open Office Math : deleting;comments -Oracle Open Office Math : deleting;databases (Base) -Oracle Open Office Math : deleting;hyperlinks -Oracle Open Office Math : deleting;lines in text -Oracle Open Office Math : deleting;models/instances -Oracle Open Office Math : deleting;namespaces in XForms -Oracle Open Office Math : deleting;tab stops -Oracle Open Office Math : deleting;templates -Oracle Open Office Math : deleting;XML filters -Oracle Open Office Math : depth stagger -Oracle Open Office Math : descriptions for objects -Oracle Open Office Math : design mode after saving -Oracle Open Office Math : design view -Oracle Open Office Math : design view;creating forms -Oracle Open Office Math : design view;queries/views (Base) -Oracle Open Office Math : designing -Oracle Open Office Math : designing;database tables -Oracle Open Office Math : designing;fonts -Oracle Open Office Math : designing;queries (Base) -Oracle Open Office Math : detaching toolbars -Oracle Open Office Math : diagonal downward dots -Oracle Open Office Math : diagonal downward dots;symbol -Oracle Open Office Math : diagonal upward dots -Oracle Open Office Math : diagonal upward dots;symbol -Oracle Open Office Math : dictionaries -Oracle Open Office Math : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Math : dictionaries;creating -Oracle Open Office Math : dictionaries;editing user-defined -Oracle Open Office Math : dictionaries;spellcheck -Oracle Open Office Math : dictionaries, see also languages -Oracle Open Office Math : difference set operator -Oracle Open Office Math : digital signatures -Oracle Open Office Math : digital signatures;getting/managing/applying -Oracle Open Office Math : digital signatures;overview -Oracle Open Office Math : digital signatures;WebDAV over HTTPS -Oracle Open Office Math : direct formatting -Oracle Open Office Math : direct formatting;undoing all -Oracle Open Office Math : direct text -Oracle Open Office Math : direct text;entering in Oracle Open Office Math -Oracle Open Office Math : directories -Oracle Open Office Math : directories;creating new -Oracle Open Office Math : directories;directory structure -Oracle Open Office Math : disabled persons -Oracle Open Office Math : displaying -Oracle Open Office Math : displaying;comments (Calc) -Oracle Open Office Math : displaying;comments in text documents -Oracle Open Office Math : displaying;non-printing characters (Writer) -Oracle Open Office Math : displaying;pictures and objects (Writer) -Oracle Open Office Math : displaying;tables (Writer) -Oracle Open Office Math : displaying;zero values (Calc) -Oracle Open Office Math : distances -Oracle Open Office Math : distances between brackets -Oracle Open Office Math : distinct values in SQL queries -Oracle Open Office Math : distorting in drawings -Oracle Open Office Math : distributing XML filters -Oracle Open Office Math : divides relation -Oracle Open Office Math : division signs -Oracle Open Office Math : docking -Oracle Open Office Math : docking;definition -Oracle Open Office Math : docking;toolbars -Oracle Open Office Math : docking;windows -Oracle Open Office Math : Document Converter Wizard -Oracle Open Office Math : Document Map, see Navigator -Oracle Open Office Math : document types in Oracle Open Office -Oracle Open Office Math : documents -Oracle Open Office Math : documents;changing titles -Oracle Open Office Math : documents;closing -Oracle Open Office Math : documents;comparing -Oracle Open Office Math : documents;contents as lists -Oracle Open Office Math : documents;editing time -Oracle Open Office Math : documents;exporting -Oracle Open Office Math : documents;importing -Oracle Open Office Math : documents;languages -Oracle Open Office Math : documents;measurement units in -Oracle Open Office Math : documents;merging -Oracle Open Office Math : documents;number of pages/tables/sheets -Oracle Open Office Math : documents;opening -Oracle Open Office Math : documents;opening in design mode -Oracle Open Office Math : documents;opening with templates -Oracle Open Office Math : documents;organizing -Oracle Open Office Math : documents;printing -Oracle Open Office Math : documents;read-only -Oracle Open Office Math : documents;reloading -Oracle Open Office Math : documents;saving -Oracle Open Office Math : documents;saving automatically -Oracle Open Office Math : documents;saving in other formats -Oracle Open Office Math : documents;sending as e-mail -Oracle Open Office Math : documents;styles changed -Oracle Open Office Math : documents;version management -Oracle Open Office Math : documents;version numbers -Oracle Open Office Math : does not divide relation -Oracle Open Office Math : dot attribute -Oracle Open Office Math : dotted areas -Oracle Open Office Math : double arrow symbols -Oracle Open Office Math : double dot attribute -Oracle Open Office Math : double square brackets -Oracle Open Office Math : double square brackets;scalable -Oracle Open Office Math : double-line spacing in paragraphs -Oracle Open Office Math : double-line writing in Asian layout -Oracle Open Office Math : down arrow symbol -Oracle Open Office Math : drag and drop -Oracle Open Office Math : drag and drop;copying and pasting text -Oracle Open Office Math : drag and drop;data source view -Oracle Open Office Math : drag and drop;from Gallery to draw objects -Oracle Open Office Math : drag and drop;overview -Oracle Open Office Math : drag and drop;pictures -Oracle Open Office Math : drag and drop;to Gallery -Oracle Open Office Math : draw objects -Oracle Open Office Math : draw objects;adding/editing/copying -Oracle Open Office Math : draw objects;anchoring -Oracle Open Office Math : draw objects;arranging within stacks -Oracle Open Office Math : draw objects;copying between documents -Oracle Open Office Math : draw objects;displaying (Calc) -Oracle Open Office Math : draw objects;dropping Gallery pictures -Oracle Open Office Math : draw objects;flipping -Oracle Open Office Math : draw objects;legends -Oracle Open Office Math : draw objects;positioning and resizing -Oracle Open Office Math : draw objects;protecting -Oracle Open Office Math : draw objects;slanting -Oracle Open Office Math : draw objects;text in -Oracle Open Office Math : Drawing bar -Oracle Open Office Math : drawing lines in text -Oracle Open Office Math : drawings -Oracle Open Office Math : drawings;creating/opening -Oracle Open Office Math : drawings;languages -Oracle Open Office Math : drawings;printing -Oracle Open Office Math : drawings;printing defaults -Oracle Open Office Math : drawings;printing in text documents -Oracle Open Office Math : drawings;saving -Oracle Open Office Math : drawings;saving automatically -Oracle Open Office Math : drawings;saving in other formats -Oracle Open Office Math : drawings;sending as e-mail -Oracle Open Office Math : drawings;showing (Writer) -Oracle Open Office Math : drawings, see also draw objects -Oracle Open Office Math : drop-down lists in form functions -Oracle Open Office Math : e-mail attachments -Oracle Open Office Math : Edit File icon -Oracle Open Office Math : edit mode -Oracle Open Office Math : edit mode;after opening -Oracle Open Office Math : edit mode;through Enter key (Calc) -Oracle Open Office Math : Edit Points bar -Oracle Open Office Math : editing -Oracle Open Office Math : editing;chart axes -Oracle Open Office Math : editing;chart data -Oracle Open Office Math : editing;chart legends -Oracle Open Office Math : editing;chart titles -Oracle Open Office Math : editing;comments -Oracle Open Office Math : editing;data binding of XForms -Oracle Open Office Math : editing;database tables and queries -Oracle Open Office Math : editing;draw objects -Oracle Open Office Math : editing;Fontwork objects -Oracle Open Office Math : editing;hyperlinks -Oracle Open Office Math : editing;menus -Oracle Open Office Math : editing;objects -Oracle Open Office Math : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Math : editing;pictures -Oracle Open Office Math : editing;reports -Oracle Open Office Math : editing;shortcut keys -Oracle Open Office Math : editing;tab stops -Oracle Open Office Math : editing;templates -Oracle Open Office Math : editing;toolbars -Oracle Open Office Math : editing;undoing -Oracle Open Office Math : editing;XForms -Oracle Open Office Math : editing time of documents -Oracle Open Office Math : editors -Oracle Open Office Math : editors;formula editor -Oracle Open Office Math : editors;ImageMap editor -Oracle Open Office Math : effects -Oracle Open Office Math : effects;font positions -Oracle Open Office Math : effects;fonts -Oracle Open Office Math : effects;Fontwork icons -Oracle Open Office Math : ellipsis symbols -Oracle Open Office Math : empty documents -Oracle Open Office Math : empty paragraph removal -Oracle Open Office Math : empty set -Oracle Open Office Math : encryption of contents -Oracle Open Office Math : entering groups -Oracle Open Office Math : entering text from right to left -Oracle Open Office Math : epsilon -Oracle Open Office Math : epsilon;back -Oracle Open Office Math : equal sign -Oracle Open Office Math : equal sign, see also operators -Oracle Open Office Math : Equation Editor, see Oracle Open Office Math -Oracle Open Office Math : equations in formula editor -Oracle Open Office Math : Error Report Tool -Oracle Open Office Math : error search -Oracle Open Office Math : error search;next error -Oracle Open Office Math : error search;previous error -Oracle Open Office Math : Euro -Oracle Open Office Math : Euro;currency formats -Oracle Open Office Math : Euro;Euro Converter Wizard -Oracle Open Office Math : even/odd pages -Oracle Open Office Math : even/odd pages;printing -Oracle Open Office Math : events -Oracle Open Office Math : events;assigning scripts -Oracle Open Office Math : events;controls -Oracle Open Office Math : events;customizing -Oracle Open Office Math : events;in forms -Oracle Open Office Math : examples -Oracle Open Office Math : examples;integral -Oracle Open Office Math : examples;Oracle Open Office Math formulas -Oracle Open Office Math : Excel -Oracle Open Office Math : Excel;saving as -Oracle Open Office Math : Excel;search criteria -Oracle Open Office Math : exceptions -Oracle Open Office Math : exceptions;user-defined dictionaries -Oracle Open Office Math : exchanging, see also replacing -Oracle Open Office Math : executing SQL commands -Oracle Open Office Math : existence quantor symbol -Oracle Open Office Math : exiting -Oracle Open Office Math : exiting;groups -Oracle Open Office Math : exiting;Oracle Open Office -Oracle Open Office Math : expanding formatting (Calc) -Oracle Open Office Math : explorer of data sources -Oracle Open Office Math : exponential functions -Oracle Open Office Math : exponents -Oracle Open Office Math : exponents;variables with right -Oracle Open Office Math : exponents and indexes in Oracle Open Office Math -Oracle Open Office Math : export filters -Oracle Open Office Math : exporting -Oracle Open Office Math : exporting;bitmaps -Oracle Open Office Math : exporting;HTML and text documents -Oracle Open Office Math : exporting;Microsoft Office documents with VBA code -Oracle Open Office Math : exporting;spreadsheets to text format -Oracle Open Office Math : exporting;templates -Oracle Open Office Math : exporting;to foreign formats -Oracle Open Office Math : exporting;to HTML -Oracle Open Office Math : exporting;to Microsoft Office formats -Oracle Open Office Math : exporting;to PDF -Oracle Open Office Math : exporting;to PostScript format -Oracle Open Office Math : exporting;to XML -Oracle Open Office Math : exporting;XML files -Oracle Open Office Math : extended tips in Help -Oracle Open Office Math : extension mode in text -Oracle Open Office Math : extensions -Oracle Open Office Math : extensions;Extension Manager -Oracle Open Office Math : extensions;file formats -Oracle Open Office Math : external keys (Base) -Oracle Open Office Math : factorial -Oracle Open Office Math : faster printing -Oracle Open Office Math : faxes -Oracle Open Office Math : faxes;configuring Oracle Open Office -Oracle Open Office Math : faxes;fax programs/fax printers under UNIX -Oracle Open Office Math : faxes;selecting a fax machine -Oracle Open Office Math : faxes;sending -Oracle Open Office Math : faxes;wizards -Oracle Open Office Math : feedback -Oracle Open Office Math : feedback;automatically -Oracle Open Office Math : fields -Oracle Open Office Math : fields;database tables -Oracle Open Office Math : fields;displaying field codes (Writer) -Oracle Open Office Math : fields;formatted fields -Oracle Open Office Math : fields;updating automatically (Writer) -Oracle Open Office Math : file associations for Microsoft Office -Oracle Open Office Math : file filters -Oracle Open Office Math : file filters;mobile devices -Oracle Open Office Math : file filters;XML -Oracle Open Office Math : file formats -Oracle Open Office Math : file formats;changing Oracle Open Office defaults -Oracle Open Office Math : file formats;OpenDocument/XML -Oracle Open Office Math : file formats;saving always in other formats -Oracle Open Office Math : file selection button -Oracle Open Office Math : file sharing options for current document -Oracle Open Office Math : files -Oracle Open Office Math : files;filters and formats -Oracle Open Office Math : files;importing -Oracle Open Office Math : files;opening -Oracle Open Office Math : files;properties -Oracle Open Office Math : files;saving -Oracle Open Office Math : files;saving automatically -Oracle Open Office Math : files;saving in other formats -Oracle Open Office Math : files;sending as e-mail -Oracle Open Office Math : files;version numbers -Oracle Open Office Math : files and folders in Oracle Open Office -Oracle Open Office Math : fill characters with tabulators -Oracle Open Office Math : fill colors for areas -Oracle Open Office Math : fill patterns for areas -Oracle Open Office Math : filter conditions -Oracle Open Office Math : filter conditions;connecting -Oracle Open Office Math : filter conditions;in queries (Base) -Oracle Open Office Math : filtering -Oracle Open Office Math : filtering;data in databases -Oracle Open Office Math : filtering;data in forms -Oracle Open Office Math : filters -Oracle Open Office Math : filters;comparison operators -Oracle Open Office Math : filters;for import and export -Oracle Open Office Math : filters;Navigator -Oracle Open Office Math : filters;pictures -Oracle Open Office Math : filters;XML filter settings -Oracle Open Office Math : Find tab in Help -Oracle Open Office Math : finding -Oracle Open Office Math : finding;errors in Oracle Open Office Math -Oracle Open Office Math : finding;in all sheets -Oracle Open Office Math : finding;records in form documents -Oracle Open Office Math : finding;selections -Oracle Open Office Math : finding;similarity search -Oracle Open Office Math : fitting to pages -Oracle Open Office Math : fitting to pages;print settings in Math -Oracle Open Office Math : fitting to pages;print settings in presentations -Oracle Open Office Math : fixed text -Oracle Open Office Math : fixed text;form functions -Oracle Open Office Math : fixing toolbars -Oracle Open Office Math : flipping draw objects -Oracle Open Office Math : floating frames in HTML documents -Oracle Open Office Math : floating toolbars -Oracle Open Office Math : floor brackets -Oracle Open Office Math : focus of controls -Oracle Open Office Math : folder creation -Oracle Open Office Math : font attributes -Oracle Open Office Math : font attributes;changing defaults -Oracle Open Office Math : font lists -Oracle Open Office Math : font name box -Oracle Open Office Math : font sizes -Oracle Open Office Math : font sizes;bullets -Oracle Open Office Math : font sizes;example -Oracle Open Office Math : font sizes;in Oracle Open Office Math -Oracle Open Office Math : font sizes;relative changes -Oracle Open Office Math : font sizes;scaling on screen -Oracle Open Office Math : font sizes;text -Oracle Open Office Math : fonts -Oracle Open Office Math : fonts;adding under UNIX -Oracle Open Office Math : fonts;changing in templates -Oracle Open Office Math : fonts;colors -Oracle Open Office Math : fonts;default settings -Oracle Open Office Math : fonts;effects -Oracle Open Office Math : fonts;for HTML and Basic -Oracle Open Office Math : fonts;formats -Oracle Open Office Math : fonts;in Oracle Open Office Math -Oracle Open Office Math : fonts;outlines -Oracle Open Office Math : fonts;positions in text -Oracle Open Office Math : fonts;shadows -Oracle Open Office Math : fonts;specifying several -Oracle Open Office Math : fonts;strikethrough -Oracle Open Office Math : fonts;styles -Oracle Open Office Math : fonts;text objects -Oracle Open Office Math : Fontwork icons -Oracle Open Office Math : footers -Oracle Open Office Math : footers;backgrounds -Oracle Open Office Math : for all symbol -Oracle Open Office Math : form controls -Oracle Open Office Math : form controls;assigning macros -Oracle Open Office Math : form controls;protecting -Oracle Open Office Math : form controls;toolbars -Oracle Open Office Math : form fields -Oracle Open Office Math : form filters -Oracle Open Office Math : Form Navigator -Oracle Open Office Math : format codes -Oracle Open Office Math : format codes;numbers -Oracle Open Office Math : format filling printing in Oracle Open Office Math -Oracle Open Office Math : Format Paintbrush -Oracle Open Office Math : formats -Oracle Open Office Math : formats;Asian layout -Oracle Open Office Math : formats;fonts -Oracle Open Office Math : formats;maximizing page formats -Oracle Open Office Math : formats;number and currency formats -Oracle Open Office Math : formats;of currencies/date/time -Oracle Open Office Math : formats;on opening and saving -Oracle Open Office Math : formats;pasting in special formats -Oracle Open Office Math : formats;positions -Oracle Open Office Math : formats;tabulators -Oracle Open Office Math : formatted fields -Oracle Open Office Math : formatted fields;form functions -Oracle Open Office Math : formatted fields;properties -Oracle Open Office Math : formatting -Oracle Open Office Math : formatting;Asian typography -Oracle Open Office Math : formatting;axes in charts -Oracle Open Office Math : formatting;changing default attributes -Oracle Open Office Math : formatting;chart legends -Oracle Open Office Math : formatting;copying -Oracle Open Office Math : formatting;definition -Oracle Open Office Math : formatting;expanding (Calc) -Oracle Open Office Math : formatting;font effects -Oracle Open Office Math : formatting;hyperlinks -Oracle Open Office Math : formatting;in Oracle Open Office Math -Oracle Open Office Math : formatting;pages -Oracle Open Office Math : formatting;printer metrics (Writer) -Oracle Open Office Math : formatting;reference list (Math) -Oracle Open Office Math : formatting;undoing -Oracle Open Office Math : formatting;undoing when writing -Oracle Open Office Math : forms -Oracle Open Office Math : forms;browsing -Oracle Open Office Math : forms;Combo Box/List Box Wizard -Oracle Open Office Math : forms;creating -Oracle Open Office Math : forms;data -Oracle Open Office Math : forms;designing (Base) -Oracle Open Office Math : forms;events -Oracle Open Office Math : forms;filtering data -Oracle Open Office Math : forms;finding records -Oracle Open Office Math : forms;focus after opening -Oracle Open Office Math : forms;general information (Base) -Oracle Open Office Math : forms;grouping controls -Oracle Open Office Math : forms;HTML filters -Oracle Open Office Math : forms;Navigator -Oracle Open Office Math : forms;opening in design mode -Oracle Open Office Math : forms;properties -Oracle Open Office Math : forms;sorting data -Oracle Open Office Math : forms;subforms -Oracle Open Office Math : forms;wizards -Oracle Open Office Math : forms;XForms -Oracle Open Office Math : formula cursor in Oracle Open Office Math -Oracle Open Office Math : formula display sizes -Oracle Open Office Math : formula fonts -Oracle Open Office Math : formula fonts;defining -Oracle Open Office Math : formula parts -Oracle Open Office Math : formula parts;manually aligning -Oracle Open Office Math : formula parts;merging -Oracle Open Office Math : formula texts -Oracle Open Office Math : formula texts;printing in Oracle Open Office Math -Oracle Open Office Math : formula view -Oracle Open Office Math : formula view;refreshing -Oracle Open Office Math : formulas -Oracle Open Office Math : formulas;aligning -Oracle Open Office Math : formulas;attributes in -Oracle Open Office Math : formulas;element spacing -Oracle Open Office Math : formulas;entering symbols in -Oracle Open Office Math : formulas;examples -Oracle Open Office Math : formulas;fit to text -Oracle Open Office Math : formulas;in color -Oracle Open Office Math : formulas;increasing size of display -Oracle Open Office Math : formulas;line breaks -Oracle Open Office Math : formulas;maximum size -Oracle Open Office Math : formulas;new -Oracle Open Office Math : formulas;reference tables -Oracle Open Office Math : formulas;selections -Oracle Open Office Math : formulas;starting formula editor -Oracle Open Office Math : formulas;zooming out -Oracle Open Office Math : formulas in reports -Oracle Open Office Math : formulas in reports;editing -Oracle Open Office Math : forums and support -Oracle Open Office Math : fractions in formulas -Oracle Open Office Math : frames -Oracle Open Office Math : frames;around paragraphs -Oracle Open Office Math : frames;around tables -Oracle Open Office Math : frames;AutoCorrect function -Oracle Open Office Math : frames;backgrounds -Oracle Open Office Math : frames;captions (Writer) -Oracle Open Office Math : frames;printing in Oracle Open Office Math -Oracle Open Office Math : frames;protecting -Oracle Open Office Math : frames;selection frames -Oracle Open Office Math : frames;text fitting to frames -Oracle Open Office Math : freeform lines -Oracle Open Office Math : freeform lines;draw functions -Oracle Open Office Math : FTP -Oracle Open Office Math : FTP;opening documents -Oracle Open Office Math : FTP;saving documents -Oracle Open Office Math : full joins (Base) -Oracle Open Office Math : full screen view -Oracle Open Office Math : full-text search in Help -Oracle Open Office Math : functions -Oracle Open Office Math : functions;in Oracle Open Office Math -Oracle Open Office Math : functions in reports -Oracle Open Office Math : functions in reports;editing -Oracle Open Office Math : functions operators -Oracle Open Office Math : functions operators;list of -Oracle Open Office Math : Gallery -Oracle Open Office Math : Gallery;adding pictures -Oracle Open Office Math : Gallery;dragging pictures to draw objects -Oracle Open Office Math : Gallery;hiding/showing -Oracle Open Office Math : Gallery;inserting pictures from -Oracle Open Office Math : gaps in formulas -Oracle Open Office Math : get method for form transmissions -Oracle Open Office Math : getting support -Oracle Open Office Math : GIF format -Oracle Open Office Math : glossaries -Oracle Open Office Math : glossaries;common terms -Oracle Open Office Math : glossaries;Internet terms -Oracle Open Office Math : gradients off for faster printing -Oracle Open Office Math : graphic objects, see draw objects -Oracle Open Office Math : graphical text art -Oracle Open Office Math : graphics -Oracle Open Office Math : graphics;cache -Oracle Open Office Math : graphics;protecting -Oracle Open Office Math : graphics, see also pictures -Oracle Open Office Math : grayscale printing -Oracle Open Office Math : greater than or equal to signs -Oracle Open Office Math : greater than relations -Oracle Open Office Math : Greek symbols in formulas -Oracle Open Office Math : grid controls -Oracle Open Office Math : grid controls;form functions -Oracle Open Office Math : grids -Oracle Open Office Math : grids;defaults (Writer/Calc) -Oracle Open Office Math : grids;display options (Impress/Draw) -Oracle Open Office Math : grids;displaying lines (Calc) -Oracle Open Office Math : group box creation -Oracle Open Office Math : grouping and brackets in Oracle Open Office Math -Oracle Open Office Math : grouping brackets -Oracle Open Office Math : groups -Oracle Open Office Math : groups;entering/exiting/ungrouping -Oracle Open Office Math : groups;naming -Oracle Open Office Math : groups;of controls -Oracle Open Office Math : guides -Oracle Open Office Math : guides;display options (Impress/Draw) -Oracle Open Office Math : guides;displaying when moving objects (Impress) -Oracle Open Office Math : guides;showing (Calc) -Oracle Open Office Math : guides;showing when moving frames (Writer) -Oracle Open Office Math : gutter -Oracle Open Office Math : h-bar symbol -Oracle Open Office Math : handles -Oracle Open Office Math : handles;displaying (Writer) -Oracle Open Office Math : handles;scaling -Oracle Open Office Math : handles;showing simple/large handles (Calc) -Oracle Open Office Math : Hangul/Hanja -Oracle Open Office Math : hatching -Oracle Open Office Math : headers -Oracle Open Office Math : headers;backgrounds -Oracle Open Office Math : headings -Oracle Open Office Math : headings;entering as text box -Oracle Open Office Math : Hebrew -Oracle Open Office Math : Hebrew;entering text -Oracle Open Office Math : Hebrew;language settings -Oracle Open Office Math : Help -Oracle Open Office Math : Help;bookmarks -Oracle Open Office Math : Help;extended tips on/off -Oracle Open Office Math : Help;full-text search -Oracle Open Office Math : Help;Help tips -Oracle Open Office Math : Help;keywords -Oracle Open Office Math : Help;navigation pane showing/hiding -Oracle Open Office Math : Help;style sheets -Oracle Open Office Math : Help;topics -Oracle Open Office Math : Help Agent -Oracle Open Office Math : Help Agent;help -Oracle Open Office Math : Help Agent;options -Oracle Open Office Math : Help tips -Oracle Open Office Math : Help tips;hiding -Oracle Open Office Math : hidden controls in Form Navigator -Oracle Open Office Math : hidden fields display (Writer) -Oracle Open Office Math : hidden pages -Oracle Open Office Math : hidden pages;printing in presentations -Oracle Open Office Math : hidden text -Oracle Open Office Math : hidden text;showing (Writer) -Oracle Open Office Math : hiding -Oracle Open Office Math : hiding;changes -Oracle Open Office Math : hiding;docked windows -Oracle Open Office Math : hiding;navigation pane in Help window -Oracle Open Office Math : high contrast mode -Oracle Open Office Math : Hindi -Oracle Open Office Math : Hindi;entering text -Oracle Open Office Math : Hindi;language settings -Oracle Open Office Math : horizontal scrollbars (Writer) -Oracle Open Office Math : hotspots -Oracle Open Office Math : HTML -Oracle Open Office Math : HTML;definition -Oracle Open Office Math : HTML;export character set -Oracle Open Office Math : HTML;fonts for source display -Oracle Open Office Math : HTML;importing META tags -Oracle Open Office Math : HTML;live presentations -Oracle Open Office Math : HTML documents -Oracle Open Office Math : HTML documents;auto reloading -Oracle Open Office Math : HTML documents;importing/exporting -Oracle Open Office Math : HTML documents;META tags in -Oracle Open Office Math : HTML documents;new -Oracle Open Office Math : HTML documents;source text -Oracle Open Office Math : hyperbolic cosine function -Oracle Open Office Math : hyperbolic cotangent function -Oracle Open Office Math : hyperbolic sine function -Oracle Open Office Math : hyperbolic tangent function -Oracle Open Office Math : hyperlinks -Oracle Open Office Math : hyperlinks;assigning macros -Oracle Open Office Math : hyperlinks;character formats -Oracle Open Office Math : hyperlinks;definition -Oracle Open Office Math : hyperlinks;deleting -Oracle Open Office Math : hyperlinks;editing -Oracle Open Office Math : hyperlinks;inserting -Oracle Open Office Math : hyperlinks;relative and absolute -Oracle Open Office Math : hyperlinks;turning off automatic recognition -Oracle Open Office Math : hyperlinks, see also links -Oracle Open Office Math : hyphenation -Oracle Open Office Math : hyphenation;activating for a language -Oracle Open Office Math : hyphenation;minimal number of characters -Oracle Open Office Math : hyphens -Oracle Open Office Math : hyphens;displaying custom (Writer) -Oracle Open Office Math : hyphens;inserting custom -Oracle Open Office Math : icon bars, see toolbars -Oracle Open Office Math : icon sizes -Oracle Open Office Math : identical to relation -Oracle Open Office Math : ignore list for spellcheck -Oracle Open Office Math : illustrations, see pictures -Oracle Open Office Math : image button creation -Oracle Open Office Math : image control creation -Oracle Open Office Math : image of relation -Oracle Open Office Math : ImageMap -Oracle Open Office Math : ImageMap;definition -Oracle Open Office Math : ImageMap;editor -Oracle Open Office Math : images -Oracle Open Office Math : images;ImageMap -Oracle Open Office Math : images;inserting and editing bitmaps -Oracle Open Office Math : images, see also pictures -Oracle Open Office Math : imaginary part of a complex number -Oracle Open Office Math : IME -Oracle Open Office Math : IME;definition -Oracle Open Office Math : IME;showing/hiding -Oracle Open Office Math : import filters -Oracle Open Office Math : import restrictions for Microsoft Office -Oracle Open Office Math : importing -Oracle Open Office Math : importing;bitmaps -Oracle Open Office Math : importing;compatibility settings for text import -Oracle Open Office Math : importing;databases -Oracle Open Office Math : importing;documents in other formats -Oracle Open Office Math : importing;from XML -Oracle Open Office Math : importing;HTML and text documents -Oracle Open Office Math : importing;HTML with META tags -Oracle Open Office Math : importing;Microsoft Office documents with VBA code -Oracle Open Office Math : importing;Oracle Open Office Math formulas -Oracle Open Office Math : importing;tables in text format -Oracle Open Office Math : importing;templates -Oracle Open Office Math : improvement program -Oracle Open Office Math : inches -Oracle Open Office Math : included in set operator -Oracle Open Office Math : includes set operator -Oracle Open Office Math : Index tab in Help -Oracle Open Office Math : indexes -Oracle Open Office Math : indexes;adding to formulas -Oracle Open Office Math : indexes;backgrounds -Oracle Open Office Math : indexes;showing/hiding Help index tab -Oracle Open Office Math : indexes and exponents in Oracle Open Office Math -Oracle Open Office Math : indicator lines in text -Oracle Open Office Math : inequation -Oracle Open Office Math : infinity symbol -Oracle Open Office Math : inner joins (Base) -Oracle Open Office Math : input method window -Oracle Open Office Math : insert mode for entering text -Oracle Open Office Math : inserting -Oracle Open Office Math : inserting;brackets -Oracle Open Office Math : inserting;buttons in toolbars -Oracle Open Office Math : inserting;cell ranges from spreadsheets -Oracle Open Office Math : inserting;charts -Oracle Open Office Math : inserting;clipboard options -Oracle Open Office Math : inserting;comments -Oracle Open Office Math : inserting;comments in Oracle Open Office Math -Oracle Open Office Math : inserting;data from text documents -Oracle Open Office Math : inserting;datasource records in spreadsheets -Oracle Open Office Math : inserting;drawings -Oracle Open Office Math : inserting;floating frames -Oracle Open Office Math : inserting;Fontwork objects -Oracle Open Office Math : inserting;form fields -Oracle Open Office Math : inserting;gaps -Oracle Open Office Math : inserting;hyperlinks -Oracle Open Office Math : inserting;line breaks in cells -Oracle Open Office Math : inserting;movies/sounds -Oracle Open Office Math : inserting;new text tables defaults -Oracle Open Office Math : inserting;objects from Gallery -Oracle Open Office Math : inserting;OLE objects -Oracle Open Office Math : inserting;paragraph borders -Oracle Open Office Math : inserting;paragraph bullets -Oracle Open Office Math : inserting;pictures in Gallery -Oracle Open Office Math : inserting;plug-ins -Oracle Open Office Math : inserting;push buttons -Oracle Open Office Math : inserting;special characters -Oracle Open Office Math : inserting;tab stops -Oracle Open Office Math : inserting;text in Oracle Open Office Math -Oracle Open Office Math : inserting;textures on chart bars -Oracle Open Office Math : installing -Oracle Open Office Math : installing;ActiveX control -Oracle Open Office Math : installing;mobile device filters -Oracle Open Office Math : installing;UNO components -Oracle Open Office Math : installing;XML filters -Oracle Open Office Math : instructions -Oracle Open Office Math : instructions;general -Oracle Open Office Math : instructions;Oracle Open Office Math -Oracle Open Office Math : integral limits -Oracle Open Office Math : integrals -Oracle Open Office Math : integrals;example -Oracle Open Office Math : integrals;signs -Oracle Open Office Math : Internet -Oracle Open Office Math : Internet;checking for updates -Oracle Open Office Math : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Math : Internet;presentations -Oracle Open Office Math : Internet;starting searches -Oracle Open Office Math : Internet glossary -Oracle Open Office Math : intersection of sets -Oracle Open Office Math : invert filter -Oracle Open Office Math : invisible areas -Oracle Open Office Math : italic attribute in Oracle Open Office Math -Oracle Open Office Math : italic text -Oracle Open Office Math : iterative references in spreadsheets -Oracle Open Office Math : Java -Oracle Open Office Math : Java;definition -Oracle Open Office Math : Java;setting options -Oracle Open Office Math : JDBC -Oracle Open Office Math : JDBC;databases (Base) -Oracle Open Office Math : JDBC;definition -Oracle Open Office Math : joining -Oracle Open Office Math : joining;paragraphs -Oracle Open Office Math : joining;tables (Base) -Oracle Open Office Math : joins in databases (Base) -Oracle Open Office Math : justifying text -Oracle Open Office Math : kerning -Oracle Open Office Math : kerning;Asian texts -Oracle Open Office Math : kerning;definition -Oracle Open Office Math : kerning;in characters -Oracle Open Office Math : key fields for relations (Base) -Oracle Open Office Math : keyboard -Oracle Open Office Math : keyboard;assigning/editing shortcut keys -Oracle Open Office Math : keyboard;general commands -Oracle Open Office Math : keyboard;removing numbering -Oracle Open Office Math : keys -Oracle Open Office Math : keys;adding push buttons -Oracle Open Office Math : keys;primary keys (Base) -Oracle Open Office Math : kiosk export -Oracle Open Office Math : labels -Oracle Open Office Math : labels;creating and synchronizing -Oracle Open Office Math : labels;for draw objects -Oracle Open Office Math : labels;form functions -Oracle Open Office Math : labels;from databases -Oracle Open Office Math : labels, see also names/callouts -Oracle Open Office Math : lambda-bar symbol -Oracle Open Office Math : languages -Oracle Open Office Math : languages;activating modules -Oracle Open Office Math : languages;Asian support -Oracle Open Office Math : languages;complex text layout -Oracle Open Office Math : languages;locale settings -Oracle Open Office Math : languages;selecting for text -Oracle Open Office Math : languages;setting options -Oracle Open Office Math : languages;spellcheck -Oracle Open Office Math : languages;spellchecking and formatting -Oracle Open Office Math : large handles (Writer) -Oracle Open Office Math : large icons -Oracle Open Office Math : layer arrangement -Oracle Open Office Math : layout -Oracle Open Office Math : layout;importing Word documents -Oracle Open Office Math : layout;pages -Oracle Open Office Math : LDAP server -Oracle Open Office Math : LDAP server;address books (Base) -Oracle Open Office Math : LDAP server;sign on options -Oracle Open Office Math : leading between paragraphs -Oracle Open Office Math : left alignment of paragraphs -Oracle Open Office Math : left arrow symbol -Oracle Open Office Math : left joins (Base) -Oracle Open Office Math : left-justified alignment (Math) -Oracle Open Office Math : legends -Oracle Open Office Math : legends;charts -Oracle Open Office Math : legends;draw objects -Oracle Open Office Math : legends;rounding corners -Oracle Open Office Math : less than or equal to signs -Oracle Open Office Math : less than relations -Oracle Open Office Math : Letter Wizard -Oracle Open Office Math : levels -Oracle Open Office Math : levels;depth stagger -Oracle Open Office Math : levels;macro security -Oracle Open Office Math : limits -Oracle Open Office Math : limits;in Oracle Open Office Math -Oracle Open Office Math : limits;in sums/integrals -Oracle Open Office Math : limits of tables (Writer) -Oracle Open Office Math : line above attribute -Oracle Open Office Math : line breaks -Oracle Open Office Math : line breaks;in cells -Oracle Open Office Math : line breaks;in formulas -Oracle Open Office Math : line spacing -Oracle Open Office Math : line spacing;context menu in paragraphs -Oracle Open Office Math : line spacing;paragraph -Oracle Open Office Math : line styles -Oracle Open Office Math : line styles;applying -Oracle Open Office Math : line styles;defining -Oracle Open Office Math : line through attribute -Oracle Open Office Math : lines -Oracle Open Office Math : lines;defining ends -Oracle Open Office Math : lines;draw functions -Oracle Open Office Math : lines;drawing in text -Oracle Open Office Math : lines;editing points -Oracle Open Office Math : lines;inserting in formulas -Oracle Open Office Math : lines;removing automatic lines -Oracle Open Office Math : lines;scalable -Oracle Open Office Math : lines;with edges -Oracle Open Office Math : lines of text -Oracle Open Office Math : lines of text;alignment -Oracle Open Office Math : links -Oracle Open Office Math : links;between cells and controls -Oracle Open Office Math : links;by drag and drop -Oracle Open Office Math : links;character formats -Oracle Open Office Math : links;definition -Oracle Open Office Math : links;editing hyperlinks -Oracle Open Office Math : links;inserting -Oracle Open Office Math : links;modifying -Oracle Open Office Math : links;opening files with -Oracle Open Office Math : links;relational databases (Base) -Oracle Open Office Math : links;turning off automatic recognition -Oracle Open Office Math : links;updating options (Writer) -Oracle Open Office Math : links;updating specific links -Oracle Open Office Math : list box creation -Oracle Open Office Math : lists -Oracle Open Office Math : lists;data assigned to controls -Oracle Open Office Math : lists;registered databases (Base) -Oracle Open Office Math : lists;regular expressions -Oracle Open Office Math : live presentations on the Internet -Oracle Open Office Math : loading -Oracle Open Office Math : loading;documents -Oracle Open Office Math : loading;documents from other formats -Oracle Open Office Math : loading;HTML documents, automatically -Oracle Open Office Math : loading;Microsoft Office documents with VBA code -Oracle Open Office Math : loading;reloading -Oracle Open Office Math : loading;XML files -Oracle Open Office Math : locale settings -Oracle Open Office Math : logarithms -Oracle Open Office Math : logic symbols -Oracle Open Office Math : logical operators -Oracle Open Office Math : lower limits -Oracle Open Office Math : lowercase letters -Oracle Open Office Math : lowercase letters;font effects -Oracle Open Office Math : Macro Wizard (Base) -Oracle Open Office Math : macros -Oracle Open Office Math : macros;assigning to events in forms -Oracle Open Office Math : macros;attaching new (Base) -Oracle Open Office Math : macros;in MS Office documents -Oracle Open Office Math : macros;interrupting -Oracle Open Office Math : macros;organizing -Oracle Open Office Math : macros;recording -Oracle Open Office Math : macros;security -Oracle Open Office Math : macros;security levels -Oracle Open Office Math : macros;security warning dialog -Oracle Open Office Math : macros;selecting security warnings -Oracle Open Office Math : magnifiers -Oracle Open Office Math : margins -Oracle Open Office Math : margins;pages -Oracle Open Office Math : margins;setting with the mouse -Oracle Open Office Math : margins;shadows -Oracle Open Office Math : markers -Oracle Open Office Math : markers;definition -Oracle Open Office Math : markers;next -Oracle Open Office Math : markers;previous -Oracle Open Office Math : marking changes -Oracle Open Office Math : marking, see selecting -Oracle Open Office Math : Math formula editor -Oracle Open Office Math : mathematical symbols -Oracle Open Office Math : mathematical symbols;catalog -Oracle Open Office Math : mathematical symbols;other -Oracle Open Office Math : matrices -Oracle Open Office Math : matrices;arranging -Oracle Open Office Math : maximum formula size -Oracle Open Office Math : measurement units -Oracle Open Office Math : measurement units;changing on rulers -Oracle Open Office Math : measurement units;converting -Oracle Open Office Math : measurement units;selecting -Oracle Open Office Math : Media Player window -Oracle Open Office Math : menus -Oracle Open Office Math : menus;activating context menus -Oracle Open Office Math : menus;assigning macros -Oracle Open Office Math : menus;customizing -Oracle Open Office Math : merging -Oracle Open Office Math : merging;documents -Oracle Open Office Math : merging;formula parts -Oracle Open Office Math : META tags -Oracle Open Office Math : metrics -Oracle Open Office Math : metrics;converting -Oracle Open Office Math : metrics;document formatting (Writer) -Oracle Open Office Math : metrics;in sheets -Oracle Open Office Math : Microsoft Office -Oracle Open Office Math : Microsoft Office;Access databases (base) -Oracle Open Office Math : Microsoft Office;as default file format -Oracle Open Office Math : Microsoft Office;document import restrictions -Oracle Open Office Math : Microsoft Office;feature comparisons -Oracle Open Office Math : Microsoft Office;importing password protected files -Oracle Open Office Math : Microsoft Office;importing Word documents -Oracle Open Office Math : Microsoft Office;importing/exporting VBA code -Oracle Open Office Math : Microsoft Office;new users information -Oracle Open Office Math : Microsoft Office;opening Microsoft documents -Oracle Open Office Math : Microsoft Office;reassigning document types -Oracle Open Office Math : migrating macros (Base) -Oracle Open Office Math : minus signs -Oracle Open Office Math : minus/plus signs -Oracle Open Office Math : mobile device filters -Oracle Open Office Math : models in XForms -Oracle Open Office Math : modifying, see changing -Oracle Open Office Math : more controls -Oracle Open Office Math : mosaic filter -Oracle Open Office Math : mouse -Oracle Open Office Math : mouse;pointers when using drag and drop -Oracle Open Office Math : mouse;positioning -Oracle Open Office Math : movies -Oracle Open Office Math : moving -Oracle Open Office Math : moving;tab stops on ruler -Oracle Open Office Math : moving;toolbars -Oracle Open Office Math : moving;using guide lines in presentations -Oracle Open Office Math : MS ADO interface (Base) -Oracle Open Office Math : much greater than relation -Oracle Open Office Math : much less than relation -Oracle Open Office Math : multi-line formulas -Oracle Open Office Math : multi-line formulas;aligning -Oracle Open Office Math : multi-line titles in forms -Oracle Open Office Math : multiple documents -Oracle Open Office Math : multiple documents;opening -Oracle Open Office Math : multiple selection -Oracle Open Office Math : multiplication signs -Oracle Open Office Math : music -Oracle Open Office Math : My Documents folder -Oracle Open Office Math : My Documents folder;changing work directory -Oracle Open Office Math : My Documents folder;opening -Oracle Open Office Math : MySQL databases (Base) -Oracle Open Office Math : Nabla operator -Oracle Open Office Math : names -Oracle Open Office Math : names;multi-line titles -Oracle Open Office Math : names;objects -Oracle Open Office Math : names, see also labels/callouts -Oracle Open Office Math : namespace organization in XForms -Oracle Open Office Math : native SQL (Base) -Oracle Open Office Math : natural exponential functions -Oracle Open Office Math : natural logarithms -Oracle Open Office Math : natural numbers -Oracle Open Office Math : navigating -Oracle Open Office Math : navigating;in documents -Oracle Open Office Math : Navigation bar -Oracle Open Office Math : Navigation bar;controls -Oracle Open Office Math : Navigation bar;forms -Oracle Open Office Math : Navigator -Oracle Open Office Math : Navigator;comments -Oracle Open Office Math : Navigator;contents as lists -Oracle Open Office Math : Navigator;docking -Oracle Open Office Math : Navigator;working with -Oracle Open Office Math : network identity options -Oracle Open Office Math : new databases -Oracle Open Office Math : new documents -Oracle Open Office Math : new lines in cells -Oracle Open Office Math : new symbols in Oracle Open Office Math -Oracle Open Office Math : new windows -Oracle Open Office Math : non-breaking dashes -Oracle Open Office Math : non-breaking spaces (Writer) -Oracle Open Office Math : non-printing characters (Writer) -Oracle Open Office Math : not included in set operator -Oracle Open Office Math : NOT operator -Oracle Open Office Math : not subset set operators -Oracle Open Office Math : not superset set operators -Oracle Open Office Math : number formats -Oracle Open Office Math : number formats;codes -Oracle Open Office Math : number formats;formats -Oracle Open Office Math : number formats;recognition in text tables -Oracle Open Office Math : number of pages -Oracle Open Office Math : number of sheets -Oracle Open Office Math : number of tables -Oracle Open Office Math : numbering -Oracle Open Office Math : numbering;options -Oracle Open Office Math : numbering;turning off -Oracle Open Office Math : numbering;using automatically -Oracle Open Office Math : numbers -Oracle Open Office Math : numbers;date, time and currency formats -Oracle Open Office Math : numerical fields in forms -Oracle Open Office Math : objects -Oracle Open Office Math : objects;always moveable (Impress/Draw) -Oracle Open Office Math : objects;arranging within stacks -Oracle Open Office Math : objects;copying when moving in presentations -Oracle Open Office Math : objects;definition -Oracle Open Office Math : objects;displaying in spreadsheets -Oracle Open Office Math : objects;displaying in text documents -Oracle Open Office Math : objects;editing -Oracle Open Office Math : objects;inserting from Gallery -Oracle Open Office Math : objects;inserting OLE objects -Oracle Open Office Math : objects;moving and resizing with mouse -Oracle Open Office Math : objects;naming -Oracle Open Office Math : objects;opening -Oracle Open Office Math : objects;quickly moving to -Oracle Open Office Math : objects;titles and descriptions -Oracle Open Office Math : ODBC -Oracle Open Office Math : ODBC;database (Base) -Oracle Open Office Math : ODBC;definition -Oracle Open Office Math : ODF file formats -Oracle Open Office Math : Office -Oracle Open Office Math : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Math : OLE -Oracle Open Office Math : OLE;definition -Oracle Open Office Math : OLE objects -Oracle Open Office Math : OLE objects;arranging within stacks -Oracle Open Office Math : OLE objects;captions (Writer) -Oracle Open Office Math : OLE objects;inserting -Oracle Open Office Math : OLE objects;number of -Oracle Open Office Math : OLE objects;protecting -Oracle Open Office Math : one and a half line spacing in text -Oracle Open Office Math : online feedback options -Oracle Open Office Math : online registration -Oracle Open Office Math : online update options -Oracle Open Office Math : online updates -Oracle Open Office Math : online updates;checking automatically -Oracle Open Office Math : online updates;checking manually -Oracle Open Office Math : OpenDocument file formats -Oracle Open Office Math : OpenGL -Oracle Open Office Math : OpenGL;definition -Oracle Open Office Math : opening -Oracle Open Office Math : opening;context menus -Oracle Open Office Math : opening;database files -Oracle Open Office Math : opening;dialog settings -Oracle Open Office Math : opening;documents -Oracle Open Office Math : opening;documents from other formats -Oracle Open Office Math : opening;documents on WebDAV server -Oracle Open Office Math : opening;files with links -Oracle Open Office Math : opening;files, with placeholders -Oracle Open Office Math : opening;forms -Oracle Open Office Math : opening;Microsoft Office files -Oracle Open Office Math : opening;mobile device documents -Oracle Open Office Math : opening;objects -Oracle Open Office Math : opening;reports -Oracle Open Office Math : opening;several files -Oracle Open Office Math : opening;XForms -Oracle Open Office Math : operator brackets -Oracle Open Office Math : operators -Oracle Open Office Math : operators;default filters -Oracle Open Office Math : operators;general -Oracle Open Office Math : operators;in Math -Oracle Open Office Math : operators;list of -Oracle Open Office Math : operators;unary and binary -Oracle Open Office Math : optional hyphens (Writer) -Oracle Open Office Math : options -Oracle Open Office Math : options;accessibility -Oracle Open Office Math : options;appearance -Oracle Open Office Math : options;compatibility (Writer) -Oracle Open Office Math : options;improvement program -Oracle Open Office Math : options;network identity -Oracle Open Office Math : options;online update -Oracle Open Office Math : options;tools -Oracle Open Office Math : OR operator -Oracle Open Office Math : Oracle databases (base) -Oracle Open Office Math : Oracle Open Office Base data sources -Oracle Open Office Math : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Math : Oracle Open Office documents -Oracle Open Office Math : Oracle Open Office documents;mobile device filters -Oracle Open Office Math : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Math : Oracle Open Office Math -Oracle Open Office Math : Oracle Open Office Math;entering symbols in -Oracle Open Office Math : Oracle Open Office Math;examples -Oracle Open Office Math : Oracle Open Office Math;formatting -Oracle Open Office Math : Oracle Open Office Math;general instructions -Oracle Open Office Math : Oracle Open Office Math;reference list -Oracle Open Office Math : Oracle Open Office Math;relations -Oracle Open Office Math : Oracle Open Office Math start -Oracle Open Office Math : ordering -Oracle Open Office Math : ordering;objects -Oracle Open Office Math : ordinal numbers -Oracle Open Office Math : ordinal numbers;replacing -Oracle Open Office Math : organizing -Oracle Open Office Math : organizing;macros and scripts -Oracle Open Office Math : organizing;namespaces in XForms -Oracle Open Office Math : organizing;styles -Oracle Open Office Math : organizing;templates -Oracle Open Office Math : original by correspondence -Oracle Open Office Math : original size -Oracle Open Office Math : original size;printing in Oracle Open Office Math -Oracle Open Office Math : original size;restoring after cropping -Oracle Open Office Math : orphaned brackets -Oracle Open Office Math : orthogonal relations -Oracle Open Office Math : other operators -Oracle Open Office Math : other operators;list of -Oracle Open Office Math : outlines -Oracle Open Office Math : outlines;font effects -Oracle Open Office Math : outlines;outline symbols -Oracle Open Office Math : outlines;sending to presentations -Oracle Open Office Math : overline attribute -Oracle Open Office Math : overwrite mode -Oracle Open Office Math : owns command -Oracle Open Office Math : packages, see extensions -Oracle Open Office Math : page breaks -Oracle Open Office Math : page breaks;displaying (Calc) -Oracle Open Office Math : page formats -Oracle Open Office Math : page formats;maximizing -Oracle Open Office Math : page formats;restriction -Oracle Open Office Math : page styles -Oracle Open Office Math : page styles;editing/applying with statusbar -Oracle Open Office Math : pages -Oracle Open Office Math : pages;backgrounds in all applications -Oracle Open Office Math : pages;formatting and numbering -Oracle Open Office Math : pages;printing page names in presentations -Oracle Open Office Math : pages;scaling -Oracle Open Office Math : pages;selecting one to print -Oracle Open Office Math : paint box -Oracle Open Office Math : paint can symbol -Oracle Open Office Math : pair kerning -Oracle Open Office Math : Palm file filters -Oracle Open Office Math : paper formats -Oracle Open Office Math : paper size warning -Oracle Open Office Math : paper trays -Oracle Open Office Math : paragraph marks -Oracle Open Office Math : paragraph marks;displaying (Writer) -Oracle Open Office Math : paragraph styles -Oracle Open Office Math : paragraph styles;languages -Oracle Open Office Math : paragraph styles;modifying basic fonts -Oracle Open Office Math : paragraphs -Oracle Open Office Math : paragraphs;alignment -Oracle Open Office Math : paragraphs;Asian typography -Oracle Open Office Math : paragraphs;defining borders -Oracle Open Office Math : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Math : paragraphs;increasing indents of -Oracle Open Office Math : paragraphs;indents, margins and columns -Oracle Open Office Math : paragraphs;inserting bullets -Oracle Open Office Math : paragraphs;joining -Oracle Open Office Math : paragraphs;numbering automatically -Oracle Open Office Math : paragraphs;removing blank ones -Oracle Open Office Math : paragraphs;spacing -Oracle Open Office Math : paragraphs;tab stops -Oracle Open Office Math : parallel relation -Oracle Open Office Math : parameters -Oracle Open Office Math : parameters;command line -Oracle Open Office Math : parameters;queries (Base) -Oracle Open Office Math : parentheses (Math) -Oracle Open Office Math : partial differentiation symbol -Oracle Open Office Math : passwords for protecting contents -Oracle Open Office Math : pasting -Oracle Open Office Math : pasting;cell ranges -Oracle Open Office Math : pasting;cell ranges from spreadsheets -Oracle Open Office Math : pasting;data from text documents -Oracle Open Office Math : pasting;draw objects -Oracle Open Office Math : pasting;draw objects from other documents -Oracle Open Office Math : pasting;formatted/unformatted text -Oracle Open Office Math : pasting;from data source view -Oracle Open Office Math : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Math : pasting;pictures from other documents -Oracle Open Office Math : pasting;sheet areas in text documents -Oracle Open Office Math : pasting;to Gallery -Oracle Open Office Math : paths -Oracle Open Office Math : paths;changing work directory -Oracle Open Office Math : paths;defaults -Oracle Open Office Math : pattern editor -Oracle Open Office Math : pattern fields -Oracle Open Office Math : pattern fields;form functions -Oracle Open Office Math : patterns for objects -Oracle Open Office Math : PDF -Oracle Open Office Math : PDF;export -Oracle Open Office Math : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Math : personal data input -Oracle Open Office Math : phonetic guide -Oracle Open Office Math : picklist creation -Oracle Open Office Math : picture by correspondence -Oracle Open Office Math : pictures -Oracle Open Office Math : pictures;adding to Gallery -Oracle Open Office Math : pictures;arranging within stacks -Oracle Open Office Math : pictures;assigning macros -Oracle Open Office Math : pictures;backgrounds -Oracle Open Office Math : pictures;captions (Writer) -Oracle Open Office Math : pictures;changing paths -Oracle Open Office Math : pictures;cropping and zooming -Oracle Open Office Math : pictures;displaying in Calc -Oracle Open Office Math : pictures;displaying in Writer (Writer) -Oracle Open Office Math : pictures;drag and drop between documents -Oracle Open Office Math : pictures;drawing -Oracle Open Office Math : pictures;editing -Oracle Open Office Math : pictures;filters -Oracle Open Office Math : pictures;ImageMap -Oracle Open Office Math : pictures;inserting automatically -Oracle Open Office Math : pictures;inserting from Gallery -Oracle Open Office Math : pictures;number of -Oracle Open Office Math : pictures;printing -Oracle Open Office Math : pictures;scaling/resizing -Oracle Open Office Math : pixel editor -Oracle Open Office Math : pixel graphics -Oracle Open Office Math : pixel graphics;inserting and editing -Oracle Open Office Math : pixel patterns -Oracle Open Office Math : placeholders -Oracle Open Office Math : placeholders;in SQL queries -Oracle Open Office Math : placeholders;inserting in formulas -Oracle Open Office Math : placeholders;on opening files -Oracle Open Office Math : placeholders;position of next -Oracle Open Office Math : placeholders;previous marker -Oracle Open Office Math : placing toolbars -Oracle Open Office Math : playing movies and sound files -Oracle Open Office Math : plotting data as charts -Oracle Open Office Math : plug-ins -Oracle Open Office Math : plug-ins;activating and deactivating -Oracle Open Office Math : plug-ins;definition -Oracle Open Office Math : plug-ins;inserting -Oracle Open Office Math : plus signs -Oracle Open Office Math : plus/minus signs -Oracle Open Office Math : pocket device appliances -Oracle Open Office Math : Pocket PC file filters -Oracle Open Office Math : points -Oracle Open Office Math : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Math : polygon drawing -Oracle Open Office Math : pop-art filter -Oracle Open Office Math : portable document format -Oracle Open Office Math : positioning -Oracle Open Office Math : positioning;draw objects and controls -Oracle Open Office Math : positioning;fonts -Oracle Open Office Math : positioning;objects -Oracle Open Office Math : positioning;toolbars -Oracle Open Office Math : post method for form transmissions -Oracle Open Office Math : posterizing filter -Oracle Open Office Math : PostScript -Oracle Open Office Math : PostScript;creating files -Oracle Open Office Math : PostScript;PDF converter, UNIX -Oracle Open Office Math : PowerPoint export -Oracle Open Office Math : powers -Oracle Open Office Math : precision as shown (Calc) -Oracle Open Office Math : predefining fonts -Oracle Open Office Math : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Math : presentations -Oracle Open Office Math : presentations;creating/opening -Oracle Open Office Math : presentations;inserting spreadsheet cells -Oracle Open Office Math : presentations;live on the Internet -Oracle Open Office Math : presentations;print menu -Oracle Open Office Math : presentations;saving -Oracle Open Office Math : presentations;saving automatically -Oracle Open Office Math : presentations;saving in other formats -Oracle Open Office Math : presentations;sending as e-mail -Oracle Open Office Math : presentations;starting with wizard -Oracle Open Office Math : presentations;wizards -Oracle Open Office Math : Presenter Console shortcuts -Oracle Open Office Math : press buttons, see push buttons -Oracle Open Office Math : previews -Oracle Open Office Math : previews;fonts lists -Oracle Open Office Math : primary keys -Oracle Open Office Math : primary keys;defining -Oracle Open Office Math : primary keys;design view -Oracle Open Office Math : primary keys;inserting (Base) -Oracle Open Office Math : print area selection -Oracle Open Office Math : printer metrics for document formatting (Writer) -Oracle Open Office Math : printers -Oracle Open Office Math : printers;adding, UNIX -Oracle Open Office Math : printers;choosing -Oracle Open Office Math : printers;default printer -Oracle Open Office Math : printers;faxes under UNIX -Oracle Open Office Math : printers;maximum page formats -Oracle Open Office Math : printers;paper trays -Oracle Open Office Math : printers;properties -Oracle Open Office Math : printing -Oracle Open Office Math : printing;black and white -Oracle Open Office Math : printing;brochures -Oracle Open Office Math : printing;colors in grayscale -Oracle Open Office Math : printing;comments -Oracle Open Office Math : printing;copies -Oracle Open Office Math : printing;creating individual jobs -Oracle Open Office Math : printing;dates in presentations -Oracle Open Office Math : printing;directly -Oracle Open Office Math : printing;documents -Oracle Open Office Math : printing;drawings defaults -Oracle Open Office Math : printing;elements in text documents -Oracle Open Office Math : printing;faster -Oracle Open Office Math : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Math : printing;fitting to pages in presentations -Oracle Open Office Math : printing;formulas in Oracle Open Office Math -Oracle Open Office Math : printing;hidden pages of presentations -Oracle Open Office Math : printing;in original size in Oracle Open Office Math -Oracle Open Office Math : printing;left/right pages -Oracle Open Office Math : printing;queries (Base) -Oracle Open Office Math : printing;scaling in Oracle Open Office Math -Oracle Open Office Math : printing;selections -Oracle Open Office Math : printing;text always in black -Oracle Open Office Math : printing;text in reverse order -Oracle Open Office Math : printing;tiling pages in presentations -Oracle Open Office Math : printing;transparencies -Oracle Open Office Math : printing;warnings -Oracle Open Office Math : printing;without scaling in presentations -Oracle Open Office Math : printing speed -Oracle Open Office Math : product -Oracle Open Office Math : programming -Oracle Open Office Math : programming;Oracle Open Office -Oracle Open Office Math : programming;scripting -Oracle Open Office Math : properties -Oracle Open Office Math : properties;fields in databases -Oracle Open Office Math : properties;files -Oracle Open Office Math : properties;form controls -Oracle Open Office Math : properties;forms -Oracle Open Office Math : properties;printers -Oracle Open Office Math : proportional to relation -Oracle Open Office Math : protected contents -Oracle Open Office Math : protected dashes -Oracle Open Office Math : protected database tables -Oracle Open Office Math : protected documents -Oracle Open Office Math : protected spaces -Oracle Open Office Math : protected spaces;inserting -Oracle Open Office Math : protected spaces;showing (Writer) -Oracle Open Office Math : protecting -Oracle Open Office Math : protecting;contents -Oracle Open Office Math : protecting;recorded changes -Oracle Open Office Math : proxy settings -Oracle Open Office Math : push buttons -Oracle Open Office Math : push buttons;adding to documents -Oracle Open Office Math : push buttons;creating -Oracle Open Office Math : queries -Oracle Open Office Math : queries;copying (Base) -Oracle Open Office Math : queries;creating in design view (Base) -Oracle Open Office Math : queries;creating in SQL view -Oracle Open Office Math : queries;defining (Base) -Oracle Open Office Math : queries;deleting table links (Base) -Oracle Open Office Math : queries;editing in data source view -Oracle Open Office Math : queries;formulating filter conditions (Base) -Oracle Open Office Math : queries;joining tables (Base) -Oracle Open Office Math : queries;missing elements (Base) -Oracle Open Office Math : queries;overview (Base) -Oracle Open Office Math : queries;parameter queries (Base) -Oracle Open Office Math : queries;printing (Base) -Oracle Open Office Math : Query Wizard (Base) -Oracle Open Office Math : Quickstarter -Oracle Open Office Math : quotes -Oracle Open Office Math : quotes;custom -Oracle Open Office Math : quotient set -Oracle Open Office Math : radio button creation -Oracle Open Office Math : range of integral example -Oracle Open Office Math : rational numbers -Oracle Open Office Math : read-only documents -Oracle Open Office Math : read-only documents;cursor -Oracle Open Office Math : read-only documents;database tables on/off -Oracle Open Office Math : read-only documents;editing -Oracle Open Office Math : read-only documents;opening documents as -Oracle Open Office Math : read-only items in Data Navigator -Oracle Open Office Math : real numbers -Oracle Open Office Math : real part of complex numbers -Oracle Open Office Math : recognizing URLs automatically -Oracle Open Office Math : recording -Oracle Open Office Math : recording;changes -Oracle Open Office Math : recording;macros -Oracle Open Office Math : records -Oracle Open Office Math : records;inserting comments -Oracle Open Office Math : records;protecting -Oracle Open Office Math : records;saving -Oracle Open Office Math : records;searching in databases -Oracle Open Office Math : rectangles with round corners -Oracle Open Office Math : recursions in spreadsheets -Oracle Open Office Math : redo command -Oracle Open Office Math : reduced printing -Oracle Open Office Math : reference lines -Oracle Open Office Math : reference tables -Oracle Open Office Math : reference tables;formulas -Oracle Open Office Math : references -Oracle Open Office Math : references;displaying in color (Calc) -Oracle Open Office Math : references;expanding (Calc) -Oracle Open Office Math : references;iterative (Calc) -Oracle Open Office Math : refreshing formula view -Oracle Open Office Math : register-true -Oracle Open Office Math : register-true;definition -Oracle Open Office Math : registering -Oracle Open Office Math : registering;address books -Oracle Open Office Math : registering;databases (Base) -Oracle Open Office Math : registering;Oracle Open Office -Oracle Open Office Math : regular expressions -Oracle Open Office Math : regular expressions;list of -Oracle Open Office Math : relational databases (Base) -Oracle Open Office Math : relations -Oracle Open Office Math : relations;creating and deleting (Base) -Oracle Open Office Math : relations;in Oracle Open Office Math -Oracle Open Office Math : relations;joining tables (Base) -Oracle Open Office Math : relations;properties (Base) -Oracle Open Office Math : relations operators -Oracle Open Office Math : relations operators;list of -Oracle Open Office Math : relative hyperlinks -Oracle Open Office Math : relative saving of URLs -Oracle Open Office Math : reloading -Oracle Open Office Math : reloading;documents -Oracle Open Office Math : reloading;HTML documents, automatically -Oracle Open Office Math : remarks, see also comments -Oracle Open Office Math : remote configurations -Oracle Open Office Math : remove noise filter -Oracle Open Office Math : removing -Oracle Open Office Math : removing;bullets and numbering -Oracle Open Office Math : removing;form filters -Oracle Open Office Math : removing, see also deleting -Oracle Open Office Math : repeating -Oracle Open Office Math : repeating;commands -Oracle Open Office Math : replacement options -Oracle Open Office Math : replacement table -Oracle Open Office Math : replacing -Oracle Open Office Math : replacing;AutoCorrect function -Oracle Open Office Math : replacing;dashes -Oracle Open Office Math : replacing;ordinal numbers -Oracle Open Office Math : replacing;tab stops (regular expressions) -Oracle Open Office Math : Report Builder -Oracle Open Office Math : reports -Oracle Open Office Math : reports;creating -Oracle Open Office Math : reports;error reports -Oracle Open Office Math : reports;opening and editing -Oracle Open Office Math : reports;templates -Oracle Open Office Math : resetting -Oracle Open Office Math : resetting;templates -Oracle Open Office Math : resizing -Oracle Open Office Math : resizing;fonts -Oracle Open Office Math : resizing;objects, by mouse -Oracle Open Office Math : resizing, see also scaling/zooming -Oracle Open Office Math : resolution when printing bitmaps -Oracle Open Office Math : restoring -Oracle Open Office Math : restoring;default formatting -Oracle Open Office Math : restoring;editing -Oracle Open Office Math : reversed circumflex attribute -Oracle Open Office Math : reversing printing order -Oracle Open Office Math : review function -Oracle Open Office Math : review function;accepting or rejecting changes -Oracle Open Office Math : review function;comparing documents -Oracle Open Office Math : review function;protecting records -Oracle Open Office Math : review function;recording changes example -Oracle Open Office Math : rich text control -Oracle Open Office Math : right alignment of paragraphs -Oracle Open Office Math : right angled relations -Oracle Open Office Math : right arrow symbol -Oracle Open Office Math : right joins (Base) -Oracle Open Office Math : right-justified alignment in Oracle Open Office Math -Oracle Open Office Math : right-to-left text -Oracle Open Office Math : roots -Oracle Open Office Math : rotating -Oracle Open Office Math : rotating;3D text -Oracle Open Office Math : round brackets -Oracle Open Office Math : round corners -Oracle Open Office Math : rounding precision (Calc) -Oracle Open Office Math : row headers -Oracle Open Office Math : row headers;displaying (Calc) -Oracle Open Office Math : row headers;highlighting (Calc) -Oracle Open Office Math : rulers -Oracle Open Office Math : rulers;default settings -Oracle Open Office Math : rulers;measurement units -Oracle Open Office Math : rulers;visible in presentations -Oracle Open Office Math : samples and templates -Oracle Open Office Math : saving -Oracle Open Office Math : saving;default file formats -Oracle Open Office Math : saving;dialog settings -Oracle Open Office Math : saving;documents -Oracle Open Office Math : saving;documents for mobile devices -Oracle Open Office Math : saving;documents in other formats -Oracle Open Office Math : saving;documents, automatically -Oracle Open Office Math : saving;in Microsoft Office file format -Oracle Open Office Math : saving;options -Oracle Open Office Math : saving;templates -Oracle Open Office Math : saving;to XML -Oracle Open Office Math : saving;VBA code in Microsoft Office documents -Oracle Open Office Math : saving;with password by default -Oracle Open Office Math : saving as command -Oracle Open Office Math : saving as command;precautions -Oracle Open Office Math : scalable braces -Oracle Open Office Math : scalable lines with ceiling -Oracle Open Office Math : scalable round brackets -Oracle Open Office Math : scaling -Oracle Open Office Math : scaling;font sizes in user interface -Oracle Open Office Math : scaling;fonts -Oracle Open Office Math : scaling;in Oracle Open Office Math -Oracle Open Office Math : scaling;objects -Oracle Open Office Math : scaling;pictures -Oracle Open Office Math : scaling;printing in Oracle Open Office Math -Oracle Open Office Math : scaling;when printing presentations -Oracle Open Office Math : scaling, see also zooming -Oracle Open Office Math : screen -Oracle Open Office Math : screen;full screen views -Oracle Open Office Math : screen;scaling -Oracle Open Office Math : screen magnifiers -Oracle Open Office Math : screen readers -Oracle Open Office Math : script organization -Oracle Open Office Math : scrollbars -Oracle Open Office Math : scrollbars;controls -Oracle Open Office Math : scrollbars;displaying (Calc) -Oracle Open Office Math : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Math : search criteria for database functions in cells -Oracle Open Office Math : search engines -Oracle Open Office Math : search engines;definition -Oracle Open Office Math : search engines;selecting -Oracle Open Office Math : searching -Oracle Open Office Math : searching;all sheets -Oracle Open Office Math : searching;databases -Oracle Open Office Math : searching;form filters -Oracle Open Office Math : searching;Internet -Oracle Open Office Math : searching;tables and forms -Oracle Open Office Math : sections -Oracle Open Office Math : sections;backgrounds -Oracle Open Office Math : security -Oracle Open Office Math : security;digital signatures -Oracle Open Office Math : security;options for documents with macros -Oracle Open Office Math : security;protecting contents -Oracle Open Office Math : security;security levels for macros -Oracle Open Office Math : security;warning dialogs with macros -Oracle Open Office Math : selecting -Oracle Open Office Math : selecting;controls -Oracle Open Office Math : selecting;measurement units -Oracle Open Office Math : selecting;objects -Oracle Open Office Math : selecting;print areas -Oracle Open Office Math : selecting;several files -Oracle Open Office Math : selection clipboard -Oracle Open Office Math : selection frames -Oracle Open Office Math : selection modes in text -Oracle Open Office Math : selection options in formulas -Oracle Open Office Math : sending -Oracle Open Office Math : sending;AutoAbstract function in presentations -Oracle Open Office Math : sending;documents as e-mail -Oracle Open Office Math : sending;documents as faxes -Oracle Open Office Math : separator lines -Oracle Open Office Math : separator lines;defining -Oracle Open Office Math : separators -Oracle Open Office Math : separators;conditional -Oracle Open Office Math : Server Side ImageMap -Oracle Open Office Math : set operations in Oracle Open OfficeMath -Oracle Open Office Math : set operators -Oracle Open Office Math : set operators;list of -Oracle Open Office Math : sets of numbers -Oracle Open Office Math : settings -Oracle Open Office Math : settings;printers -Oracle Open Office Math : settings;program configuration -Oracle Open Office Math : settings;proxies -Oracle Open Office Math : settings;tracking changes -Oracle Open Office Math : settings;views -Oracle Open Office Math : SGML -Oracle Open Office Math : SGML;definition -Oracle Open Office Math : shadows -Oracle Open Office Math : shadows;areas -Oracle Open Office Math : shadows;borders -Oracle Open Office Math : shadows;characters -Oracle Open Office Math : shadows;characters, using context menu -Oracle Open Office Math : sharing documents -Oracle Open Office Math : sharpening filter -Oracle Open Office Math : sheet tabs -Oracle Open Office Math : sheet tabs;displaying -Oracle Open Office Math : sheets -Oracle Open Office Math : sheets;searching all -Oracle Open Office Math : shortcut keys -Oracle Open Office Math : shortcut keys;assigning macros -Oracle Open Office Math : shortcut keys;general -Oracle Open Office Math : shortcut keys;in databases -Oracle Open Office Math : shortcut keys;in formulas -Oracle Open Office Math : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Math : showing -Oracle Open Office Math : showing;changes -Oracle Open Office Math : showing;docked windows -Oracle Open Office Math : showing;drawings and controls (Writer) -Oracle Open Office Math : showing;live presentations on the Internet -Oracle Open Office Math : showing;toolbars -Oracle Open Office Math : signing documents with digital signatures -Oracle Open Office Math : similar to relations -Oracle Open Office Math : similarity search -Oracle Open Office Math : simple handles (Writer) -Oracle Open Office Math : simplified Chinese -Oracle Open Office Math : simplified Chinese;translating to traditional Chinese -Oracle Open Office Math : sine function -Oracle Open Office Math : single brackets without group function -Oracle Open Office Math : single sign on options -Oracle Open Office Math : single-line spacing in text -Oracle Open Office Math : sizes -Oracle Open Office Math : sizes;draw objects -Oracle Open Office Math : sizes;of fonts in Oracle Open Office Math -Oracle Open Office Math : sizes;pictures -Oracle Open Office Math : slanting draw objects -Oracle Open Office Math : slash division sign -Oracle Open Office Math : small capitals -Oracle Open Office Math : small gaps -Oracle Open Office Math : small icons -Oracle Open Office Math : smart tag configuration -Oracle Open Office Math : smooth scrolling (Writer) -Oracle Open Office Math : smoothing filter -Oracle Open Office Math : snap grid defaults (Writer/Calc) -Oracle Open Office Math : snapping in presentations and drawings -Oracle Open Office Math : solarization filter -Oracle Open Office Math : sort lists -Oracle Open Office Math : sort lists;copying to in Calc -Oracle Open Office Math : sorting -Oracle Open Office Math : sorting;data in forms -Oracle Open Office Math : sorting;databases -Oracle Open Office Math : sound files -Oracle Open Office Math : spaces -Oracle Open Office Math : spaces;displaying (Writer) -Oracle Open Office Math : spaces;ignoring double -Oracle Open Office Math : spaces;inserting protected spaces -Oracle Open Office Math : spaces;showing protected spaces (Writer) -Oracle Open Office Math : spaces in formulas -Oracle Open Office Math : spacing -Oracle Open Office Math : spacing;between paragraphs in footnotes -Oracle Open Office Math : spacing;font effects -Oracle Open Office Math : spacing;formula elements -Oracle Open Office Math : spacing;lines and paragraphs -Oracle Open Office Math : spacing;tab stops in text documents -Oracle Open Office Math : spacing;tabs in presentations -Oracle Open Office Math : spadmin -Oracle Open Office Math : special characters -Oracle Open Office Math : speech bubbles -Oracle Open Office Math : speed of printing -Oracle Open Office Math : spellcheck -Oracle Open Office Math : spellcheck;activating for a language -Oracle Open Office Math : spellcheck;context menus -Oracle Open Office Math : spellcheck;default languages -Oracle Open Office Math : spellcheck;dialog -Oracle Open Office Math : spellcheck;dictionary of exceptions -Oracle Open Office Math : spellcheck;ignore list -Oracle Open Office Math : spin button creation -Oracle Open Office Math : spoolfiles with Xprinter -Oracle Open Office Math : spreadsheets -Oracle Open Office Math : spreadsheets;as databases (base) -Oracle Open Office Math : spreadsheets;copying areas to text documents -Oracle Open Office Math : spreadsheets;creating/opening -Oracle Open Office Math : spreadsheets;inserting charts -Oracle Open Office Math : spreadsheets;inserting database records -Oracle Open Office Math : spreadsheets;printing -Oracle Open Office Math : spreadsheets;saving -Oracle Open Office Math : spreadsheets;saving automatically -Oracle Open Office Math : spreadsheets;saving in other formats -Oracle Open Office Math : spreadsheets;sending as e-mail -Oracle Open Office Math : SQL -Oracle Open Office Math : SQL;definition -Oracle Open Office Math : SQL;DISTINCT parameter -Oracle Open Office Math : SQL;executing SQL commands -Oracle Open Office Math : SQL;executing SQL statements (Base) -Oracle Open Office Math : SQL;queries (Base) -Oracle Open Office Math : square brackets -Oracle Open Office Math : square drawings -Oracle Open Office Math : square roots -Oracle Open Office Math : stacks -Oracle Open Office Math : standard bar on/off -Oracle Open Office Math : standard filters in databases -Oracle Open Office Math : standard printer under UNIX -Oracle Open Office Math : start center -Oracle Open Office Math : start parameters -Oracle Open Office Math : status bar on/off -Oracle Open Office Math : stickers -Oracle Open Office Math : strikethrough -Oracle Open Office Math : strikethrough;characters -Oracle Open Office Math : strikethrough;font effects -Oracle Open Office Math : styles -Oracle Open Office Math : styles;'changed' message -Oracle Open Office Math : styles;copying between documents -Oracle Open Office Math : styles;keyboard shortcuts -Oracle Open Office Math : styles;organizing -Oracle Open Office Math : styles;printing styles used in a document -Oracle Open Office Math : styles;replacing automatically -Oracle Open Office Math : Styles and Formatting window -Oracle Open Office Math : Styles and Formatting window;docking -Oracle Open Office Math : subforms -Oracle Open Office Math : subforms;creating -Oracle Open Office Math : subforms;description -Oracle Open Office Math : submitting forms -Oracle Open Office Math : subscripts -Oracle Open Office Math : subset set operators -Oracle Open Office Math : subtraction signs -Oracle Open Office Math : suffixes in file formats -Oracle Open Office Math : sum range example -Oracle Open Office Math : summation -Oracle Open Office Math : superscripts -Oracle Open Office Math : superset set operators -Oracle Open Office Math : support on the Web -Oracle Open Office Math : symbols -Oracle Open Office Math : symbols;adding in Oracle Open Office Math -Oracle Open Office Math : symbols;entering in Oracle Open Office Math -Oracle Open Office Math : symbols;for complex numbers -Oracle Open Office Math : synchronizing -Oracle Open Office Math : synchronizing;labels and business cards -Oracle Open Office Math : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Math : system address book registration -Oracle Open Office Math : tab stops -Oracle Open Office Math : tab stops;displaying (Writer) -Oracle Open Office Math : tab stops;inserting and editing -Oracle Open Office Math : tab stops;regular expressions -Oracle Open Office Math : tab stops;setting in sheets -Oracle Open Office Math : tab stops;settings -Oracle Open Office Math : tab stops;spacing in presentations -Oracle Open Office Math : tab stops;spacing in text documents -Oracle Open Office Math : table controls -Oracle Open Office Math : table controls;form functions -Oracle Open Office Math : table controls;keyboard-only edit mode -Oracle Open Office Math : table controls;properties -Oracle Open Office Math : table views of databases -Oracle Open Office Math : Table Wizard (Base) -Oracle Open Office Math : tables -Oracle Open Office Math : tables;inserting line breaks -Oracle Open Office Math : tables in databases -Oracle Open Office Math : tables in databases;access rights to (Base) -Oracle Open Office Math : tables in databases;adding to queries -Oracle Open Office Math : tables in databases;browsing and editing -Oracle Open Office Math : tables in databases;copying database tables (Base) -Oracle Open Office Math : tables in databases;creating -Oracle Open Office Math : tables in databases;creating in design view (manually) -Oracle Open Office Math : tables in databases;importing text formats (Base) -Oracle Open Office Math : tables in databases;joining for queries (Base) -Oracle Open Office Math : tables in databases;printing queries (Base) -Oracle Open Office Math : tables in databases;relations (Base) -Oracle Open Office Math : tables in databases;searching -Oracle Open Office Math : tables in spreadsheets -Oracle Open Office Math : tables in spreadsheets;copying data to other applications -Oracle Open Office Math : tables in spreadsheets;defining borders -Oracle Open Office Math : tables in spreadsheets;value highlighting -Oracle Open Office Math : tables in text -Oracle Open Office Math : tables in text;captions -Oracle Open Office Math : tables in text;creating automatically -Oracle Open Office Math : tables in text;default settings -Oracle Open Office Math : tables in text;defining borders -Oracle Open Office Math : tables in text;displaying -Oracle Open Office Math : tables in text;printing -Oracle Open Office Math : tabs -Oracle Open Office Math : tabs;displaying sheet tabs -Oracle Open Office Math : tags -Oracle Open Office Math : tags;definition -Oracle Open Office Math : tags;META tags -Oracle Open Office Math : tangent function -Oracle Open Office Math : templates -Oracle Open Office Math : templates;agendas -Oracle Open Office Math : templates;changing basic fonts -Oracle Open Office Math : templates;database reports -Oracle Open Office Math : templates;deleting -Oracle Open Office Math : templates;editing and saving -Oracle Open Office Math : templates;faxes -Oracle Open Office Math : templates;importing and exporting -Oracle Open Office Math : templates;letters -Oracle Open Office Math : templates;new documents from templates -Oracle Open Office Math : templates;opening documents with -Oracle Open Office Math : templates;organizing -Oracle Open Office Math : terminology -Oracle Open Office Math : terminology;general glossary -Oracle Open Office Math : terminology;Internet glossary -Oracle Open Office Math : testing XML filters -Oracle Open Office Math : text -Oracle Open Office Math : text;animating -Oracle Open Office Math : text;Asian layout -Oracle Open Office Math : text;bold -Oracle Open Office Math : text;coloring -Oracle Open Office Math : text;copying by drag and drop -Oracle Open Office Math : text;CTL languages -Oracle Open Office Math : text;drawing pictures -Oracle Open Office Math : text;font effects -Oracle Open Office Math : text;font sizes -Oracle Open Office Math : text;font styles -Oracle Open Office Math : text;fonts and formats -Oracle Open Office Math : text;Fontwork icons -Oracle Open Office Math : text;hyperlinks -Oracle Open Office Math : text;inserting special characters -Oracle Open Office Math : text;italics -Oracle Open Office Math : text;kerning -Oracle Open Office Math : text;language selection -Oracle Open Office Math : text;line spacing -Oracle Open Office Math : text;overwriting or inserting -Oracle Open Office Math : text;printing in black -Oracle Open Office Math : text;replacing with format -Oracle Open Office Math : text;selection modes -Oracle Open Office Math : text;shadowed -Oracle Open Office Math : text;text/draw objects -Oracle Open Office Math : text attributes -Oracle Open Office Math : text attributes;hyperlinks -Oracle Open Office Math : text attributes;undoing -Oracle Open Office Math : text boxes -Oracle Open Office Math : text boxes;form functions -Oracle Open Office Math : text boxes;positioning -Oracle Open Office Math : text breaks in cells -Oracle Open Office Math : text colors for better accessibility -Oracle Open Office Math : text databases (Base) -Oracle Open Office Math : text documents -Oracle Open Office Math : text documents;creating/opening -Oracle Open Office Math : text documents;importing/exporting -Oracle Open Office Math : text documents;inserting spreadsheet cells -Oracle Open Office Math : text documents;print settings -Oracle Open Office Math : text documents;printing -Oracle Open Office Math : text documents;saving -Oracle Open Office Math : text documents;saving automatically -Oracle Open Office Math : text documents;saving in other formats -Oracle Open Office Math : text documents;sending as e-mail -Oracle Open Office Math : text effects -Oracle Open Office Math : text flow -Oracle Open Office Math : text flow;in cells -Oracle Open Office Math : text formats -Oracle Open Office Math : text formats;databases -Oracle Open Office Math : text formats;pasting -Oracle Open Office Math : text input fields -Oracle Open Office Math : text layout for special languages -Oracle Open Office Math : text mode in Oracle Open Office Math -Oracle Open Office Math : text objects -Oracle Open Office Math : text objects;alignment -Oracle Open Office Math : text objects;draw functions -Oracle Open Office Math : text objects;fonts -Oracle Open Office Math : text objects;in presentations and drawings -Oracle Open Office Math : text overflow in spreadsheet cells -Oracle Open Office Math : text strings -Oracle Open Office Math : text strings;entering in Oracle Open Office Math -Oracle Open Office Math : text, see also text documents, paragraphs and characters -Oracle Open Office Math : TextArt, see Fontwork -Oracle Open Office Math : textures -Oracle Open Office Math : textures;inserting from Gallery -Oracle Open Office Math : textures;on chart bars -Oracle Open Office Math : Thai -Oracle Open Office Math : Thai;entering text -Oracle Open Office Math : Thai;language settings -Oracle Open Office Math : there exists symbol -Oracle Open Office Math : thesaurus -Oracle Open Office Math : thesaurus;activating for a language -Oracle Open Office Math : ticker text -Oracle Open Office Math : tilde as attribute -Oracle Open Office Math : time fields -Oracle Open Office Math : time fields;form functions -Oracle Open Office Math : times -Oracle Open Office Math : times;inserting when printing presentations -Oracle Open Office Math : times, formats -Oracle Open Office Math : tips -Oracle Open Office Math : tips;extended tips in Help -Oracle Open Office Math : title rows -Oracle Open Office Math : title rows;printing in Oracle Open Office Math -Oracle Open Office Math : titles -Oracle Open Office Math : titles;changing -Oracle Open Office Math : titles;editing in charts -Oracle Open Office Math : titles;font effects -Oracle Open Office Math : titles;formatting automatically -Oracle Open Office Math : titles;objects -Oracle Open Office Math : toolbars -Oracle Open Office Math : toolbars;adding buttons -Oracle Open Office Math : toolbars;docking/undocking -Oracle Open Office Math : toolbars;Form Navigation bar -Oracle Open Office Math : toolbars;viewing/closing -Oracle Open Office Math : tools bar -Oracle Open Office Math : tooltips -Oracle Open Office Math : tooltips;extended tips -Oracle Open Office Math : tooltips;help -Oracle Open Office Math : toward relation -Oracle Open Office Math : traditional Chinese -Oracle Open Office Math : traditional Chinese;translating to simplified chinese -Oracle Open Office Math : transparency -Oracle Open Office Math : transparency;areas -Oracle Open Office Math : transparency;off for faster printing -Oracle Open Office Math : transparency;saving -Oracle Open Office Math : transparent character as attribute -Oracle Open Office Math : tree view of Help -Oracle Open Office Math : trigonometrical functions -Oracle Open Office Math : triple dot attribute -Oracle Open Office Math : typefaces -Oracle Open Office Math : typefaces;adding under UNIX -Oracle Open Office Math : typefaces;formats -Oracle Open Office Math : typography -Oracle Open Office Math : typography;Asian -Oracle Open Office Math : unary operators -Oracle Open Office Math : unary operators;list of -Oracle Open Office Math : unary operators -Oracle Open Office Math : underline attribute -Oracle Open Office Math : underlining -Oracle Open Office Math : underlining;AutoFormat function -Oracle Open Office Math : underlining;characters -Oracle Open Office Math : underlining;text -Oracle Open Office Math : undocking windows -Oracle Open Office Math : undoing -Oracle Open Office Math : undoing;direct formatting -Oracle Open Office Math : undoing;editing -Oracle Open Office Math : undoing;number of steps -Oracle Open Office Math : unequal sign -Oracle Open Office Math : ungrouping groups -Oracle Open Office Math : union of sets -Oracle Open Office Math : units -Oracle Open Office Math : units;converting -Oracle Open Office Math : units;measurement units -Oracle Open Office Math : universal quantifier symbol -Oracle Open Office Math : UNO components -Oracle Open Office Math : UNO components;Extension Manager -Oracle Open Office Math : UNO components;integrating new -Oracle Open Office Math : up arrow symbol -Oracle Open Office Math : update options -Oracle Open Office Math : updates -Oracle Open Office Math : updates;checking automatically -Oracle Open Office Math : updates;checking manually -Oracle Open Office Math : updating -Oracle Open Office Math : updating;fields and charts, automatically (Writer) -Oracle Open Office Math : updating;links in text documents -Oracle Open Office Math : updating;links, on opening -Oracle Open Office Math : updating;templates -Oracle Open Office Math : upper limits -Oracle Open Office Math : URL -Oracle Open Office Math : URL;changing hyperlink URLs -Oracle Open Office Math : URL;definition -Oracle Open Office Math : URL;in pictures -Oracle Open Office Math : URL;saving absolute/relative paths -Oracle Open Office Math : URL;turning off URL recognition -Oracle Open Office Math : user data -Oracle Open Office Math : user data;input -Oracle Open Office Math : user data;removing when saving -Oracle Open Office Math : user feedback -Oracle Open Office Math : user feedback;automatically -Oracle Open Office Math : user-defined dictionaries -Oracle Open Office Math : user-defined dictionaries;creating -Oracle Open Office Math : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Math : user-defined dictionaries;editing -Oracle Open Office Math : user-defined operators -Oracle Open Office Math : user-defined operators;general -Oracle Open Office Math : user-defined operators;unary and binary -Oracle Open Office Math : user-defined styles -Oracle Open Office Math : user-defined styles;automatically replacing -Oracle Open Office Math : UTF-8/UCS2 support -Oracle Open Office Math : values -Oracle Open Office Math : values;absolute -Oracle Open Office Math : values;rounded as shown (Calc) -Oracle Open Office Math : variables -Oracle Open Office Math : variables;for paths -Oracle Open Office Math : variables;with right exponents -Oracle Open Office Math : VBA code -Oracle Open Office Math : VBA code;loading/saving documents with VBA code -Oracle Open Office Math : vector arrows as attributes -Oracle Open Office Math : version management -Oracle Open Office Math : version numbers of documents -Oracle Open Office Math : versions -Oracle Open Office Math : versions;comparing documents -Oracle Open Office Math : versions;file saving as, restriction -Oracle Open Office Math : versions;merging document versions -Oracle Open Office Math : versions;of a document -Oracle Open Office Math : versions;Oracle Open Office -Oracle Open Office Math : vertical arrangement of elements -Oracle Open Office Math : vertical bars -Oracle Open Office Math : vertical callouts -Oracle Open Office Math : vertical dots symbol -Oracle Open Office Math : vertical elements -Oracle Open Office Math : vertical scrollbars (Writer) -Oracle Open Office Math : vertical text boxes -Oracle Open Office Math : videos -Oracle Open Office Math : viewing -Oracle Open Office Math : viewing;databases -Oracle Open Office Math : viewing;file properties -Oracle Open Office Math : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Math : viewing;toolbars -Oracle Open Office Math : views -Oracle Open Office Math : views;creating database views (Base) -Oracle Open Office Math : views;defaults -Oracle Open Office Math : views;full screen -Oracle Open Office Math : views;icons -Oracle Open Office Math : views;maximum size -Oracle Open Office Math : views;scaling -Oracle Open Office Math : views;zooming out Oracle Open Office Math -Oracle Open Office Math : Visual Basic for Applications -Oracle Open Office Math : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Math : watermarks -Oracle Open Office Math : web documents -Oracle Open Office Math : web documents;XForms -Oracle Open Office Math : Web support -Oracle Open Office Math : WebCast export -Oracle Open Office Math : WebDAV over HTTPS -Oracle Open Office Math : weierstrass p symbol -Oracle Open Office Math : whole numbers -Oracle Open Office Math : wide circumflex attribute -Oracle Open Office Math : wide tilde attribute -Oracle Open Office Math : wide vector arrow attribute -Oracle Open Office Math : widowed brackets -Oracle Open Office Math : windows -Oracle Open Office Math : windows;docking -Oracle Open Office Math : windows;docking definition -Oracle Open Office Math : windows;hiding/showing/docking -Oracle Open Office Math : windows;new -Oracle Open Office Math : wizards -Oracle Open Office Math : wizards;agendas -Oracle Open Office Math : wizards;database queries -Oracle Open Office Math : wizards;database tables (Base) -Oracle Open Office Math : wizards;databases (Base) -Oracle Open Office Math : wizards;document converter -Oracle Open Office Math : wizards;Euro Converter -Oracle Open Office Math : wizards;faxes -Oracle Open Office Math : wizards;forms -Oracle Open Office Math : wizards;letters -Oracle Open Office Math : wizards;macros (Base) -Oracle Open Office Math : wizards;overview -Oracle Open Office Math : wizards;presentations -Oracle Open Office Math : wizards;reports -Oracle Open Office Math : Word documents -Oracle Open Office Math : Word documents;compatibility -Oracle Open Office Math : Word documents;saving as -Oracle Open Office Math : WordArt, see Fontwork -Oracle Open Office Math : words -Oracle Open Office Math : words;automatically replacing -Oracle Open Office Math : words;wrapping in cells -Oracle Open Office Math : words;wrapping in CTL -Oracle Open Office Math : working directory change -Oracle Open Office Math : wrapping text -Oracle Open Office Math : wrapping text;in cells -Oracle Open Office Math : wrapping text;in formulas -Oracle Open Office Math : write protection on/off -Oracle Open Office Math : writing aids options -Oracle Open Office Math : WYSIWYG in fonts lists -Oracle Open Office Math : XForms -Oracle Open Office Math : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Math : XForms;conditions -Oracle Open Office Math : XForms;opening/editing -Oracle Open Office Math : XML converters -Oracle Open Office Math : XML file formats -Oracle Open Office Math : XML filters -Oracle Open Office Math : XML filters;creating/testing -Oracle Open Office Math : XML filters;saving as package/installing/deleting -Oracle Open Office Math : XML filters;settings -Oracle Open Office Math : XML Forms, see XForms -Oracle Open Office Math : XSLT filters, see also XML filters -Oracle Open Office Math : years -Oracle Open Office Math : years;2-digit options -Oracle Open Office Math : zero values -Oracle Open Office Math : zero values;displaying (Calc) -Oracle Open Office Math : zooming -Oracle Open Office Math : zooming;page views -Oracle Open Office Math : zooming;pictures -Oracle Open Office Math : zooming;status bar -Oracle Open Office Math : zooming in on formula display -Oracle Open Office Math : zooming out on formula display -Oracle Open Office Writer : 3D charts -Oracle Open Office Writer : 3D text creation -Oracle Open Office Writer : abbreviation replacement -Oracle Open Office Writer : abbreviations -Oracle Open Office Writer : absolute hyperlinks -Oracle Open Office Writer : absolute saving of URLs -Oracle Open Office Writer : accents -Oracle Open Office Writer : Access databases (base) -Oracle Open Office Writer : access rights for database tables (Base) -Oracle Open Office Writer : accessibility -Oracle Open Office Writer : accessibility;general shortcuts -Oracle Open Office Writer : accessibility;options -Oracle Open Office Writer : accessibility;Oracle Open Office assistive technology -Oracle Open Office Writer : accessibility;Oracle Open Office features -Oracle Open Office Writer : accessibility;Oracle Open Office Writer -Oracle Open Office Writer : activating -Oracle Open Office Writer : activating;context menus -Oracle Open Office Writer : activating;Error Report Tool -Oracle Open Office Writer : activating;extended help tips -Oracle Open Office Writer : activating;plug-ins -Oracle Open Office Writer : ActiveX control -Oracle Open Office Writer : Adabas D databases (base) -Oracle Open Office Writer : add-ons, see UNO components -Oracle Open Office Writer : additional selection mode -Oracle Open Office Writer : address books -Oracle Open Office Writer : address books;exchanging -Oracle Open Office Writer : address books;LDAP server (Base) -Oracle Open Office Writer : address books;registering -Oracle Open Office Writer : address labels from databases -Oracle Open Office Writer : adjusting page margins and cell widths -Oracle Open Office Writer : ADO databases (Base) -Oracle Open Office Writer : Agenda Wizard -Oracle Open Office Writer : aging filter -Oracle Open Office Writer : aligning -Oracle Open Office Writer : aligning;2D charts -Oracle Open Office Writer : aligning;cells -Oracle Open Office Writer : aligning;objects -Oracle Open Office Writer : aligning;paragraphs -Oracle Open Office Writer : aligning;tables in text -Oracle Open Office Writer : aligning;text objects -Oracle Open Office Writer : aligning;titles in charts -Oracle Open Office Writer : alphabetical indexes -Oracle Open Office Writer : alternative fonts -Oracle Open Office Writer : ampersand symbol, see also operators -Oracle Open Office Writer : anchors -Oracle Open Office Writer : anchors;changing -Oracle Open Office Writer : anchors;displaying (Calc) -Oracle Open Office Writer : anchors;options -Oracle Open Office Writer : anchors;types/positions for draw objects -Oracle Open Office Writer : animations -Oracle Open Office Writer : animations;accessibility options -Oracle Open Office Writer : animations;text -Oracle Open Office Writer : appearance options -Oracle Open Office Writer : Arabic -Oracle Open Office Writer : Arabic;entering text -Oracle Open Office Writer : Arabic;language settings -Oracle Open Office Writer : area charts -Oracle Open Office Writer : areas -Oracle Open Office Writer : areas;bitmap patterns -Oracle Open Office Writer : areas;hatched/dotted -Oracle Open Office Writer : areas;shadows -Oracle Open Office Writer : areas;slanting -Oracle Open Office Writer : areas;styles -Oracle Open Office Writer : areas;transparency -Oracle Open Office Writer : arguments in command line -Oracle Open Office Writer : arithmetical operators in formulas -Oracle Open Office Writer : arranging -Oracle Open Office Writer : arranging;headings -Oracle Open Office Writer : arranging;objects -Oracle Open Office Writer : arrows -Oracle Open Office Writer : arrows;defining arrow heads -Oracle Open Office Writer : arrows;defining arrow lines -Oracle Open Office Writer : arrows;drawing in text -Oracle Open Office Writer : ASCII -Oracle Open Office Writer : ASCII;definition -Oracle Open Office Writer : Asian languages -Oracle Open Office Writer : Asian languages;enabling -Oracle Open Office Writer : Asian languages;search options -Oracle Open Office Writer : Asian languages;sorting paragraphs/table rows -Oracle Open Office Writer : Asian Phonetic Guide -Oracle Open Office Writer : Asian typography -Oracle Open Office Writer : aspect ratio -Oracle Open Office Writer : aspect ratio;resizing objects -Oracle Open Office Writer : assigning scripts -Oracle Open Office Writer : assistive technology in Oracle Open Office -Oracle Open Office Writer : attaching toolbars -Oracle Open Office Writer : attachments in e-mails -Oracle Open Office Writer : audio -Oracle Open Office Writer : auto reloading HTML documents -Oracle Open Office Writer : AutoAbstract function for sending text to presentations -Oracle Open Office Writer : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Writer : AutoComplete function in text and list boxes -Oracle Open Office Writer : AutoCorrect function -Oracle Open Office Writer : AutoCorrect function;adding exceptions -Oracle Open Office Writer : AutoCorrect function;context menu -Oracle Open Office Writer : AutoCorrect function;options -Oracle Open Office Writer : AutoCorrect function;pictures and frames -Oracle Open Office Writer : AutoCorrect function;quotes -Oracle Open Office Writer : AutoCorrect function;replacement table -Oracle Open Office Writer : AutoCorrect function;smart tags -Oracle Open Office Writer : AutoCorrect function;switching on and off in Calc -Oracle Open Office Writer : AutoCorrect function;turning off -Oracle Open Office Writer : AutoCorrect function;URL recognition -Oracle Open Office Writer : AutoCorrect function;word completion -Oracle Open Office Writer : AutoFormat function -Oracle Open Office Writer : AutoFormat function;applying to text tables -Oracle Open Office Writer : AutoFormat function;headings -Oracle Open Office Writer : AutoFormat function;switching on and off -Oracle Open Office Writer : AutoFormat function;text documents -Oracle Open Office Writer : automatic bullets/numbers -Oracle Open Office Writer : automatic bullets/numbers;AutoCorrect function -Oracle Open Office Writer : automatic captions (Writer) -Oracle Open Office Writer : automatic changes on/off -Oracle Open Office Writer : automatic control focus -Oracle Open Office Writer : automatic heading formatting -Oracle Open Office Writer : automatic hyperlink formatting -Oracle Open Office Writer : automatic hyphenation in text -Oracle Open Office Writer : automatic line breaks -Oracle Open Office Writer : automatic lines/borders in text -Oracle Open Office Writer : automatic numbering -Oracle Open Office Writer : automatic numbering;of objects -Oracle Open Office Writer : automatic saving -Oracle Open Office Writer : automatic spellcheck -Oracle Open Office Writer : automatic word completion -Oracle Open Office Writer : AutoPilots, see wizards -Oracle Open Office Writer : AutoText -Oracle Open Office Writer : AutoValue (Base) -Oracle Open Office Writer : averages in charts -Oracle Open Office Writer : axes -Oracle Open Office Writer : axes;better scaling -Oracle Open Office Writer : axes;formatting -Oracle Open Office Writer : axes;formatting grids -Oracle Open Office Writer : axes;inserting grids -Oracle Open Office Writer : axes;interval marks -Oracle Open Office Writer : axes;showing axes in charts -Oracle Open Office Writer : axes in charts -Oracle Open Office Writer : backgrounds -Oracle Open Office Writer : backgrounds;defining colors/pictures -Oracle Open Office Writer : backgrounds;different pages -Oracle Open Office Writer : backgrounds;frames/sections/indexes -Oracle Open Office Writer : backgrounds;inserting from Gallery -Oracle Open Office Writer : backgrounds;printing -Oracle Open Office Writer : backgrounds;text objects -Oracle Open Office Writer : backing window -Oracle Open Office Writer : backups -Oracle Open Office Writer : backups;automatic -Oracle Open Office Writer : backups;documents -Oracle Open Office Writer : bar charts -Oracle Open Office Writer : Basic -Oracle Open Office Writer : Basic;fonts for source display -Oracle Open Office Writer : Basic;programming -Oracle Open Office Writer : Basic;recording macros -Oracle Open Office Writer : basic fonts -Oracle Open Office Writer : behavior of rows/columns -Oracle Open Office Writer : Bézier curves -Oracle Open Office Writer : Bézier curves;control points in presentations -Oracle Open Office Writer : bi-directional writing -Oracle Open Office Writer : bibliographies -Oracle Open Office Writer : binding space -Oracle Open Office Writer : bitmaps -Oracle Open Office Writer : bitmaps;inserting and editing -Oracle Open Office Writer : bitmaps;off for faster printing -Oracle Open Office Writer : bitmaps;patterns -Oracle Open Office Writer : black and white printing -Oracle Open Office Writer : black printing in Calc -Oracle Open Office Writer : blank pages with alternating page styles -Oracle Open Office Writer : block protect, see also widows or orphans -Oracle Open Office Writer : block selection mode -Oracle Open Office Writer : blocks of text -Oracle Open Office Writer : bold -Oracle Open Office Writer : bold;AutoFormat function -Oracle Open Office Writer : bold;formatting while typing -Oracle Open Office Writer : bold;text -Oracle Open Office Writer : book previews -Oracle Open Office Writer : book view -Oracle Open Office Writer : booklet printing -Oracle Open Office Writer : bookmarks -Oracle Open Office Writer : bookmarks;Help -Oracle Open Office Writer : bookmarks;inserting -Oracle Open Office Writer : bookmarks;positioning cursor -Oracle Open Office Writer : borders -Oracle Open Office Writer : borders;arranging -Oracle Open Office Writer : borders;automatic drawing on/off -Oracle Open Office Writer : borders;cells on screen (Calc) -Oracle Open Office Writer : borders;for footnotes/endnotes -Oracle Open Office Writer : borders;for headers/footers -Oracle Open Office Writer : borders;for objects -Oracle Open Office Writer : borders;for pages -Oracle Open Office Writer : borders;for paragraphs -Oracle Open Office Writer : borders;for tables -Oracle Open Office Writer : borders;for text tables -Oracle Open Office Writer : borders;shadows -Oracle Open Office Writer : borders;table boundaries (Writer) -Oracle Open Office Writer : borders, see also frames -Oracle Open Office Writer : bound fields -Oracle Open Office Writer : bound fields;controls -Oracle Open Office Writer : boundaries of tables (Writer) -Oracle Open Office Writer : break display (Writer) -Oracle Open Office Writer : brochures -Oracle Open Office Writer : brochures;printing individual -Oracle Open Office Writer : brochures;printing several -Oracle Open Office Writer : brush for copying styles -Oracle Open Office Writer : bubble charts -Oracle Open Office Writer : build numbers of Oracle Open Office -Oracle Open Office Writer : bullet lists -Oracle Open Office Writer : bullet lists;changing levels -Oracle Open Office Writer : bullet lists;creating while typing -Oracle Open Office Writer : bullet lists;formatting options -Oracle Open Office Writer : bullet lists;interrupting -Oracle Open Office Writer : bullet lists;turning on and off -Oracle Open Office Writer : bullets -Oracle Open Office Writer : bullets;adding and editing -Oracle Open Office Writer : bullets;paragraphs -Oracle Open Office Writer : bullets;replacing -Oracle Open Office Writer : bullets;turning off -Oracle Open Office Writer : bullets;using automatically -Oracle Open Office Writer : business cards -Oracle Open Office Writer : business cards;creating and synchronizing -Oracle Open Office Writer : business cards;using templates -Oracle Open Office Writer : button bars, see toolbars -Oracle Open Office Writer : buttons -Oracle Open Office Writer : buttons;adding push buttons -Oracle Open Office Writer : buttons;big/small -Oracle Open Office Writer : buttons;editing hyperlink buttons -Oracle Open Office Writer : buttons;form functions -Oracle Open Office Writer : buttons;toolbars -Oracle Open Office Writer : cache for graphics -Oracle Open Office Writer : calculating -Oracle Open Office Writer : calculating;across multiple text tables -Oracle Open Office Writer : calculating;formulas/mean values -Oracle Open Office Writer : calculating;in text -Oracle Open Office Writer : calculating;in text tables -Oracle Open Office Writer : calculating;iterative references (Calc) -Oracle Open Office Writer : calculating;regression curves -Oracle Open Office Writer : calculating;sums in text tables -Oracle Open Office Writer : callouts -Oracle Open Office Writer : callouts;drawings -Oracle Open Office Writer : capital letters -Oracle Open Office Writer : capital letters;AutoCorrect function -Oracle Open Office Writer : capital letters;avoiding after specific abbreviations -Oracle Open Office Writer : capital letters;changing to small letters -Oracle Open Office Writer : capital letters;changing to small letters after periods -Oracle Open Office Writer : capital letters;font effects -Oracle Open Office Writer : capital letters;starting paragraphs -Oracle Open Office Writer : captions -Oracle Open Office Writer : captions;adding chapter numbers -Oracle Open Office Writer : captions;automatic captions (Writer) -Oracle Open Office Writer : captions;inserting and editing -Oracle Open Office Writer : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Writer : captions, see also labels/callouts -Oracle Open Office Writer : cascading update (Base) -Oracle Open Office Writer : case sensitivity -Oracle Open Office Writer : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Writer : case sensitivity;searching -Oracle Open Office Writer : cell merges -Oracle Open Office Writer : cells -Oracle Open Office Writer : cells;adapting the width by keyboard -Oracle Open Office Writer : cells;aligning -Oracle Open Office Writer : cells;backgrounds -Oracle Open Office Writer : cells;borders in text tables -Oracle Open Office Writer : cells;calculating sums -Oracle Open Office Writer : cells;coloring (Calc) -Oracle Open Office Writer : cells;cursor positions after input (Calc) -Oracle Open Office Writer : cells;enlarging and reducing in text tables -Oracle Open Office Writer : cells;formatting without effect (Calc) -Oracle Open Office Writer : cells;inserting from spreadsheets -Oracle Open Office Writer : cells;line breaks -Oracle Open Office Writer : cells;linked to controls -Oracle Open Office Writer : cells;merging/splitting -Oracle Open Office Writer : cells;number of -Oracle Open Office Writer : cells;pasting -Oracle Open Office Writer : cells;protecting/unprotecting -Oracle Open Office Writer : cells;resetting formats -Oracle Open Office Writer : cells;showing grid lines (Calc) -Oracle Open Office Writer : centered text -Oracle Open Office Writer : centering -Oracle Open Office Writer : centering;images on HTML pages -Oracle Open Office Writer : centering;text frames on pages -Oracle Open Office Writer : centimeters -Oracle Open Office Writer : central documents -Oracle Open Office Writer : certificates -Oracle Open Office Writer : changes -Oracle Open Office Writer : changes;accepting or rejecting -Oracle Open Office Writer : changes;automatic -Oracle Open Office Writer : changes;comparing to original -Oracle Open Office Writer : changes;protecting -Oracle Open Office Writer : changes;recording -Oracle Open Office Writer : changes;review function -Oracle Open Office Writer : changes;showing -Oracle Open Office Writer : changing -Oracle Open Office Writer : changing;bulleting symbols -Oracle Open Office Writer : changing;cases of text -Oracle Open Office Writer : changing;document titles -Oracle Open Office Writer : changing;field shadings -Oracle Open Office Writer : changing;fields, into text -Oracle Open Office Writer : changing;file associations in Setup program -Oracle Open Office Writer : changing;icon sizes -Oracle Open Office Writer : changing;indents -Oracle Open Office Writer : changing;links -Oracle Open Office Writer : changing;outline levels -Oracle Open Office Writer : changing;page backgrounds -Oracle Open Office Writer : changing;starting numbers in lists -Oracle Open Office Writer : changing;work directory -Oracle Open Office Writer : changing, see also editing and replacing -Oracle Open Office Writer : chapter names in headers -Oracle Open Office Writer : chapter numbering -Oracle Open Office Writer : chapter numbers in captions -Oracle Open Office Writer : character styles -Oracle Open Office Writer : character styles;language selection -Oracle Open Office Writer : character styles;style categories -Oracle Open Office Writer : characters -Oracle Open Office Writer : characters;alternative fonts -Oracle Open Office Writer : characters;Asian layout -Oracle Open Office Writer : characters;bold -Oracle Open Office Writer : characters;coloring -Oracle Open Office Writer : characters;counting -Oracle Open Office Writer : characters;displaying only on screen (Writer) -Oracle Open Office Writer : characters;enabling CTL and Asian characters -Oracle Open Office Writer : characters;finding all -Oracle Open Office Writer : characters;font effects -Oracle Open Office Writer : characters;fonts and formats -Oracle Open Office Writer : characters;hyperlinks -Oracle Open Office Writer : characters;italics -Oracle Open Office Writer : characters;language selection -Oracle Open Office Writer : characters;shadowed -Oracle Open Office Writer : characters;spacing -Oracle Open Office Writer : characters;special -Oracle Open Office Writer : characters;subscript and superscript -Oracle Open Office Writer : characters;underlining -Oracle Open Office Writer : characters;uppercase or lowercase -Oracle Open Office Writer : charcoal sketches filter -Oracle Open Office Writer : chart legends -Oracle Open Office Writer : chart legends;hiding -Oracle Open Office Writer : chart legends;showing icons with labels -Oracle Open Office Writer : chart types -Oracle Open Office Writer : chart types;area -Oracle Open Office Writer : chart types;bubble -Oracle Open Office Writer : chart types;column and bar -Oracle Open Office Writer : chart types;column and line -Oracle Open Office Writer : chart types;line -Oracle Open Office Writer : chart types;net -Oracle Open Office Writer : chart types;pie/donut -Oracle Open Office Writer : chart types;stock -Oracle Open Office Writer : chart types;XY (scatter) -Oracle Open Office Writer : charts -Oracle Open Office Writer : charts;3D views -Oracle Open Office Writer : charts;aligning -Oracle Open Office Writer : charts;arranging within stacks -Oracle Open Office Writer : charts;bars with textures -Oracle Open Office Writer : charts;borders -Oracle Open Office Writer : charts;choosing chart types -Oracle Open Office Writer : charts;colors -Oracle Open Office Writer : charts;copying from Calc into Writer -Oracle Open Office Writer : charts;copying with link to source cell range -Oracle Open Office Writer : charts;data labels -Oracle Open Office Writer : charts;displaying (Calc) -Oracle Open Office Writer : charts;editing axes -Oracle Open Office Writer : charts;editing data -Oracle Open Office Writer : charts;editing legends -Oracle Open Office Writer : charts;editing titles -Oracle Open Office Writer : charts;formatting areas -Oracle Open Office Writer : charts;formatting floors -Oracle Open Office Writer : charts;formatting walls -Oracle Open Office Writer : charts;inserting -Oracle Open Office Writer : charts;labeling -Oracle Open Office Writer : charts;overview -Oracle Open Office Writer : charts;positioning axes -Oracle Open Office Writer : charts;properties -Oracle Open Office Writer : charts;reorganizing -Oracle Open Office Writer : charts;scaling axes -Oracle Open Office Writer : charts;scaling text -Oracle Open Office Writer : charts;shortcuts -Oracle Open Office Writer : charts;showing axes -Oracle Open Office Writer : charts;updating automatically (Writer) -Oracle Open Office Writer : check box creation -Oracle Open Office Writer : checking spelling -Oracle Open Office Writer : checking spelling;all languages -Oracle Open Office Writer : checking spelling;manually -Oracle Open Office Writer : checking spelling;while typing -Oracle Open Office Writer : Chinese writing systems -Oracle Open Office Writer : choosing printers -Oracle Open Office Writer : circle drawings -Oracle Open Office Writer : Client Side ImageMap -Oracle Open Office Writer : clipboard -Oracle Open Office Writer : clipboard;calculating in text -Oracle Open Office Writer : clipboard;cutting -Oracle Open Office Writer : clipboard;pasting -Oracle Open Office Writer : clipboard;pasting formatted/unformatted text -Oracle Open Office Writer : clipboard;selection clipboard -Oracle Open Office Writer : clipboard;Unix -Oracle Open Office Writer : closing -Oracle Open Office Writer : closing;documents -Oracle Open Office Writer : closing;toolbars -Oracle Open Office Writer : collaboration -Oracle Open Office Writer : color bar -Oracle Open Office Writer : colors -Oracle Open Office Writer : colors;adding -Oracle Open Office Writer : colors;appearance -Oracle Open Office Writer : colors;backgrounds -Oracle Open Office Writer : colors;charts -Oracle Open Office Writer : colors;fill format -Oracle Open Office Writer : colors;fonts -Oracle Open Office Writer : colors;grid lines and cells (Calc) -Oracle Open Office Writer : colors;models -Oracle Open Office Writer : colors;not printing -Oracle Open Office Writer : colors;printing in grayscale -Oracle Open Office Writer : colors;restriction (Calc) -Oracle Open Office Writer : colors;selection -Oracle Open Office Writer : column and line charts -Oracle Open Office Writer : column charts -Oracle Open Office Writer : column headers -Oracle Open Office Writer : column headers;displaying (Calc) -Oracle Open Office Writer : column headers;highlighting (Calc) -Oracle Open Office Writer : columns -Oracle Open Office Writer : columns;breaks in text tables -Oracle Open Office Writer : columns;inserting in tables -Oracle Open Office Writer : columns;inserting/deleting in tables by keyboard -Oracle Open Office Writer : columns;on text pages -Oracle Open Office Writer : columns;selecting -Oracle Open Office Writer : columns;setting with the mouse -Oracle Open Office Writer : combination charts -Oracle Open Office Writer : combo box creation -Oracle Open Office Writer : command button creation -Oracle Open Office Writer : command buttons, see push buttons -Oracle Open Office Writer : command line parameters -Oracle Open Office Writer : commands -Oracle Open Office Writer : commands;repeating -Oracle Open Office Writer : commands;SQL -Oracle Open Office Writer : comments -Oracle Open Office Writer : comments;displaying (Calc) -Oracle Open Office Writer : comments;inserting/editing/deleting/printing -Oracle Open Office Writer : comments;on changes -Oracle Open Office Writer : comments;printing in text -Oracle Open Office Writer : common terms -Oracle Open Office Writer : common terms;Chinese dictionary -Oracle Open Office Writer : common terms;glossaries -Oracle Open Office Writer : common terms;Internet glossary -Oracle Open Office Writer : comparisons -Oracle Open Office Writer : comparisons;document versions -Oracle Open Office Writer : comparisons;operators in default filter dialog -Oracle Open Office Writer : compatibility settings for MS Word import -Oracle Open Office Writer : complete screen view -Oracle Open Office Writer : completion of words -Oracle Open Office Writer : complex text layout -Oracle Open Office Writer : complex text layout;definition -Oracle Open Office Writer : complex text layout;enabling -Oracle Open Office Writer : complex text layout, see CTL -Oracle Open Office Writer : compose key to insert special characters -Oracle Open Office Writer : concatenation, see ampersand symbol -Oracle Open Office Writer : concordance files -Oracle Open Office Writer : concordance files;definition -Oracle Open Office Writer : concordance files;indexes -Oracle Open Office Writer : conditional separators -Oracle Open Office Writer : conditional styles -Oracle Open Office Writer : conditional text -Oracle Open Office Writer : conditional text;page counts -Oracle Open Office Writer : conditional text;setting up -Oracle Open Office Writer : conditions -Oracle Open Office Writer : conditions;in fields and sections -Oracle Open Office Writer : conditions;in number formats -Oracle Open Office Writer : conditions;items in Data Navigator -Oracle Open Office Writer : conditions;user data fields -Oracle Open Office Writer : Configuration Manager -Oracle Open Office Writer : configuring -Oracle Open Office Writer : configuring;fax icon -Oracle Open Office Writer : configuring;Oracle Open Office -Oracle Open Office Writer : configuring;toolbars -Oracle Open Office Writer : connections to data sources (Base) -Oracle Open Office Writer : contents protection -Oracle Open Office Writer : context menus -Oracle Open Office Writer : continuation pages -Oracle Open Office Writer : contour editor -Oracle Open Office Writer : contour wrap -Oracle Open Office Writer : control point display in presentations -Oracle Open Office Writer : controls -Oracle Open Office Writer : controls;activating in forms -Oracle Open Office Writer : controls;adding to documents -Oracle Open Office Writer : controls;arranging in forms -Oracle Open Office Writer : controls;arranging within stacks -Oracle Open Office Writer : controls;assigning data sources -Oracle Open Office Writer : controls;assigning macros (Basic) -Oracle Open Office Writer : controls;bound fields/list contents/linked cells -Oracle Open Office Writer : controls;events -Oracle Open Office Writer : controls;focus -Oracle Open Office Writer : controls;formatted fields -Oracle Open Office Writer : controls;grouping -Oracle Open Office Writer : controls;hidden -Oracle Open Office Writer : controls;inserting -Oracle Open Office Writer : controls;multi-line titles -Oracle Open Office Writer : controls;positions and sizes -Oracle Open Office Writer : controls;printing -Oracle Open Office Writer : controls;properties of form controls -Oracle Open Office Writer : controls;properties of table controls -Oracle Open Office Writer : controls;reference by SQL -Oracle Open Office Writer : controls;rich text control -Oracle Open Office Writer : controls;select mode -Oracle Open Office Writer : controls;showing (Writer) -Oracle Open Office Writer : converters -Oracle Open Office Writer : converters;Euro converter -Oracle Open Office Writer : converters;PostScript, UNIX -Oracle Open Office Writer : converters;XML -Oracle Open Office Writer : converting -Oracle Open Office Writer : converting;fields, into text -Oracle Open Office Writer : converting;Hangul/Hanja -Oracle Open Office Writer : converting;metrics -Oracle Open Office Writer : converting;Microsoft documents -Oracle Open Office Writer : converting;Oracle Open Office documents -Oracle Open Office Writer : converting;Pocket PC formats -Oracle Open Office Writer : converting;sections, into normal text -Oracle Open Office Writer : converting;text, into tables -Oracle Open Office Writer : copies -Oracle Open Office Writer : copies;printing -Oracle Open Office Writer : copies;removing line breaks -Oracle Open Office Writer : copying -Oracle Open Office Writer : copying;by drag and drop -Oracle Open Office Writer : copying;charts from Oracle Open Office Calc -Oracle Open Office Writer : copying;data from text documents -Oracle Open Office Writer : copying;datasource records in spreadsheets -Oracle Open Office Writer : copying;draw objects -Oracle Open Office Writer : copying;draw objects between documents -Oracle Open Office Writer : copying;formatting -Oracle Open Office Writer : copying;from data source view -Oracle Open Office Writer : copying;from Gallery -Oracle Open Office Writer : copying;in Unix -Oracle Open Office Writer : copying;pictures, between documents -Oracle Open Office Writer : copying;sheet areas, to text documents -Oracle Open Office Writer : copying;styles, by fill format mode -Oracle Open Office Writer : copying;styles, from selections -Oracle Open Office Writer : copying;text sections -Oracle Open Office Writer : copying;to Gallery -Oracle Open Office Writer : copyright for Oracle Open Office -Oracle Open Office Writer : corner roundings -Oracle Open Office Writer : counting words -Oracle Open Office Writer : crash reports -Oracle Open Office Writer : criteria of query design (Base) -Oracle Open Office Writer : cropping pictures -Oracle Open Office Writer : cross-references -Oracle Open Office Writer : cross-references;inserting and updating -Oracle Open Office Writer : cross-references;inserting with Navigator -Oracle Open Office Writer : cross-references;modifying -Oracle Open Office Writer : CTL -Oracle Open Office Writer : CTL;(not) wrapping words -Oracle Open Office Writer : CTL;complex text layout languages -Oracle Open Office Writer : CTL;definition -Oracle Open Office Writer : CTL;options -Oracle Open Office Writer : currencies -Oracle Open Office Writer : currencies;converters -Oracle Open Office Writer : currencies;format codes -Oracle Open Office Writer : currency field creation -Oracle Open Office Writer : currency formats -Oracle Open Office Writer : cursor -Oracle Open Office Writer : cursor;allowing in protected areas (Writer) -Oracle Open Office Writer : cursor;direct cursor -Oracle Open Office Writer : cursor;in read-only text -Oracle Open Office Writer : cursor;quickly moving to an object -Oracle Open Office Writer : curves -Oracle Open Office Writer : curves;editing points -Oracle Open Office Writer : curves;properties in line charts/XY charts -Oracle Open Office Writer : custom dictionaries -Oracle Open Office Writer : custom dictionaries;editing -Oracle Open Office Writer : custom dictionaries;removing words from -Oracle Open Office Writer : custom hyphens (Writer) -Oracle Open Office Writer : custom quotes -Oracle Open Office Writer : custom templates -Oracle Open Office Writer : customizing -Oracle Open Office Writer : customizing;events -Oracle Open Office Writer : customizing;keyboard -Oracle Open Office Writer : customizing;menus -Oracle Open Office Writer : customizing;Oracle Open Office -Oracle Open Office Writer : customizing;round corners -Oracle Open Office Writer : customizing;toolbars -Oracle Open Office Writer : cutting -Oracle Open Office Writer : dashes -Oracle Open Office Writer : data -Oracle Open Office Writer : data;filtering in forms -Oracle Open Office Writer : data;forms and subforms -Oracle Open Office Writer : data;read-only -Oracle Open Office Writer : data;sorting in forms -Oracle Open Office Writer : data;user data -Oracle Open Office Writer : data binding change in XForms -Oracle Open Office Writer : data labels in charts -Oracle Open Office Writer : Data Navigator -Oracle Open Office Writer : Data Navigator;adding/editing items -Oracle Open Office Writer : Data Navigator;display options -Oracle Open Office Writer : data ranges in charts -Oracle Open Office Writer : data series -Oracle Open Office Writer : data source browser -Oracle Open Office Writer : data source explorer -Oracle Open Office Writer : data source view -Oracle Open Office Writer : data source view;drag and drop -Oracle Open Office Writer : data source view;overview -Oracle Open Office Writer : data source view;showing -Oracle Open Office Writer : data sources -Oracle Open Office Writer : data sources;as tables -Oracle Open Office Writer : data sources;connection settings (Base) -Oracle Open Office Writer : data sources;copying records to spreadsheets -Oracle Open Office Writer : data sources;displaying current -Oracle Open Office Writer : data sources;LDAP server (Base) -Oracle Open Office Writer : data sources;Oracle Open Office Base -Oracle Open Office Writer : data sources;registering address books -Oracle Open Office Writer : data sources;reports -Oracle Open Office Writer : data sources;setting for stock charts -Oracle Open Office Writer : data sources;viewing -Oracle Open Office Writer : data structure of XForms -Oracle Open Office Writer : data values in charts -Oracle Open Office Writer : data, see also values -Oracle Open Office Writer : database contents -Oracle Open Office Writer : database contents;inserting as tables -Oracle Open Office Writer : database contents;inserting as text -Oracle Open Office Writer : database reports -Oracle Open Office Writer : Database Wizard (Base) -Oracle Open Office Writer : databases -Oracle Open Office Writer : databases;administration through SQL (Base) -Oracle Open Office Writer : databases;ADO (Base) -Oracle Open Office Writer : databases;connecting (Base) -Oracle Open Office Writer : databases;creating -Oracle Open Office Writer : databases;creating bibliographies -Oracle Open Office Writer : databases;creating labels -Oracle Open Office Writer : databases;creating queries -Oracle Open Office Writer : databases;creating reports -Oracle Open Office Writer : databases;creating tables -Oracle Open Office Writer : databases;deleting (Base) -Oracle Open Office Writer : databases;drag and drop (Base) -Oracle Open Office Writer : databases;editing tables -Oracle Open Office Writer : databases;exchanging -Oracle Open Office Writer : databases;form filters -Oracle Open Office Writer : databases;formats (Base) -Oracle Open Office Writer : databases;importing/exporting -Oracle Open Office Writer : databases;in conditions -Oracle Open Office Writer : databases;JDBC (Base) -Oracle Open Office Writer : databases;main page (Base) -Oracle Open Office Writer : databases;ODBC (Base) -Oracle Open Office Writer : databases;overview -Oracle Open Office Writer : databases;registering (Base) -Oracle Open Office Writer : databases;searching records -Oracle Open Office Writer : databases;shortcut keys -Oracle Open Office Writer : databases;sorting -Oracle Open Office Writer : databases;standard filters -Oracle Open Office Writer : databases;text formats -Oracle Open Office Writer : databases;viewing -Oracle Open Office Writer : date fields -Oracle Open Office Writer : date fields;creating -Oracle Open Office Writer : date fields;fixed/variable -Oracle Open Office Writer : date fields;HTML -Oracle Open Office Writer : date fields;properties -Oracle Open Office Writer : date formats -Oracle Open Office Writer : dates -Oracle Open Office Writer : dates;default (Calc) -Oracle Open Office Writer : dates;formatting automatically in tables -Oracle Open Office Writer : dates;inserting -Oracle Open Office Writer : dates;printing in presentations -Oracle Open Office Writer : dates;start 1900/01/01 (Calc) -Oracle Open Office Writer : dates;start 1904/01/01 (Calc) -Oracle Open Office Writer : dBASE -Oracle Open Office Writer : dBASE;database settings (Base) -Oracle Open Office Writer : DDE -Oracle Open Office Writer : DDE;command for inserting sections -Oracle Open Office Writer : DDE;definition -Oracle Open Office Writer : DDE;inserting tables -Oracle Open Office Writer : deactivating -Oracle Open Office Writer : deactivating;plug-ins -Oracle Open Office Writer : deactivating;word completion -Oracle Open Office Writer : decimal places displayed (Calc) -Oracle Open Office Writer : decimal separator key -Oracle Open Office Writer : decimal tab stops -Oracle Open Office Writer : default directories -Oracle Open Office Writer : default filters -Oracle Open Office Writer : default filters;comparison operators -Oracle Open Office Writer : default filters;databases -Oracle Open Office Writer : default printer -Oracle Open Office Writer : default printer;setting up -Oracle Open Office Writer : default printer;UNIX -Oracle Open Office Writer : default templates -Oracle Open Office Writer : default templates;changing -Oracle Open Office Writer : default templates;defining/resetting -Oracle Open Office Writer : default templates;organizing -Oracle Open Office Writer : defaults -Oracle Open Office Writer : defaults;documents -Oracle Open Office Writer : defaults;file formats in file dialogs -Oracle Open Office Writer : defaults;file formats in Oracle Open Office -Oracle Open Office Writer : defaults;fonts -Oracle Open Office Writer : defaults;grids (Writer/Calc) -Oracle Open Office Writer : defaults;languages -Oracle Open Office Writer : defaults;number formats -Oracle Open Office Writer : defaults;of saving -Oracle Open Office Writer : defaults;program configuration -Oracle Open Office Writer : defaults;tab stops in text -Oracle Open Office Writer : defaults;templates -Oracle Open Office Writer : defaults;views -Oracle Open Office Writer : defining -Oracle Open Office Writer : defining;arrowheads and other line ends -Oracle Open Office Writer : defining;colors -Oracle Open Office Writer : defining;conditions -Oracle Open Office Writer : defining;headers/footers -Oracle Open Office Writer : defining;line styles -Oracle Open Office Writer : defining;object borders -Oracle Open Office Writer : defining;page borders -Oracle Open Office Writer : defining;page styles -Oracle Open Office Writer : defining;paragraph borders -Oracle Open Office Writer : defining;queries (Base) -Oracle Open Office Writer : defining;starting page numbers -Oracle Open Office Writer : defining;table borders -Oracle Open Office Writer : defining;table borders in Writer -Oracle Open Office Writer : deleting -Oracle Open Office Writer : deleting;all direct formatting -Oracle Open Office Writer : deleting;comments -Oracle Open Office Writer : deleting;databases (Base) -Oracle Open Office Writer : deleting;entries of indexes/tables of contents -Oracle Open Office Writer : deleting;footnotes -Oracle Open Office Writer : deleting;heading numbers -Oracle Open Office Writer : deleting;hyperlinks -Oracle Open Office Writer : deleting;indexes/tables of contents -Oracle Open Office Writer : deleting;line breaks -Oracle Open Office Writer : deleting;lines in text -Oracle Open Office Writer : deleting;models/instances -Oracle Open Office Writer : deleting;namespaces in XForms -Oracle Open Office Writer : deleting;numbers in lists -Oracle Open Office Writer : deleting;page breaks -Oracle Open Office Writer : deleting;rows/columns, by keyboard -Oracle Open Office Writer : deleting;tab stops -Oracle Open Office Writer : deleting;tables or table contents -Oracle Open Office Writer : deleting;templates -Oracle Open Office Writer : deleting;words in user-defined dictionaries -Oracle Open Office Writer : deleting;XML filters -Oracle Open Office Writer : demoting heading levels -Oracle Open Office Writer : depth stagger -Oracle Open Office Writer : descriptions for objects -Oracle Open Office Writer : design mode after saving -Oracle Open Office Writer : design view -Oracle Open Office Writer : design view;creating forms -Oracle Open Office Writer : design view;queries/views (Base) -Oracle Open Office Writer : designing -Oracle Open Office Writer : designing;database tables -Oracle Open Office Writer : designing;fonts -Oracle Open Office Writer : designing;queries (Base) -Oracle Open Office Writer : detaching toolbars -Oracle Open Office Writer : dictionaries -Oracle Open Office Writer : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Writer : dictionaries;creating -Oracle Open Office Writer : dictionaries;editing user-defined -Oracle Open Office Writer : dictionaries;spellcheck -Oracle Open Office Writer : dictionaries;thesaurus -Oracle Open Office Writer : dictionaries, see also languages -Oracle Open Office Writer : digital signatures -Oracle Open Office Writer : digital signatures;getting/managing/applying -Oracle Open Office Writer : digital signatures;overview -Oracle Open Office Writer : digital signatures;WebDAV over HTTPS -Oracle Open Office Writer : direct cursor -Oracle Open Office Writer : direct cursor;restriction -Oracle Open Office Writer : direct cursor;settings -Oracle Open Office Writer : direct formatting -Oracle Open Office Writer : direct formatting;exiting -Oracle Open Office Writer : direct formatting;undoing all -Oracle Open Office Writer : directories -Oracle Open Office Writer : directories;creating new -Oracle Open Office Writer : directories;directory structure -Oracle Open Office Writer : disabled persons -Oracle Open Office Writer : disabling -Oracle Open Office Writer : disabling;field highlighting -Oracle Open Office Writer : disabling;smart tags -Oracle Open Office Writer : disabling;word completion -Oracle Open Office Writer : displaying -Oracle Open Office Writer : displaying;comments (Calc) -Oracle Open Office Writer : displaying;comments in text documents -Oracle Open Office Writer : displaying;hidden text -Oracle Open Office Writer : displaying;non-printing characters (Writer) -Oracle Open Office Writer : displaying;pictures and objects (Writer) -Oracle Open Office Writer : displaying;tables (Writer) -Oracle Open Office Writer : displaying;zero values (Calc) -Oracle Open Office Writer : distances -Oracle Open Office Writer : distinct values in SQL queries -Oracle Open Office Writer : distorting in drawings -Oracle Open Office Writer : distributing XML filters -Oracle Open Office Writer : dividing tables -Oracle Open Office Writer : DocInformation fields -Oracle Open Office Writer : docking -Oracle Open Office Writer : docking;definition -Oracle Open Office Writer : docking;Navigator window -Oracle Open Office Writer : docking;toolbars -Oracle Open Office Writer : docking;windows -Oracle Open Office Writer : Document Converter Wizard -Oracle Open Office Writer : Document Map, see Navigator -Oracle Open Office Writer : document templates -Oracle Open Office Writer : document types in Oracle Open Office -Oracle Open Office Writer : documents -Oracle Open Office Writer : documents;changing titles -Oracle Open Office Writer : documents;closing -Oracle Open Office Writer : documents;comparing -Oracle Open Office Writer : documents;contents as lists -Oracle Open Office Writer : documents;editing time -Oracle Open Office Writer : documents;exporting -Oracle Open Office Writer : documents;importing -Oracle Open Office Writer : documents;languages -Oracle Open Office Writer : documents;master documents and subdocuments -Oracle Open Office Writer : documents;measurement units in -Oracle Open Office Writer : documents;merging -Oracle Open Office Writer : documents;number of pages/tables/sheets -Oracle Open Office Writer : documents;number of words/characters -Oracle Open Office Writer : documents;opening -Oracle Open Office Writer : documents;opening in design mode -Oracle Open Office Writer : documents;opening with templates -Oracle Open Office Writer : documents;organizing -Oracle Open Office Writer : documents;printing -Oracle Open Office Writer : documents;read-only -Oracle Open Office Writer : documents;reloading -Oracle Open Office Writer : documents;saving -Oracle Open Office Writer : documents;saving automatically -Oracle Open Office Writer : documents;saving in other formats -Oracle Open Office Writer : documents;sending as e-mail -Oracle Open Office Writer : documents;styles changed -Oracle Open Office Writer : documents;version management -Oracle Open Office Writer : documents;version numbers -Oracle Open Office Writer : donut charts -Oracle Open Office Writer : dotted areas -Oracle Open Office Writer : double-line spacing in paragraphs -Oracle Open Office Writer : double-line writing in Asian layout -Oracle Open Office Writer : drag and drop -Oracle Open Office Writer : drag and drop;copying and pasting text -Oracle Open Office Writer : drag and drop;creating new styles -Oracle Open Office Writer : drag and drop;data source view -Oracle Open Office Writer : drag and drop;from Gallery to draw objects -Oracle Open Office Writer : drag and drop;overview -Oracle Open Office Writer : drag and drop;pictures -Oracle Open Office Writer : drag and drop;to Gallery -Oracle Open Office Writer : draw objects -Oracle Open Office Writer : draw objects;adding/editing/copying -Oracle Open Office Writer : draw objects;anchoring -Oracle Open Office Writer : draw objects;arranging within stacks -Oracle Open Office Writer : draw objects;copying between documents -Oracle Open Office Writer : draw objects;cross-referencing -Oracle Open Office Writer : draw objects;displaying (Calc) -Oracle Open Office Writer : draw objects;dropping Gallery pictures -Oracle Open Office Writer : draw objects;flipping -Oracle Open Office Writer : draw objects;inserting captions -Oracle Open Office Writer : draw objects;legends -Oracle Open Office Writer : draw objects;positioning and resizing -Oracle Open Office Writer : draw objects;protecting -Oracle Open Office Writer : draw objects;slanting -Oracle Open Office Writer : draw objects;text in -Oracle Open Office Writer : Drawing bar -Oracle Open Office Writer : drawing lines in text -Oracle Open Office Writer : drawings -Oracle Open Office Writer : drawings;creating/opening -Oracle Open Office Writer : drawings;languages -Oracle Open Office Writer : drawings;printing -Oracle Open Office Writer : drawings;printing defaults -Oracle Open Office Writer : drawings;printing in text documents -Oracle Open Office Writer : drawings;saving -Oracle Open Office Writer : drawings;saving automatically -Oracle Open Office Writer : drawings;saving in other formats -Oracle Open Office Writer : drawings;sending as e-mail -Oracle Open Office Writer : drawings;showing (Writer) -Oracle Open Office Writer : drawings, see also draw objects -Oracle Open Office Writer : drop caps insertion -Oracle Open Office Writer : drop-down lists in form functions -Oracle Open Office Writer : e-mail attachments -Oracle Open Office Writer : Edit File icon -Oracle Open Office Writer : edit mode -Oracle Open Office Writer : edit mode;after opening -Oracle Open Office Writer : edit mode;through Enter key (Calc) -Oracle Open Office Writer : Edit Points bar -Oracle Open Office Writer : editing -Oracle Open Office Writer : editing;captions -Oracle Open Office Writer : editing;chart axes -Oracle Open Office Writer : editing;chart data -Oracle Open Office Writer : editing;chart legends -Oracle Open Office Writer : editing;chart titles -Oracle Open Office Writer : editing;comments -Oracle Open Office Writer : editing;concordance files -Oracle Open Office Writer : editing;cross-references -Oracle Open Office Writer : editing;data binding of XForms -Oracle Open Office Writer : editing;database tables and queries -Oracle Open Office Writer : editing;draw objects -Oracle Open Office Writer : editing;Fontwork objects -Oracle Open Office Writer : editing;footnotes/endnotes -Oracle Open Office Writer : editing;hyperlinks -Oracle Open Office Writer : editing;index format -Oracle Open Office Writer : editing;indexes/tables of contents -Oracle Open Office Writer : editing;menus -Oracle Open Office Writer : editing;objects -Oracle Open Office Writer : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Writer : editing;pictures -Oracle Open Office Writer : editing;reports -Oracle Open Office Writer : editing;sections -Oracle Open Office Writer : editing;shortcut keys -Oracle Open Office Writer : editing;tab stops -Oracle Open Office Writer : editing;table/index entries -Oracle Open Office Writer : editing;templates -Oracle Open Office Writer : editing;text frames -Oracle Open Office Writer : editing;titles -Oracle Open Office Writer : editing;toolbars -Oracle Open Office Writer : editing;undoing -Oracle Open Office Writer : editing;XForms -Oracle Open Office Writer : editing time of documents -Oracle Open Office Writer : editors -Oracle Open Office Writer : editors;contour editor -Oracle Open Office Writer : editors;formula editor -Oracle Open Office Writer : editors;ImageMap editor -Oracle Open Office Writer : effects -Oracle Open Office Writer : effects;font positions -Oracle Open Office Writer : effects;fonts -Oracle Open Office Writer : effects;Fontwork icons -Oracle Open Office Writer : effects;text animation -Oracle Open Office Writer : emphasizing text -Oracle Open Office Writer : empty documents -Oracle Open Office Writer : empty page with alternating page styles -Oracle Open Office Writer : empty paragraph removal -Oracle Open Office Writer : encryption of contents -Oracle Open Office Writer : endnotes -Oracle Open Office Writer : endnotes;inserting and editing -Oracle Open Office Writer : endnotes;spacing -Oracle Open Office Writer : enlarging columns,cells and table rows -Oracle Open Office Writer : entering groups -Oracle Open Office Writer : entering text from right to left -Oracle Open Office Writer : entering text with direct cursor -Oracle Open Office Writer : entries -Oracle Open Office Writer : entries;bibliographies -Oracle Open Office Writer : entries;defining in indexes/tables of contents -Oracle Open Office Writer : entries;in tables of contents, as hyperlinks -Oracle Open Office Writer : envelopes -Oracle Open Office Writer : equal sign, see also operators -Oracle Open Office Writer : equations in formula editor -Oracle Open Office Writer : error bars in charts -Oracle Open Office Writer : error indicators in charts -Oracle Open Office Writer : Error Report Tool -Oracle Open Office Writer : Euro -Oracle Open Office Writer : Euro;currency formats -Oracle Open Office Writer : Euro;Euro Converter Wizard -Oracle Open Office Writer : even/odd pages -Oracle Open Office Writer : even/odd pages;formatting -Oracle Open Office Writer : even/odd pages;printing -Oracle Open Office Writer : events -Oracle Open Office Writer : events;assigning scripts -Oracle Open Office Writer : events;controls -Oracle Open Office Writer : events;customizing -Oracle Open Office Writer : events;in forms -Oracle Open Office Writer : examples for regular expressions -Oracle Open Office Writer : Excel -Oracle Open Office Writer : Excel;saving as -Oracle Open Office Writer : Excel;search criteria -Oracle Open Office Writer : exceptions -Oracle Open Office Writer : exceptions;AutoCorrect function -Oracle Open Office Writer : exceptions;user-defined dictionaries -Oracle Open Office Writer : exchanging databases -Oracle Open Office Writer : exchanging, see also replacing -Oracle Open Office Writer : executing SQL commands -Oracle Open Office Writer : exiting -Oracle Open Office Writer : exiting;direct formatting -Oracle Open Office Writer : exiting;groups -Oracle Open Office Writer : exiting;Oracle Open Office -Oracle Open Office Writer : expanding formatting (Calc) -Oracle Open Office Writer : explorer of data sources -Oracle Open Office Writer : export filters -Oracle Open Office Writer : exporting -Oracle Open Office Writer : exporting;bitmaps -Oracle Open Office Writer : exporting;HTML and text documents -Oracle Open Office Writer : exporting;Microsoft Office documents with VBA code -Oracle Open Office Writer : exporting;spreadsheets to text format -Oracle Open Office Writer : exporting;templates -Oracle Open Office Writer : exporting;to foreign formats -Oracle Open Office Writer : exporting;to HTML -Oracle Open Office Writer : exporting;to Microsoft Office formats -Oracle Open Office Writer : exporting;to PDF -Oracle Open Office Writer : exporting;to PostScript format -Oracle Open Office Writer : exporting;to XML -Oracle Open Office Writer : exporting;XML files -Oracle Open Office Writer : extended tips in Help -Oracle Open Office Writer : extension mode in text -Oracle Open Office Writer : extensions -Oracle Open Office Writer : extensions;Extension Manager -Oracle Open Office Writer : extensions;file formats -Oracle Open Office Writer : external keys (Base) -Oracle Open Office Writer : faster printing -Oracle Open Office Writer : faxes -Oracle Open Office Writer : faxes;configuring Oracle Open Office -Oracle Open Office Writer : faxes;fax programs/fax printers under UNIX -Oracle Open Office Writer : faxes;selecting a fax machine -Oracle Open Office Writer : faxes;sending -Oracle Open Office Writer : faxes;wizards -Oracle Open Office Writer : feedback -Oracle Open Office Writer : feedback;automatically -Oracle Open Office Writer : fields -Oracle Open Office Writer : fields;converting into text -Oracle Open Office Writer : fields;database tables -Oracle Open Office Writer : fields;defining conditions -Oracle Open Office Writer : fields;displaying field codes (Writer) -Oracle Open Office Writer : fields;formatted fields -Oracle Open Office Writer : fields;HTML import and export -Oracle Open Office Writer : fields;input fields in text -Oracle Open Office Writer : fields;inserting time -Oracle Open Office Writer : fields;subject -Oracle Open Office Writer : fields;updating automatically (Writer) -Oracle Open Office Writer : fields;updating/viewing -Oracle Open Office Writer : fields;user data -Oracle Open Office Writer : file associations for Microsoft Office -Oracle Open Office Writer : file filters -Oracle Open Office Writer : file filters;mobile devices -Oracle Open Office Writer : file filters;XML -Oracle Open Office Writer : file formats -Oracle Open Office Writer : file formats;changing Oracle Open Office defaults -Oracle Open Office Writer : file formats;OpenDocument/XML -Oracle Open Office Writer : file formats;saving always in other formats -Oracle Open Office Writer : file selection button -Oracle Open Office Writer : file sharing options for current document -Oracle Open Office Writer : files -Oracle Open Office Writer : files;filters and formats -Oracle Open Office Writer : files;importing -Oracle Open Office Writer : files;opening -Oracle Open Office Writer : files;properties -Oracle Open Office Writer : files;saving -Oracle Open Office Writer : files;saving automatically -Oracle Open Office Writer : files;saving in other formats -Oracle Open Office Writer : files;sending as e-mail -Oracle Open Office Writer : files;version numbers -Oracle Open Office Writer : files and folders in Oracle Open Office -Oracle Open Office Writer : fill characters with tabulators -Oracle Open Office Writer : fill colors for areas -Oracle Open Office Writer : fill format mode -Oracle Open Office Writer : fill patterns for areas -Oracle Open Office Writer : filter conditions -Oracle Open Office Writer : filter conditions;connecting -Oracle Open Office Writer : filter conditions;in queries (Base) -Oracle Open Office Writer : filtering -Oracle Open Office Writer : filtering;data in databases -Oracle Open Office Writer : filtering;data in forms -Oracle Open Office Writer : filters -Oracle Open Office Writer : filters;comparison operators -Oracle Open Office Writer : filters;for import and export -Oracle Open Office Writer : filters;Navigator -Oracle Open Office Writer : filters;pictures -Oracle Open Office Writer : filters;XML filter settings -Oracle Open Office Writer : Find tab in Help -Oracle Open Office Writer : finding -Oracle Open Office Writer : finding;in all sheets -Oracle Open Office Writer : finding;records in form documents -Oracle Open Office Writer : finding;selections -Oracle Open Office Writer : finding;similarity search -Oracle Open Office Writer : finding;text/text formats/styles/objects -Oracle Open Office Writer : first letters as large capital letters -Oracle Open Office Writer : First Page page style -Oracle Open Office Writer : fitting to pages -Oracle Open Office Writer : fitting to pages;print settings in Math -Oracle Open Office Writer : fitting to pages;print settings in presentations -Oracle Open Office Writer : fixed dates -Oracle Open Office Writer : fixed text -Oracle Open Office Writer : fixed text;form functions -Oracle Open Office Writer : fixing toolbars -Oracle Open Office Writer : flipping draw objects -Oracle Open Office Writer : floating frames in HTML documents -Oracle Open Office Writer : floating titles in headers -Oracle Open Office Writer : floating toolbars -Oracle Open Office Writer : focus of controls -Oracle Open Office Writer : folder creation -Oracle Open Office Writer : font attributes -Oracle Open Office Writer : font attributes;resetting -Oracle Open Office Writer : font lists -Oracle Open Office Writer : font name box -Oracle Open Office Writer : font sizes -Oracle Open Office Writer : font sizes;bullets -Oracle Open Office Writer : font sizes;relative changes -Oracle Open Office Writer : font sizes;scaling on screen -Oracle Open Office Writer : font sizes;text -Oracle Open Office Writer : fonts -Oracle Open Office Writer : fonts;adding under UNIX -Oracle Open Office Writer : fonts;changing in templates -Oracle Open Office Writer : fonts;colors -Oracle Open Office Writer : fonts;default settings -Oracle Open Office Writer : fonts;effects -Oracle Open Office Writer : fonts;for HTML and Basic -Oracle Open Office Writer : fonts;formats -Oracle Open Office Writer : fonts;outlines -Oracle Open Office Writer : fonts;positions in text -Oracle Open Office Writer : fonts;resetting -Oracle Open Office Writer : fonts;shadows -Oracle Open Office Writer : fonts;specifying several -Oracle Open Office Writer : fonts;strikethrough -Oracle Open Office Writer : fonts;styles -Oracle Open Office Writer : fonts;text objects -Oracle Open Office Writer : Fontwork icons -Oracle Open Office Writer : footers -Oracle Open Office Writer : footers;about -Oracle Open Office Writer : footers;backgrounds -Oracle Open Office Writer : footers;defining for left and right pages -Oracle Open Office Writer : footers;formatting -Oracle Open Office Writer : footers;inserting -Oracle Open Office Writer : footers;with page numbers -Oracle Open Office Writer : footnotes -Oracle Open Office Writer : footnotes;inserting and editing -Oracle Open Office Writer : footnotes;spacing -Oracle Open Office Writer : form controls -Oracle Open Office Writer : form controls;assigning macros -Oracle Open Office Writer : form controls;protecting -Oracle Open Office Writer : form controls;toolbars -Oracle Open Office Writer : form fields -Oracle Open Office Writer : form filters -Oracle Open Office Writer : form letters -Oracle Open Office Writer : Form Navigator -Oracle Open Office Writer : format codes -Oracle Open Office Writer : format codes;numbers -Oracle Open Office Writer : format filling printing in Oracle Open Office Math -Oracle Open Office Writer : Format Paintbrush -Oracle Open Office Writer : formats -Oracle Open Office Writer : formats;Asian layout -Oracle Open Office Writer : formats;copying and pasting -Oracle Open Office Writer : formats;finding and replacing -Oracle Open Office Writer : formats;fonts -Oracle Open Office Writer : formats;maximizing page formats -Oracle Open Office Writer : formats;number and currency formats -Oracle Open Office Writer : formats;of currencies/date/time -Oracle Open Office Writer : formats;on opening and saving -Oracle Open Office Writer : formats;pasting in special formats -Oracle Open Office Writer : formats;positions -Oracle Open Office Writer : formats;resetting -Oracle Open Office Writer : formats;tabulators -Oracle Open Office Writer : formatted fields -Oracle Open Office Writer : formatted fields;form functions -Oracle Open Office Writer : formatted fields;properties -Oracle Open Office Writer : formatting -Oracle Open Office Writer : formatting;Asian typography -Oracle Open Office Writer : formatting;axes in charts -Oracle Open Office Writer : formatting;bold, while typing -Oracle Open Office Writer : formatting;bullets -Oracle Open Office Writer : formatting;changing individual pages -Oracle Open Office Writer : formatting;chart areas -Oracle Open Office Writer : formatting;chart floors -Oracle Open Office Writer : formatting;chart legends -Oracle Open Office Writer : formatting;chart titles -Oracle Open Office Writer : formatting;chart walls -Oracle Open Office Writer : formatting;contour wrap -Oracle Open Office Writer : formatting;copying -Oracle Open Office Writer : formatting;definition -Oracle Open Office Writer : formatting;even/odd pages -Oracle Open Office Writer : formatting;exiting direct formatting -Oracle Open Office Writer : formatting;expanding (Calc) -Oracle Open Office Writer : formatting;font effects -Oracle Open Office Writer : formatting;hyperlinks -Oracle Open Office Writer : formatting;indenting paragraphs -Oracle Open Office Writer : formatting;indexes and tables of contents -Oracle Open Office Writer : formatting;numbered lists -Oracle Open Office Writer : formatting;page numbers -Oracle Open Office Writer : formatting;pages -Oracle Open Office Writer : formatting;printer metrics (Writer) -Oracle Open Office Writer : formatting;register-true text -Oracle Open Office Writer : formatting;undoing -Oracle Open Office Writer : formatting;undoing when writing -Oracle Open Office Writer : formatting styles -Oracle Open Office Writer : formatting styles;importing -Oracle Open Office Writer : formatting styles;styles and templates -Oracle Open Office Writer : forms -Oracle Open Office Writer : forms;browsing -Oracle Open Office Writer : forms;Combo Box/List Box Wizard -Oracle Open Office Writer : forms;creating -Oracle Open Office Writer : forms;data -Oracle Open Office Writer : forms;designing (Base) -Oracle Open Office Writer : forms;events -Oracle Open Office Writer : forms;filtering data -Oracle Open Office Writer : forms;finding records -Oracle Open Office Writer : forms;focus after opening -Oracle Open Office Writer : forms;general information (Base) -Oracle Open Office Writer : forms;grouping controls -Oracle Open Office Writer : forms;HTML filters -Oracle Open Office Writer : forms;Navigator -Oracle Open Office Writer : forms;opening in design mode -Oracle Open Office Writer : forms;properties -Oracle Open Office Writer : forms;sorting data -Oracle Open Office Writer : forms;subforms -Oracle Open Office Writer : forms;wizards -Oracle Open Office Writer : forms;XForms -Oracle Open Office Writer : formula texts -Oracle Open Office Writer : formula texts;printing in Oracle Open Office Math -Oracle Open Office Writer : formulas -Oracle Open Office Writer : formulas;calculating in text -Oracle Open Office Writer : formulas;complex formulas in text -Oracle Open Office Writer : formulas;new -Oracle Open Office Writer : formulas;pasting results in text documents -Oracle Open Office Writer : formulas;starting formula editor -Oracle Open Office Writer : formulas in reports -Oracle Open Office Writer : formulas in reports;editing -Oracle Open Office Writer : formulating conditions -Oracle Open Office Writer : forums and support -Oracle Open Office Writer : frames -Oracle Open Office Writer : frames;anchoring options -Oracle Open Office Writer : frames;around objects -Oracle Open Office Writer : frames;around pages -Oracle Open Office Writer : frames;around paragraphs -Oracle Open Office Writer : frames;around tables -Oracle Open Office Writer : frames;around text tables -Oracle Open Office Writer : frames;AutoCorrect function -Oracle Open Office Writer : frames;backgrounds -Oracle Open Office Writer : frames;captions (Writer) -Oracle Open Office Writer : frames;defining hyperlinks -Oracle Open Office Writer : frames;jumping to -Oracle Open Office Writer : frames;labeling -Oracle Open Office Writer : frames;linking -Oracle Open Office Writer : frames;printing in Oracle Open Office Math -Oracle Open Office Writer : frames;protecting -Oracle Open Office Writer : frames;selection frames -Oracle Open Office Writer : frames;styles -Oracle Open Office Writer : frames;text fitting to frames -Oracle Open Office Writer : frames;unlinking -Oracle Open Office Writer : freeform lines -Oracle Open Office Writer : freeform lines;draw functions -Oracle Open Office Writer : FTP -Oracle Open Office Writer : FTP;opening documents -Oracle Open Office Writer : FTP;saving documents -Oracle Open Office Writer : full joins (Base) -Oracle Open Office Writer : full screen view -Oracle Open Office Writer : full-text search in Help -Oracle Open Office Writer : functions in reports -Oracle Open Office Writer : functions in reports;editing -Oracle Open Office Writer : Gallery -Oracle Open Office Writer : Gallery;adding pictures -Oracle Open Office Writer : Gallery;docking and resizing -Oracle Open Office Writer : Gallery;dragging pictures to draw objects -Oracle Open Office Writer : Gallery;hiding/showing -Oracle Open Office Writer : Gallery;inserting pictures from -Oracle Open Office Writer : get method for form transmissions -Oracle Open Office Writer : getting support -Oracle Open Office Writer : GIF format -Oracle Open Office Writer : glossaries -Oracle Open Office Writer : glossaries;common terms -Oracle Open Office Writer : glossaries;Internet terms -Oracle Open Office Writer : gradients off for faster printing -Oracle Open Office Writer : grammar checker -Oracle Open Office Writer : graphic objects, see draw objects -Oracle Open Office Writer : graphical text art -Oracle Open Office Writer : graphics -Oracle Open Office Writer : graphics;cache -Oracle Open Office Writer : graphics;do not show -Oracle Open Office Writer : graphics;protecting -Oracle Open Office Writer : graphics, see also pictures -Oracle Open Office Writer : grayscale printing -Oracle Open Office Writer : grid controls -Oracle Open Office Writer : grid controls;form functions -Oracle Open Office Writer : grids -Oracle Open Office Writer : grids;defaults (Writer/Calc) -Oracle Open Office Writer : grids;display options (Impress/Draw) -Oracle Open Office Writer : grids;displaying lines (Calc) -Oracle Open Office Writer : grids;formatting axes -Oracle Open Office Writer : grids;inserting in charts -Oracle Open Office Writer : group box creation -Oracle Open Office Writer : groups -Oracle Open Office Writer : groups;entering/exiting/ungrouping -Oracle Open Office Writer : groups;naming -Oracle Open Office Writer : groups;of controls -Oracle Open Office Writer : guides -Oracle Open Office Writer : guides;display options (Impress/Draw) -Oracle Open Office Writer : guides;displaying when moving objects (Impress) -Oracle Open Office Writer : guides;showing (Calc) -Oracle Open Office Writer : guides;showing when moving frames (Writer) -Oracle Open Office Writer : gutter -Oracle Open Office Writer : handles -Oracle Open Office Writer : handles;displaying (Writer) -Oracle Open Office Writer : handles;scaling -Oracle Open Office Writer : handles;showing simple/large handles (Calc) -Oracle Open Office Writer : hanging indents in paragraphs -Oracle Open Office Writer : Hangul/Hanja -Oracle Open Office Writer : hard returns in pasted text -Oracle Open Office Writer : hatching -Oracle Open Office Writer : headers -Oracle Open Office Writer : headers;about -Oracle Open Office Writer : headers;backgrounds -Oracle Open Office Writer : headers;chapter information -Oracle Open Office Writer : headers;defining for left and right pages -Oracle Open Office Writer : headers;formatting -Oracle Open Office Writer : headers;inserting -Oracle Open Office Writer : headings -Oracle Open Office Writer : headings;automatic -Oracle Open Office Writer : headings;entering as text box -Oracle Open Office Writer : headings;jumping to -Oracle Open Office Writer : headings;numbering/paragraph styles -Oracle Open Office Writer : headings;rearranging -Oracle Open Office Writer : headings;repeating in tables -Oracle Open Office Writer : headings;starting with tab stops -Oracle Open Office Writer : headings;switching levels by keyboard -Oracle Open Office Writer : Hebrew -Oracle Open Office Writer : Hebrew;entering text -Oracle Open Office Writer : Hebrew;language settings -Oracle Open Office Writer : Help -Oracle Open Office Writer : Help;bookmarks -Oracle Open Office Writer : Help;extended tips on/off -Oracle Open Office Writer : Help;full-text search -Oracle Open Office Writer : Help;Help tips -Oracle Open Office Writer : Help;keywords -Oracle Open Office Writer : Help;navigation pane showing/hiding -Oracle Open Office Writer : Help;style sheets -Oracle Open Office Writer : Help;topics -Oracle Open Office Writer : Help Agent -Oracle Open Office Writer : Help Agent;help -Oracle Open Office Writer : Help Agent;options -Oracle Open Office Writer : Help tips -Oracle Open Office Writer : Help tips;fields -Oracle Open Office Writer : Help tips;hiding -Oracle Open Office Writer : hidden controls in Form Navigator -Oracle Open Office Writer : hidden fields display (Writer) -Oracle Open Office Writer : hidden pages -Oracle Open Office Writer : hidden pages;printing in presentations -Oracle Open Office Writer : hidden text -Oracle Open Office Writer : hidden text;displaying -Oracle Open Office Writer : hidden text;showing (Writer) -Oracle Open Office Writer : hiding -Oracle Open Office Writer : hiding;changes -Oracle Open Office Writer : hiding;chart legends -Oracle Open Office Writer : hiding;database fields -Oracle Open Office Writer : hiding;docked windows -Oracle Open Office Writer : hiding;navigation pane in Help window -Oracle Open Office Writer : hiding;rulers -Oracle Open Office Writer : hiding;sections -Oracle Open Office Writer : hiding;text, from specific users -Oracle Open Office Writer : hiding;text, with conditions -Oracle Open Office Writer : high contrast mode -Oracle Open Office Writer : Hindi -Oracle Open Office Writer : Hindi;entering text -Oracle Open Office Writer : Hindi;language settings -Oracle Open Office Writer : homepage creation -Oracle Open Office Writer : horizontal lines -Oracle Open Office Writer : horizontal rulers -Oracle Open Office Writer : horizontal scrollbars (Writer) -Oracle Open Office Writer : hotspots -Oracle Open Office Writer : HowTos for charts -Oracle Open Office Writer : HTML -Oracle Open Office Writer : HTML;definition -Oracle Open Office Writer : HTML;export character set -Oracle Open Office Writer : HTML;fonts for source display -Oracle Open Office Writer : HTML;importing META tags -Oracle Open Office Writer : HTML;live presentations -Oracle Open Office Writer : HTML;special tags for fields -Oracle Open Office Writer : HTML documents -Oracle Open Office Writer : HTML documents;auto reloading -Oracle Open Office Writer : HTML documents;creating from text documents -Oracle Open Office Writer : HTML documents;headers and footers -Oracle Open Office Writer : HTML documents;importing/exporting -Oracle Open Office Writer : HTML documents;inserting linked sections -Oracle Open Office Writer : HTML documents;META tags in -Oracle Open Office Writer : HTML documents;new -Oracle Open Office Writer : HTML documents;source text -Oracle Open Office Writer : hyperlinks -Oracle Open Office Writer : hyperlinks;assigning macros -Oracle Open Office Writer : hyperlinks;character formats -Oracle Open Office Writer : hyperlinks;definition -Oracle Open Office Writer : hyperlinks;deleting -Oracle Open Office Writer : hyperlinks;editing -Oracle Open Office Writer : hyperlinks;for objects -Oracle Open Office Writer : hyperlinks;in tables of contents and indexes -Oracle Open Office Writer : hyperlinks;inserting -Oracle Open Office Writer : hyperlinks;inserting from Navigator -Oracle Open Office Writer : hyperlinks;jumping to -Oracle Open Office Writer : hyperlinks;relative and absolute -Oracle Open Office Writer : hyperlinks;turning off automatic recognition -Oracle Open Office Writer : hyperlinks, see also links -Oracle Open Office Writer : hyphenation -Oracle Open Office Writer : hyphenation;activating for a language -Oracle Open Office Writer : hyphenation;manual/automatic -Oracle Open Office Writer : hyphenation;minimal number of characters -Oracle Open Office Writer : hyphenation;preventing for specific words -Oracle Open Office Writer : hyphens -Oracle Open Office Writer : hyphens;displaying custom (Writer) -Oracle Open Office Writer : hyphens;inserting custom -Oracle Open Office Writer : icon bars, see toolbars -Oracle Open Office Writer : icon sizes -Oracle Open Office Writer : if-then queries as fields -Oracle Open Office Writer : ignore list for spellcheck -Oracle Open Office Writer : illumination -Oracle Open Office Writer : illumination;3D charts -Oracle Open Office Writer : illustrations, see pictures -Oracle Open Office Writer : image button creation -Oracle Open Office Writer : image control creation -Oracle Open Office Writer : ImageMap -Oracle Open Office Writer : ImageMap;definition -Oracle Open Office Writer : ImageMap;editor -Oracle Open Office Writer : images -Oracle Open Office Writer : images;do not show -Oracle Open Office Writer : images;ImageMap -Oracle Open Office Writer : images;inserting and editing bitmaps -Oracle Open Office Writer : images;inserting in text -Oracle Open Office Writer : images, see also pictures -Oracle Open Office Writer : IME -Oracle Open Office Writer : IME;definition -Oracle Open Office Writer : IME;showing/hiding -Oracle Open Office Writer : import filters -Oracle Open Office Writer : import restrictions for Microsoft Office -Oracle Open Office Writer : importing -Oracle Open Office Writer : importing;bitmaps -Oracle Open Office Writer : importing;compatibility settings for text import -Oracle Open Office Writer : importing;databases -Oracle Open Office Writer : importing;documents in other formats -Oracle Open Office Writer : importing;from XML -Oracle Open Office Writer : importing;HTML and text documents -Oracle Open Office Writer : importing;HTML with META tags -Oracle Open Office Writer : importing;Microsoft Office documents with VBA code -Oracle Open Office Writer : importing;styles from other files -Oracle Open Office Writer : importing;tables in text format -Oracle Open Office Writer : importing;templates -Oracle Open Office Writer : improvement program -Oracle Open Office Writer : inches -Oracle Open Office Writer : indents -Oracle Open Office Writer : indents;in text -Oracle Open Office Writer : indents;setting on rulers -Oracle Open Office Writer : Index tab in Help -Oracle Open Office Writer : indexes -Oracle Open Office Writer : indexes;alphabetical indexes -Oracle Open Office Writer : indexes;backgrounds -Oracle Open Office Writer : indexes;creating bibliographies -Oracle Open Office Writer : indexes;creating user-defined indexes -Oracle Open Office Writer : indexes;defining entries in -Oracle Open Office Writer : indexes;editing or deleting entries -Oracle Open Office Writer : indexes;editing/updating/deleting -Oracle Open Office Writer : indexes;formatting -Oracle Open Office Writer : indexes;master documents -Oracle Open Office Writer : indexes;multiple documents -Oracle Open Office Writer : indexes;showing/hiding Help index tab -Oracle Open Office Writer : indexes;unprotecting -Oracle Open Office Writer : indicator lines in text -Oracle Open Office Writer : initial capitals in titles -Oracle Open Office Writer : inner joins (Base) -Oracle Open Office Writer : input fields in text -Oracle Open Office Writer : input method window -Oracle Open Office Writer : insert mode for entering text -Oracle Open Office Writer : inserting -Oracle Open Office Writer : inserting;buttons in toolbars -Oracle Open Office Writer : inserting;captions -Oracle Open Office Writer : inserting;cell ranges from spreadsheets -Oracle Open Office Writer : inserting;chapter numbers in captions -Oracle Open Office Writer : inserting;charts -Oracle Open Office Writer : inserting;clipboard options -Oracle Open Office Writer : inserting;comments -Oracle Open Office Writer : inserting;cross-references -Oracle Open Office Writer : inserting;data from text documents -Oracle Open Office Writer : inserting;datasource records in spreadsheets -Oracle Open Office Writer : inserting;date fields -Oracle Open Office Writer : inserting;drawings -Oracle Open Office Writer : inserting;envelopes -Oracle Open Office Writer : inserting;floating frames -Oracle Open Office Writer : inserting;Fontwork objects -Oracle Open Office Writer : inserting;footnotes/endnotes -Oracle Open Office Writer : inserting;form fields -Oracle Open Office Writer : inserting;from Gallery into text -Oracle Open Office Writer : inserting;horizontal lines -Oracle Open Office Writer : inserting;hyperlinks -Oracle Open Office Writer : inserting;hyperlinks from Navigator -Oracle Open Office Writer : inserting;input fields -Oracle Open Office Writer : inserting;line breaks in cells -Oracle Open Office Writer : inserting;lines under headers/above footers -Oracle Open Office Writer : inserting;movies/sounds -Oracle Open Office Writer : inserting;new text tables defaults -Oracle Open Office Writer : inserting;numbering -Oracle Open Office Writer : inserting;objects from Gallery -Oracle Open Office Writer : inserting;OLE objects -Oracle Open Office Writer : inserting;page breaks -Oracle Open Office Writer : inserting;page numbers -Oracle Open Office Writer : inserting;paragraph borders -Oracle Open Office Writer : inserting;paragraph bullets -Oracle Open Office Writer : inserting;paragraphs before/after tables -Oracle Open Office Writer : inserting;pictures -Oracle Open Office Writer : inserting;pictures in Gallery -Oracle Open Office Writer : inserting;pictures, by dialog -Oracle Open Office Writer : inserting;plug-ins -Oracle Open Office Writer : inserting;push buttons -Oracle Open Office Writer : inserting;rows/columns, by keyboard -Oracle Open Office Writer : inserting;scanned images -Oracle Open Office Writer : inserting;sections -Oracle Open Office Writer : inserting;special characters -Oracle Open Office Writer : inserting;tab stops -Oracle Open Office Writer : inserting;tables in text -Oracle Open Office Writer : inserting;text blocks -Oracle Open Office Writer : inserting;text documents -Oracle Open Office Writer : inserting;text frames -Oracle Open Office Writer : inserting;textures on chart bars -Oracle Open Office Writer : installing -Oracle Open Office Writer : installing;ActiveX control -Oracle Open Office Writer : installing;mobile device filters -Oracle Open Office Writer : installing;smart tags -Oracle Open Office Writer : installing;UNO components -Oracle Open Office Writer : installing;XML filters -Oracle Open Office Writer : instructions -Oracle Open Office Writer : instructions;general -Oracle Open Office Writer : instructions;Oracle Open Office Writer -Oracle Open Office Writer : Internet -Oracle Open Office Writer : Internet;checking for updates -Oracle Open Office Writer : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Writer : Internet;presentations -Oracle Open Office Writer : Internet;starting searches -Oracle Open Office Writer : Internet glossary -Oracle Open Office Writer : interrupting numbered lists -Oracle Open Office Writer : invert filter -Oracle Open Office Writer : invisible areas -Oracle Open Office Writer : invisible characters -Oracle Open Office Writer : invisible characters;finding -Oracle Open Office Writer : italic text -Oracle Open Office Writer : iterative references in spreadsheets -Oracle Open Office Writer : Java -Oracle Open Office Writer : Java;definition -Oracle Open Office Writer : Java;setting options -Oracle Open Office Writer : JDBC -Oracle Open Office Writer : JDBC;databases (Base) -Oracle Open Office Writer : JDBC;definition -Oracle Open Office Writer : joining -Oracle Open Office Writer : joining;numbered lists -Oracle Open Office Writer : joining;paragraphs -Oracle Open Office Writer : joining;tables (Base) -Oracle Open Office Writer : joins in databases (Base) -Oracle Open Office Writer : jumping -Oracle Open Office Writer : jumping;to bookmarks -Oracle Open Office Writer : jumping;to text elements -Oracle Open Office Writer : justifying text -Oracle Open Office Writer : juxtaposing tables -Oracle Open Office Writer : kerning -Oracle Open Office Writer : kerning;Asian texts -Oracle Open Office Writer : kerning;definition -Oracle Open Office Writer : kerning;in characters -Oracle Open Office Writer : key fields for relations (Base) -Oracle Open Office Writer : keyboard -Oracle Open Office Writer : keyboard;accessibility Oracle Open Office Writer -Oracle Open Office Writer : keyboard;adding or deleting rows/columns -Oracle Open Office Writer : keyboard;assigning/editing shortcut keys -Oracle Open Office Writer : keyboard;bold formatting -Oracle Open Office Writer : keyboard;general commands -Oracle Open Office Writer : keyboard;modifying the behavior of rows/columns -Oracle Open Office Writer : keyboard;navigating and selecting in text -Oracle Open Office Writer : keyboard;removing numbering -Oracle Open Office Writer : keyboard;resizing rows/columns -Oracle Open Office Writer : keys -Oracle Open Office Writer : keys;adding push buttons -Oracle Open Office Writer : keys;primary keys (Base) -Oracle Open Office Writer : kiosk export -Oracle Open Office Writer : labels -Oracle Open Office Writer : labels;creating and synchronizing -Oracle Open Office Writer : labels;for charts -Oracle Open Office Writer : labels;for draw objects -Oracle Open Office Writer : labels;form functions -Oracle Open Office Writer : labels;from databases -Oracle Open Office Writer : labels, see also names/callouts -Oracle Open Office Writer : landscape and portrait -Oracle Open Office Writer : languages -Oracle Open Office Writer : languages;activating modules -Oracle Open Office Writer : languages;Asian support -Oracle Open Office Writer : languages;complex text layout -Oracle Open Office Writer : languages;locale settings -Oracle Open Office Writer : languages;recognition of -Oracle Open Office Writer : languages;selecting for text -Oracle Open Office Writer : languages;setting options -Oracle Open Office Writer : languages;spellcheck -Oracle Open Office Writer : languages;spellchecking and formatting -Oracle Open Office Writer : large handles (Writer) -Oracle Open Office Writer : large icons -Oracle Open Office Writer : layer arrangement -Oracle Open Office Writer : layout -Oracle Open Office Writer : layout;importing Word documents -Oracle Open Office Writer : layout;pages -Oracle Open Office Writer : LDAP server -Oracle Open Office Writer : LDAP server;address books (Base) -Oracle Open Office Writer : LDAP server;sign on options -Oracle Open Office Writer : leading between paragraphs -Oracle Open Office Writer : left alignment of paragraphs -Oracle Open Office Writer : left joins (Base) -Oracle Open Office Writer : Left Page page style -Oracle Open Office Writer : legends -Oracle Open Office Writer : legends;charts -Oracle Open Office Writer : legends;draw objects -Oracle Open Office Writer : legends;rounding corners -Oracle Open Office Writer : legends, see also captions -Oracle Open Office Writer : Letter Wizard -Oracle Open Office Writer : letters -Oracle Open Office Writer : letters;creating form letters -Oracle Open Office Writer : letters;inserting envelopes -Oracle Open Office Writer : levels -Oracle Open Office Writer : levels;changing outline levels -Oracle Open Office Writer : levels;depth stagger -Oracle Open Office Writer : levels;macro security -Oracle Open Office Writer : lexicon, see thesaurus -Oracle Open Office Writer : limits of tables (Writer) -Oracle Open Office Writer : line breaks -Oracle Open Office Writer : line breaks;in cells -Oracle Open Office Writer : line breaks;removing -Oracle Open Office Writer : line charts -Oracle Open Office Writer : line numbers -Oracle Open Office Writer : line spacing -Oracle Open Office Writer : line spacing;context menu in paragraphs -Oracle Open Office Writer : line spacing;paragraph -Oracle Open Office Writer : line styles -Oracle Open Office Writer : line styles;applying -Oracle Open Office Writer : line styles;defining -Oracle Open Office Writer : lines -Oracle Open Office Writer : lines;automatic drawing on/off -Oracle Open Office Writer : lines;defining ends -Oracle Open Office Writer : lines;draw functions -Oracle Open Office Writer : lines;drawing in text -Oracle Open Office Writer : lines;editing points -Oracle Open Office Writer : lines;footnotes/endnotes -Oracle Open Office Writer : lines;inserting horizontal lines -Oracle Open Office Writer : lines;removing automatic lines -Oracle Open Office Writer : lines;under headers/above footers -Oracle Open Office Writer : lines of text -Oracle Open Office Writer : lines of text;alignment -Oracle Open Office Writer : lines of text;indents -Oracle Open Office Writer : lines of text;numbering -Oracle Open Office Writer : lines of text;register-true -Oracle Open Office Writer : lines of text;sorting paragraphs -Oracle Open Office Writer : links -Oracle Open Office Writer : links;between cells and controls -Oracle Open Office Writer : links;by drag and drop -Oracle Open Office Writer : links;character formats -Oracle Open Office Writer : links;definition -Oracle Open Office Writer : links;editing hyperlinks -Oracle Open Office Writer : links;inserting -Oracle Open Office Writer : links;inserting sections -Oracle Open Office Writer : links;inserting text documents as -Oracle Open Office Writer : links;modifying -Oracle Open Office Writer : links;opening files with -Oracle Open Office Writer : links;relational databases (Base) -Oracle Open Office Writer : links;text frames -Oracle Open Office Writer : links;turning off automatic recognition -Oracle Open Office Writer : links;updating options (Writer) -Oracle Open Office Writer : links;updating specific links -Oracle Open Office Writer : list box creation -Oracle Open Office Writer : lists -Oracle Open Office Writer : lists;automatic numbering -Oracle Open Office Writer : lists;AutoText shortcuts -Oracle Open Office Writer : lists;changing levels -Oracle Open Office Writer : lists;combining numbered lists -Oracle Open Office Writer : lists;data assigned to controls -Oracle Open Office Writer : lists;registered databases (Base) -Oracle Open Office Writer : lists;regular expressions -Oracle Open Office Writer : lists;removing/interrupting numbering -Oracle Open Office Writer : live presentations on the Internet -Oracle Open Office Writer : loading -Oracle Open Office Writer : loading;documents -Oracle Open Office Writer : loading;documents from other formats -Oracle Open Office Writer : loading;HTML documents, automatically -Oracle Open Office Writer : loading;Microsoft Office documents with VBA code -Oracle Open Office Writer : loading;reloading -Oracle Open Office Writer : loading;styles from other files -Oracle Open Office Writer : loading;XML files -Oracle Open Office Writer : locale settings -Oracle Open Office Writer : logarithmic scaling along axes -Oracle Open Office Writer : logical expressions -Oracle Open Office Writer : lowercase letters -Oracle Open Office Writer : lowercase letters;font effects -Oracle Open Office Writer : lowercase letters;text -Oracle Open Office Writer : lowering outline levels -Oracle Open Office Writer : Macro Wizard (Base) -Oracle Open Office Writer : macros -Oracle Open Office Writer : macros;assigning to events in forms -Oracle Open Office Writer : macros;attaching new (Base) -Oracle Open Office Writer : macros;in MS Office documents -Oracle Open Office Writer : macros;interrupting -Oracle Open Office Writer : macros;organizing -Oracle Open Office Writer : macros;recording -Oracle Open Office Writer : macros;security -Oracle Open Office Writer : macros;security levels -Oracle Open Office Writer : macros;security warning dialog -Oracle Open Office Writer : macros;selecting security warnings -Oracle Open Office Writer : magnifiers -Oracle Open Office Writer : mail merge -Oracle Open Office Writer : manual hyphenation in text -Oracle Open Office Writer : manual numbering in text -Oracle Open Office Writer : manual page breaks -Oracle Open Office Writer : marginal numbers on text pages -Oracle Open Office Writer : margins -Oracle Open Office Writer : margins;pages -Oracle Open Office Writer : margins;setting with the mouse -Oracle Open Office Writer : margins;shadows -Oracle Open Office Writer : marking changes -Oracle Open Office Writer : marking, see selecting -Oracle Open Office Writer : master documents -Oracle Open Office Writer : master documents;creating/editing/exporting -Oracle Open Office Writer : master documents;indexes -Oracle Open Office Writer : master documents;properties -Oracle Open Office Writer : matching conditional text in fields -Oracle Open Office Writer : Math formula editor -Oracle Open Office Writer : mean value lines in charts -Oracle Open Office Writer : measurement units -Oracle Open Office Writer : measurement units;changing on rulers -Oracle Open Office Writer : measurement units;converting -Oracle Open Office Writer : measurement units;selecting -Oracle Open Office Writer : Media Player window -Oracle Open Office Writer : menus -Oracle Open Office Writer : menus;activating context menus -Oracle Open Office Writer : menus;assigning macros -Oracle Open Office Writer : menus;customizing -Oracle Open Office Writer : merging -Oracle Open Office Writer : merging;cells -Oracle Open Office Writer : merging;cells, by keyboard -Oracle Open Office Writer : merging;documents -Oracle Open Office Writer : merging;indexes -Oracle Open Office Writer : merging;numbered lists -Oracle Open Office Writer : merging;tables -Oracle Open Office Writer : META tags -Oracle Open Office Writer : metrics -Oracle Open Office Writer : metrics;converting -Oracle Open Office Writer : metrics;document formatting (Writer) -Oracle Open Office Writer : metrics;in sheets -Oracle Open Office Writer : Microsoft Office -Oracle Open Office Writer : Microsoft Office;Access databases (base) -Oracle Open Office Writer : Microsoft Office;as default file format -Oracle Open Office Writer : Microsoft Office;document import restrictions -Oracle Open Office Writer : Microsoft Office;feature comparisons -Oracle Open Office Writer : Microsoft Office;importing password protected files -Oracle Open Office Writer : Microsoft Office;importing Word documents -Oracle Open Office Writer : Microsoft Office;importing/exporting VBA code -Oracle Open Office Writer : Microsoft Office;new users information -Oracle Open Office Writer : Microsoft Office;opening Microsoft documents -Oracle Open Office Writer : Microsoft Office;reassigning document types -Oracle Open Office Writer : migrating macros (Base) -Oracle Open Office Writer : mirrored page layout -Oracle Open Office Writer : mobile device filters -Oracle Open Office Writer : models in XForms -Oracle Open Office Writer : modifying, see changing -Oracle Open Office Writer : months -Oracle Open Office Writer : months;automatically completing -Oracle Open Office Writer : more controls -Oracle Open Office Writer : mosaic filter -Oracle Open Office Writer : mouse -Oracle Open Office Writer : mouse;moving and copying text -Oracle Open Office Writer : mouse;pointers when using drag and drop -Oracle Open Office Writer : mouse;positioning -Oracle Open Office Writer : movies -Oracle Open Office Writer : moving -Oracle Open Office Writer : moving;headings -Oracle Open Office Writer : moving;objects and frames -Oracle Open Office Writer : moving;tab stops on ruler -Oracle Open Office Writer : moving;text sections -Oracle Open Office Writer : moving;toolbars -Oracle Open Office Writer : moving;using guide lines in presentations -Oracle Open Office Writer : MS ADO interface (Base) -Oracle Open Office Writer : multi-column text -Oracle Open Office Writer : multi-line titles in forms -Oracle Open Office Writer : multi-page tables -Oracle Open Office Writer : multi-page view of documents -Oracle Open Office Writer : multiple documents -Oracle Open Office Writer : multiple documents;indexes -Oracle Open Office Writer : multiple documents;opening -Oracle Open Office Writer : multiple selection -Oracle Open Office Writer : music -Oracle Open Office Writer : My Documents folder -Oracle Open Office Writer : My Documents folder;changing work directory -Oracle Open Office Writer : My Documents folder;opening -Oracle Open Office Writer : MySQL databases (Base) -Oracle Open Office Writer : names -Oracle Open Office Writer : names;chapter names in headers -Oracle Open Office Writer : names;multi-line titles -Oracle Open Office Writer : names;objects -Oracle Open Office Writer : names, see also labels/callouts -Oracle Open Office Writer : namespace organization in XForms -Oracle Open Office Writer : native SQL (Base) -Oracle Open Office Writer : navigating -Oracle Open Office Writer : navigating;in documents -Oracle Open Office Writer : navigating;in text, with keyboard -Oracle Open Office Writer : Navigation bar -Oracle Open Office Writer : Navigation bar;controls -Oracle Open Office Writer : Navigation bar;forms -Oracle Open Office Writer : Navigator -Oracle Open Office Writer : Navigator;comments -Oracle Open Office Writer : Navigator;contents as lists -Oracle Open Office Writer : Navigator;docking -Oracle Open Office Writer : Navigator;docking and resizing -Oracle Open Office Writer : Navigator;heading levels and chapters -Oracle Open Office Writer : Navigator;inserting hyperlinks -Oracle Open Office Writer : Navigator;master documents -Oracle Open Office Writer : Navigator;overview in texts -Oracle Open Office Writer : Navigator;working with -Oracle Open Office Writer : net charts -Oracle Open Office Writer : network identity options -Oracle Open Office Writer : networks and AutoText directories -Oracle Open Office Writer : new databases -Oracle Open Office Writer : new documents -Oracle Open Office Writer : new lines in cells -Oracle Open Office Writer : new page styles from selection -Oracle Open Office Writer : new windows -Oracle Open Office Writer : next page number in footers -Oracle Open Office Writer : non-breaking dashes -Oracle Open Office Writer : non-breaking spaces (Writer) -Oracle Open Office Writer : non-printing characters (Writer) -Oracle Open Office Writer : non-printing text -Oracle Open Office Writer : number formats -Oracle Open Office Writer : number formats;codes -Oracle Open Office Writer : number formats;formats -Oracle Open Office Writer : number formats;recognition in text tables -Oracle Open Office Writer : number of characters -Oracle Open Office Writer : number of pages -Oracle Open Office Writer : number of sheets -Oracle Open Office Writer : number of tables -Oracle Open Office Writer : number of words -Oracle Open Office Writer : numbering -Oracle Open Office Writer : numbering;captions -Oracle Open Office Writer : numbering;changing the level of -Oracle Open Office Writer : numbering;combining -Oracle Open Office Writer : numbering;headings -Oracle Open Office Writer : numbering;lines -Oracle Open Office Writer : numbering;lists, while typing -Oracle Open Office Writer : numbering;manually/by styles -Oracle Open Office Writer : numbering;options -Oracle Open Office Writer : numbering;pages -Oracle Open Office Writer : numbering;paragraphs, on and off -Oracle Open Office Writer : numbering;quotations/similar items -Oracle Open Office Writer : numbering;removing/interrupting -Oracle Open Office Writer : numbering;style categories -Oracle Open Office Writer : numbering;turning off -Oracle Open Office Writer : numbering;using automatically -Oracle Open Office Writer : numbers -Oracle Open Office Writer : numbers;automatic recognition in text tables -Oracle Open Office Writer : numbers;date, time and currency formats -Oracle Open Office Writer : numbers;line numbering -Oracle Open Office Writer : numbers;lists -Oracle Open Office Writer : numerical fields in forms -Oracle Open Office Writer : objects -Oracle Open Office Writer : objects;always moveable (Impress/Draw) -Oracle Open Office Writer : objects;anchoring options -Oracle Open Office Writer : objects;arranging within stacks -Oracle Open Office Writer : objects;captioning -Oracle Open Office Writer : objects;captioning automatically -Oracle Open Office Writer : objects;contour wrap -Oracle Open Office Writer : objects;copying when moving in presentations -Oracle Open Office Writer : objects;cross-referencing -Oracle Open Office Writer : objects;defining borders -Oracle Open Office Writer : objects;defining hyperlinks -Oracle Open Office Writer : objects;definition -Oracle Open Office Writer : objects;displaying in spreadsheets -Oracle Open Office Writer : objects;displaying in text documents -Oracle Open Office Writer : objects;editing -Oracle Open Office Writer : objects;finding by Navigator -Oracle Open Office Writer : objects;inserting from Gallery -Oracle Open Office Writer : objects;inserting OLE objects -Oracle Open Office Writer : objects;moving and resizing with keyboard -Oracle Open Office Writer : objects;moving and resizing with mouse -Oracle Open Office Writer : objects;naming -Oracle Open Office Writer : objects;opening -Oracle Open Office Writer : objects;properties of charts -Oracle Open Office Writer : objects;quickly moving to -Oracle Open Office Writer : objects;quickly moving to, within text -Oracle Open Office Writer : objects;titles and descriptions -Oracle Open Office Writer : ODBC -Oracle Open Office Writer : ODBC;database (Base) -Oracle Open Office Writer : ODBC;definition -Oracle Open Office Writer : ODF file formats -Oracle Open Office Writer : Office -Oracle Open Office Writer : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Writer : OLE -Oracle Open Office Writer : OLE;definition -Oracle Open Office Writer : OLE objects -Oracle Open Office Writer : OLE objects;arranging within stacks -Oracle Open Office Writer : OLE objects;borders -Oracle Open Office Writer : OLE objects;captions (Writer) -Oracle Open Office Writer : OLE objects;cross-referencing -Oracle Open Office Writer : OLE objects;inserting -Oracle Open Office Writer : OLE objects;inserting tables in -Oracle Open Office Writer : OLE objects;number of -Oracle Open Office Writer : OLE objects;protecting -Oracle Open Office Writer : one and a half line spacing in text -Oracle Open Office Writer : online feedback options -Oracle Open Office Writer : online registration -Oracle Open Office Writer : online update options -Oracle Open Office Writer : online updates -Oracle Open Office Writer : online updates;checking automatically -Oracle Open Office Writer : online updates;checking manually -Oracle Open Office Writer : OpenDocument file formats -Oracle Open Office Writer : OpenGL -Oracle Open Office Writer : OpenGL;definition -Oracle Open Office Writer : opening -Oracle Open Office Writer : opening;context menus -Oracle Open Office Writer : opening;database files -Oracle Open Office Writer : opening;dialog settings -Oracle Open Office Writer : opening;documents -Oracle Open Office Writer : opening;documents from other formats -Oracle Open Office Writer : opening;documents on WebDAV server -Oracle Open Office Writer : opening;files with links -Oracle Open Office Writer : opening;files, with placeholders -Oracle Open Office Writer : opening;forms -Oracle Open Office Writer : opening;Microsoft Office files -Oracle Open Office Writer : opening;mobile device documents -Oracle Open Office Writer : opening;objects -Oracle Open Office Writer : opening;reports -Oracle Open Office Writer : opening;several files -Oracle Open Office Writer : opening;XForms -Oracle Open Office Writer : operators -Oracle Open Office Writer : operators;default filters -Oracle Open Office Writer : operators;in formulas -Oracle Open Office Writer : optional hyphens (Writer) -Oracle Open Office Writer : options -Oracle Open Office Writer : options;accessibility -Oracle Open Office Writer : options;appearance -Oracle Open Office Writer : options;compatibility (Writer) -Oracle Open Office Writer : options;improvement program -Oracle Open Office Writer : options;network identity -Oracle Open Office Writer : options;online update -Oracle Open Office Writer : options;smart tags -Oracle Open Office Writer : options;tools -Oracle Open Office Writer : Oracle databases (base) -Oracle Open Office Writer : Oracle Open Office Base data sources -Oracle Open Office Writer : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Writer : Oracle Open Office documents -Oracle Open Office Writer : Oracle Open Office documents;mobile device filters -Oracle Open Office Writer : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Writer : Oracle Open Office Math start -Oracle Open Office Writer : Oracle Open Office Writer -Oracle Open Office Writer : Oracle Open Office Writer;instructions -Oracle Open Office Writer : Oracle Open Office Writer;special HTML tags -Oracle Open Office Writer : order of chart data -Oracle Open Office Writer : ordering -Oracle Open Office Writer : ordering;objects -Oracle Open Office Writer : ordering;printing in reverse order -Oracle Open Office Writer : ordinal numbers -Oracle Open Office Writer : ordinal numbers;replacing -Oracle Open Office Writer : organizing -Oracle Open Office Writer : organizing;footnotes -Oracle Open Office Writer : organizing;macros and scripts -Oracle Open Office Writer : organizing;namespaces in XForms -Oracle Open Office Writer : organizing;styles -Oracle Open Office Writer : organizing;templates -Oracle Open Office Writer : organizing;templates (guide) -Oracle Open Office Writer : orientation of pages -Oracle Open Office Writer : original size -Oracle Open Office Writer : original size;printing in Oracle Open Office Math -Oracle Open Office Writer : original size;restoring after cropping -Oracle Open Office Writer : orphans -Oracle Open Office Writer : outlines -Oracle Open Office Writer : outlines;arranging chapters -Oracle Open Office Writer : outlines;font effects -Oracle Open Office Writer : outlines;numbering -Oracle Open Office Writer : outlines;outline symbols -Oracle Open Office Writer : outlines;sending to presentations -Oracle Open Office Writer : overviews -Oracle Open Office Writer : overviews;Navigator in text documents -Oracle Open Office Writer : overviews;printing multi-page view -Oracle Open Office Writer : overwrite mode -Oracle Open Office Writer : packages, see extensions -Oracle Open Office Writer : page breaks -Oracle Open Office Writer : page breaks;displaying (Calc) -Oracle Open Office Writer : page breaks;inserting and deleting -Oracle Open Office Writer : page breaks;tables -Oracle Open Office Writer : page counts -Oracle Open Office Writer : page formats -Oracle Open Office Writer : page formats;changing individual pages -Oracle Open Office Writer : page formats;maximizing -Oracle Open Office Writer : page formats;restriction -Oracle Open Office Writer : page margins on rulers -Oracle Open Office Writer : page numbers -Oracle Open Office Writer : page numbers;continuation pages -Oracle Open Office Writer : page numbers;footers -Oracle Open Office Writer : page numbers;inserting/defining/formatting -Oracle Open Office Writer : page styles -Oracle Open Office Writer : page styles;backgrounds -Oracle Open Office Writer : page styles;changing -Oracle Open Office Writer : page styles;changing from selection -Oracle Open Office Writer : page styles;creating and applying -Oracle Open Office Writer : page styles;editing/applying with statusbar -Oracle Open Office Writer : page styles;left and right pages -Oracle Open Office Writer : page styles;orientation/scope -Oracle Open Office Writer : page styles;page numbering -Oracle Open Office Writer : page styles;style categories -Oracle Open Office Writer : pages -Oracle Open Office Writer : pages;backgrounds -Oracle Open Office Writer : pages;backgrounds in all applications -Oracle Open Office Writer : pages;continuation pages -Oracle Open Office Writer : pages;defining borders -Oracle Open Office Writer : pages;formatting and numbering -Oracle Open Office Writer : pages;inserting/deleting page breaks -Oracle Open Office Writer : pages;jumping to -Oracle Open Office Writer : pages;left and right pages -Oracle Open Office Writer : pages;number of -Oracle Open Office Writer : pages;numbers and count of -Oracle Open Office Writer : pages;orientation -Oracle Open Office Writer : pages;previews -Oracle Open Office Writer : pages;printing multiple on one sheet -Oracle Open Office Writer : pages;printing page names in presentations -Oracle Open Office Writer : pages;register-true -Oracle Open Office Writer : pages;scaling -Oracle Open Office Writer : pages;selecting one to print -Oracle Open Office Writer : paint box -Oracle Open Office Writer : paint can symbol -Oracle Open Office Writer : pair kerning -Oracle Open Office Writer : Palm file filters -Oracle Open Office Writer : paper formats -Oracle Open Office Writer : paper orientation -Oracle Open Office Writer : paper size warning -Oracle Open Office Writer : paper tray selection -Oracle Open Office Writer : paper trays -Oracle Open Office Writer : paragraph marks -Oracle Open Office Writer : paragraph marks;displaying (Writer) -Oracle Open Office Writer : paragraph marks;finding & replacing -Oracle Open Office Writer : paragraph styles -Oracle Open Office Writer : paragraph styles;languages -Oracle Open Office Writer : paragraph styles;modifying basic fonts -Oracle Open Office Writer : paragraph styles;numbering -Oracle Open Office Writer : paragraph styles;style categories -Oracle Open Office Writer : paragraphs -Oracle Open Office Writer : paragraphs;alignment -Oracle Open Office Writer : paragraphs;Asian typography -Oracle Open Office Writer : paragraphs;automatic numbering -Oracle Open Office Writer : paragraphs;backgrounds -Oracle Open Office Writer : paragraphs;bulleted -Oracle Open Office Writer : paragraphs;defining borders -Oracle Open Office Writer : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Writer : paragraphs;hiding -Oracle Open Office Writer : paragraphs;increasing indents of -Oracle Open Office Writer : paragraphs;indents -Oracle Open Office Writer : paragraphs;indents, margins and columns -Oracle Open Office Writer : paragraphs;inserting before/after tables -Oracle Open Office Writer : paragraphs;inserting bullets -Oracle Open Office Writer : paragraphs;joining -Oracle Open Office Writer : paragraphs;keeping together at breaks -Oracle Open Office Writer : paragraphs;line numbers -Oracle Open Office Writer : paragraphs;moving by keyboard -Oracle Open Office Writer : paragraphs;numbering automatically -Oracle Open Office Writer : paragraphs;numbering non-consecutive -Oracle Open Office Writer : paragraphs;numbering on/off -Oracle Open Office Writer : paragraphs;register-true -Oracle Open Office Writer : paragraphs;removing blank ones -Oracle Open Office Writer : paragraphs;spacing -Oracle Open Office Writer : paragraphs;tab stops -Oracle Open Office Writer : parameters -Oracle Open Office Writer : parameters;command line -Oracle Open Office Writer : parameters;queries (Base) -Oracle Open Office Writer : passwords for protecting contents -Oracle Open Office Writer : pasting -Oracle Open Office Writer : pasting;cell ranges -Oracle Open Office Writer : pasting;cell ranges from spreadsheets -Oracle Open Office Writer : pasting;cut/copied text sections -Oracle Open Office Writer : pasting;data from text documents -Oracle Open Office Writer : pasting;draw objects -Oracle Open Office Writer : pasting;draw objects from other documents -Oracle Open Office Writer : pasting;formatted/unformatted text -Oracle Open Office Writer : pasting;from data source view -Oracle Open Office Writer : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Writer : pasting;pictures from other documents -Oracle Open Office Writer : pasting;results of formulas -Oracle Open Office Writer : pasting;sheet areas in text documents -Oracle Open Office Writer : pasting;to Gallery -Oracle Open Office Writer : paths -Oracle Open Office Writer : paths;changing work directory -Oracle Open Office Writer : paths;defaults -Oracle Open Office Writer : pattern editor -Oracle Open Office Writer : pattern fields -Oracle Open Office Writer : pattern fields;form functions -Oracle Open Office Writer : patterns for objects -Oracle Open Office Writer : PDF -Oracle Open Office Writer : PDF;export -Oracle Open Office Writer : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Writer : personal data input -Oracle Open Office Writer : phonetic guide -Oracle Open Office Writer : picklist creation -Oracle Open Office Writer : pictures -Oracle Open Office Writer : pictures;adding to Gallery -Oracle Open Office Writer : pictures;anchoring options -Oracle Open Office Writer : pictures;arranging within stacks -Oracle Open Office Writer : pictures;assigning macros -Oracle Open Office Writer : pictures;backgrounds -Oracle Open Office Writer : pictures;borders -Oracle Open Office Writer : pictures;captions (Writer) -Oracle Open Office Writer : pictures;changing paths -Oracle Open Office Writer : pictures;cropping and zooming -Oracle Open Office Writer : pictures;cross-referencing -Oracle Open Office Writer : pictures;defining hyperlinks -Oracle Open Office Writer : pictures;displaying in Calc -Oracle Open Office Writer : pictures;displaying in Writer (Writer) -Oracle Open Office Writer : pictures;do not show -Oracle Open Office Writer : pictures;drag and drop between documents -Oracle Open Office Writer : pictures;drawing -Oracle Open Office Writer : pictures;editing -Oracle Open Office Writer : pictures;filters -Oracle Open Office Writer : pictures;ImageMap -Oracle Open Office Writer : pictures;inserting automatically -Oracle Open Office Writer : pictures;inserting by dialog -Oracle Open Office Writer : pictures;inserting from Draw -Oracle Open Office Writer : pictures;inserting from Gallery -Oracle Open Office Writer : pictures;inserting from Gallery into text -Oracle Open Office Writer : pictures;inserting options -Oracle Open Office Writer : pictures;number of -Oracle Open Office Writer : pictures;printing -Oracle Open Office Writer : pictures;scaling/resizing -Oracle Open Office Writer : pictures;scanning -Oracle Open Office Writer : pie charts -Oracle Open Office Writer : pie charts;options -Oracle Open Office Writer : pie charts;types -Oracle Open Office Writer : pixel editor -Oracle Open Office Writer : pixel graphics -Oracle Open Office Writer : pixel graphics;inserting and editing -Oracle Open Office Writer : pixel patterns -Oracle Open Office Writer : placeholders -Oracle Open Office Writer : placeholders;in SQL queries -Oracle Open Office Writer : placeholders;on opening files -Oracle Open Office Writer : placing toolbars -Oracle Open Office Writer : playing movies and sound files -Oracle Open Office Writer : plotting data as charts -Oracle Open Office Writer : plug-ins -Oracle Open Office Writer : plug-ins;activating and deactivating -Oracle Open Office Writer : plug-ins;definition -Oracle Open Office Writer : plug-ins;inserting -Oracle Open Office Writer : pocket device appliances -Oracle Open Office Writer : Pocket PC file filters -Oracle Open Office Writer : points -Oracle Open Office Writer : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Writer : polygon drawing -Oracle Open Office Writer : pop-art filter -Oracle Open Office Writer : portable document format -Oracle Open Office Writer : portrait and landscape -Oracle Open Office Writer : positioning -Oracle Open Office Writer : positioning;axes -Oracle Open Office Writer : positioning;draw objects and controls -Oracle Open Office Writer : positioning;fonts -Oracle Open Office Writer : positioning;objects -Oracle Open Office Writer : positioning;objects (guide) -Oracle Open Office Writer : positioning;toolbars -Oracle Open Office Writer : post method for form transmissions -Oracle Open Office Writer : posterizing filter -Oracle Open Office Writer : PostScript -Oracle Open Office Writer : PostScript;creating files -Oracle Open Office Writer : PostScript;PDF converter, UNIX -Oracle Open Office Writer : PowerPoint export -Oracle Open Office Writer : precision as shown (Calc) -Oracle Open Office Writer : predefining fonts -Oracle Open Office Writer : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Writer : presentations -Oracle Open Office Writer : presentations;creating/opening -Oracle Open Office Writer : presentations;inserting spreadsheet cells -Oracle Open Office Writer : presentations;live on the Internet -Oracle Open Office Writer : presentations;print menu -Oracle Open Office Writer : presentations;saving -Oracle Open Office Writer : presentations;saving automatically -Oracle Open Office Writer : presentations;saving in other formats -Oracle Open Office Writer : presentations;sending as e-mail -Oracle Open Office Writer : presentations;starting with wizard -Oracle Open Office Writer : presentations;wizards -Oracle Open Office Writer : Presenter Console shortcuts -Oracle Open Office Writer : press buttons, see push buttons -Oracle Open Office Writer : previews -Oracle Open Office Writer : previews;book preview -Oracle Open Office Writer : previews;fonts lists -Oracle Open Office Writer : previews;print layouts -Oracle Open Office Writer : primary keys -Oracle Open Office Writer : primary keys;defining -Oracle Open Office Writer : primary keys;design view -Oracle Open Office Writer : primary keys;inserting (Base) -Oracle Open Office Writer : print area selection -Oracle Open Office Writer : print layout checks -Oracle Open Office Writer : printer metrics for document formatting (Writer) -Oracle Open Office Writer : printers -Oracle Open Office Writer : printers;adding, UNIX -Oracle Open Office Writer : printers;choosing -Oracle Open Office Writer : printers;default printer -Oracle Open Office Writer : printers;faxes under UNIX -Oracle Open Office Writer : printers;maximum page formats -Oracle Open Office Writer : printers;paper trays -Oracle Open Office Writer : printers;properties -Oracle Open Office Writer : printing -Oracle Open Office Writer : printing;AutoText shortcuts -Oracle Open Office Writer : printing;black and white -Oracle Open Office Writer : printing;brochures -Oracle Open Office Writer : printing;colors in grayscale -Oracle Open Office Writer : printing;comments -Oracle Open Office Writer : printing;copies -Oracle Open Office Writer : printing;creating individual jobs -Oracle Open Office Writer : printing;dates in presentations -Oracle Open Office Writer : printing;directly -Oracle Open Office Writer : printing;documents -Oracle Open Office Writer : printing;drawings defaults -Oracle Open Office Writer : printing;elements in text documents -Oracle Open Office Writer : printing;faster -Oracle Open Office Writer : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Writer : printing;fitting to pages in presentations -Oracle Open Office Writer : printing;formulas in Oracle Open Office Math -Oracle Open Office Writer : printing;hidden pages of presentations -Oracle Open Office Writer : printing;hiding text frames from printing -Oracle Open Office Writer : printing;in original size in Oracle Open Office Math -Oracle Open Office Writer : printing;individual brochures -Oracle Open Office Writer : printing;left/right pages -Oracle Open Office Writer : printing;multiple pages per sheet -Oracle Open Office Writer : printing;portrait/landscape format -Oracle Open Office Writer : printing;previews -Oracle Open Office Writer : printing;queries (Base) -Oracle Open Office Writer : printing;reverse order -Oracle Open Office Writer : printing;scaling in Oracle Open Office Math -Oracle Open Office Writer : printing;selections -Oracle Open Office Writer : printing;text always in black -Oracle Open Office Writer : printing;text in reverse order -Oracle Open Office Writer : printing;tiling pages in presentations -Oracle Open Office Writer : printing;transparencies -Oracle Open Office Writer : printing;warnings -Oracle Open Office Writer : printing;without scaling in presentations -Oracle Open Office Writer : printing speed -Oracle Open Office Writer : programming -Oracle Open Office Writer : programming;Oracle Open Office -Oracle Open Office Writer : programming;scripting -Oracle Open Office Writer : promoting heading levels -Oracle Open Office Writer : properties -Oracle Open Office Writer : properties;charts -Oracle Open Office Writer : properties;fields -Oracle Open Office Writer : properties;fields in databases -Oracle Open Office Writer : properties;files -Oracle Open Office Writer : properties;form controls -Oracle Open Office Writer : properties;forms -Oracle Open Office Writer : properties;printers -Oracle Open Office Writer : properties;smooth lines in line charts/XY charts -Oracle Open Office Writer : proportional distribution of tables -Oracle Open Office Writer : protected contents -Oracle Open Office Writer : protected dashes -Oracle Open Office Writer : protected database tables -Oracle Open Office Writer : protected documents -Oracle Open Office Writer : protected spaces -Oracle Open Office Writer : protected spaces;inserting -Oracle Open Office Writer : protected spaces;showing (Writer) -Oracle Open Office Writer : protecting -Oracle Open Office Writer : protecting;contents -Oracle Open Office Writer : protecting;recorded changes -Oracle Open Office Writer : protecting;sections -Oracle Open Office Writer : protecting;tables and sections -Oracle Open Office Writer : protecting;text flow -Oracle Open Office Writer : proxy settings -Oracle Open Office Writer : push buttons -Oracle Open Office Writer : push buttons;adding to documents -Oracle Open Office Writer : push buttons;creating -Oracle Open Office Writer : queries -Oracle Open Office Writer : queries;copying (Base) -Oracle Open Office Writer : queries;creating in design view (Base) -Oracle Open Office Writer : queries;creating in SQL view -Oracle Open Office Writer : queries;defining (Base) -Oracle Open Office Writer : queries;deleting table links (Base) -Oracle Open Office Writer : queries;editing in data source view -Oracle Open Office Writer : queries;formulating filter conditions (Base) -Oracle Open Office Writer : queries;joining tables (Base) -Oracle Open Office Writer : queries;missing elements (Base) -Oracle Open Office Writer : queries;overview (Base) -Oracle Open Office Writer : queries;parameter queries (Base) -Oracle Open Office Writer : queries;printing (Base) -Oracle Open Office Writer : Query Wizard (Base) -Oracle Open Office Writer : Quickstarter -Oracle Open Office Writer : quotation marks -Oracle Open Office Writer : quotation marks;changing automatically -Oracle Open Office Writer : quotes -Oracle Open Office Writer : quotes;custom -Oracle Open Office Writer : radar charts, see net charts -Oracle Open Office Writer : radio button creation -Oracle Open Office Writer : read-only documents -Oracle Open Office Writer : read-only documents;cursor -Oracle Open Office Writer : read-only documents;database tables on/off -Oracle Open Office Writer : read-only documents;editing -Oracle Open Office Writer : read-only documents;opening documents as -Oracle Open Office Writer : read-only items in Data Navigator -Oracle Open Office Writer : read-only sections -Oracle Open Office Writer : rearranging headings -Oracle Open Office Writer : recognition -Oracle Open Office Writer : recognition;languages -Oracle Open Office Writer : recognition;numbers -Oracle Open Office Writer : recognizing URLs automatically -Oracle Open Office Writer : recording -Oracle Open Office Writer : recording;changes -Oracle Open Office Writer : recording;macros -Oracle Open Office Writer : records -Oracle Open Office Writer : records;inserting comments -Oracle Open Office Writer : records;protecting -Oracle Open Office Writer : records;saving -Oracle Open Office Writer : records;searching in databases -Oracle Open Office Writer : rectangles with round corners -Oracle Open Office Writer : recursions in spreadsheets -Oracle Open Office Writer : redo command -Oracle Open Office Writer : reduced printing -Oracle Open Office Writer : reduced printing of multiple pages -Oracle Open Office Writer : reducing rows and columns in text tables -Oracle Open Office Writer : reference lines -Oracle Open Office Writer : references -Oracle Open Office Writer : references;displaying in color (Calc) -Oracle Open Office Writer : references;expanding (Calc) -Oracle Open Office Writer : references;in Writer tables -Oracle Open Office Writer : references;inserting cross-references -Oracle Open Office Writer : references;iterative (Calc) -Oracle Open Office Writer : references;modifying cross-references -Oracle Open Office Writer : refusing word completions -Oracle Open Office Writer : register-true -Oracle Open Office Writer : register-true;definition -Oracle Open Office Writer : register-true;pages and paragraphs -Oracle Open Office Writer : registering -Oracle Open Office Writer : registering;address books -Oracle Open Office Writer : registering;databases (Base) -Oracle Open Office Writer : registering;Oracle Open Office -Oracle Open Office Writer : regression curves in charts -Oracle Open Office Writer : regular expressions -Oracle Open Office Writer : regular expressions;list of -Oracle Open Office Writer : regular expressions;searching -Oracle Open Office Writer : rejecting word completions -Oracle Open Office Writer : related words in thesaurus -Oracle Open Office Writer : relational databases (Base) -Oracle Open Office Writer : relations -Oracle Open Office Writer : relations;creating and deleting (Base) -Oracle Open Office Writer : relations;joining tables (Base) -Oracle Open Office Writer : relations;properties (Base) -Oracle Open Office Writer : relative distribution of table cells -Oracle Open Office Writer : relative hyperlinks -Oracle Open Office Writer : relative saving of URLs -Oracle Open Office Writer : reloading -Oracle Open Office Writer : reloading;documents -Oracle Open Office Writer : reloading;HTML documents, automatically -Oracle Open Office Writer : remarks, see also comments -Oracle Open Office Writer : remote configurations -Oracle Open Office Writer : remove noise filter -Oracle Open Office Writer : removing -Oracle Open Office Writer : removing;bullets and numbering -Oracle Open Office Writer : removing;bullets in text documents -Oracle Open Office Writer : removing;cell protection in text documents -Oracle Open Office Writer : removing;form filters -Oracle Open Office Writer : removing;subdocuments -Oracle Open Office Writer : removing, see also deleting -Oracle Open Office Writer : reorganizing charts -Oracle Open Office Writer : repeating -Oracle Open Office Writer : repeating;commands -Oracle Open Office Writer : repeating;table headings after page breaks -Oracle Open Office Writer : replacement options -Oracle Open Office Writer : replacement table -Oracle Open Office Writer : replacing -Oracle Open Office Writer : replacing;AutoCorrect function -Oracle Open Office Writer : replacing;dashes -Oracle Open Office Writer : replacing;databases -Oracle Open Office Writer : replacing;fields, by text -Oracle Open Office Writer : replacing;objects from Gallery -Oracle Open Office Writer : replacing;ordinal numbers -Oracle Open Office Writer : replacing;tab stops (regular expressions) -Oracle Open Office Writer : replacing;text and text formats -Oracle Open Office Writer : Report Builder -Oracle Open Office Writer : reports -Oracle Open Office Writer : reports;creating -Oracle Open Office Writer : reports;error reports -Oracle Open Office Writer : reports;opening and editing -Oracle Open Office Writer : reports;templates -Oracle Open Office Writer : resetting -Oracle Open Office Writer : resetting;fonts -Oracle Open Office Writer : resetting;templates -Oracle Open Office Writer : resizing -Oracle Open Office Writer : resizing;aspect ratio -Oracle Open Office Writer : resizing;objects and frames, by keyboard -Oracle Open Office Writer : resizing;objects, by mouse -Oracle Open Office Writer : resizing;rows and columns in text tables -Oracle Open Office Writer : resizing;text frames, by mouse -Oracle Open Office Writer : resizing;windows -Oracle Open Office Writer : resizing, see also scaling/zooming -Oracle Open Office Writer : resolution when printing bitmaps -Oracle Open Office Writer : restoring -Oracle Open Office Writer : restoring;default formatting -Oracle Open Office Writer : restoring;editing -Oracle Open Office Writer : reversing printing order -Oracle Open Office Writer : review function -Oracle Open Office Writer : review function;accepting or rejecting changes -Oracle Open Office Writer : review function;comparing documents -Oracle Open Office Writer : review function;protecting records -Oracle Open Office Writer : review function;recording changes example -Oracle Open Office Writer : rich text control -Oracle Open Office Writer : right alignment of paragraphs -Oracle Open Office Writer : right indents in paragraphs -Oracle Open Office Writer : right joins (Base) -Oracle Open Office Writer : right pages -Oracle Open Office Writer : right-to-left text -Oracle Open Office Writer : rising outline levels -Oracle Open Office Writer : rotating -Oracle Open Office Writer : rotating;3D text -Oracle Open Office Writer : rotating;text -Oracle Open Office Writer : round corners -Oracle Open Office Writer : rounding precision (Calc) -Oracle Open Office Writer : row breaks in text tables -Oracle Open Office Writer : row headers -Oracle Open Office Writer : row headers;displaying (Calc) -Oracle Open Office Writer : row headers;highlighting (Calc) -Oracle Open Office Writer : rows -Oracle Open Office Writer : rows;inserting in tables, using icon -Oracle Open Office Writer : rows;inserting/deleting in tables by keyboard -Oracle Open Office Writer : rows;register-true text -Oracle Open Office Writer : rows;selecting -Oracle Open Office Writer : rulers -Oracle Open Office Writer : rulers;default settings -Oracle Open Office Writer : rulers;measurement units -Oracle Open Office Writer : rulers;using rulers -Oracle Open Office Writer : rulers;visible in presentations -Oracle Open Office Writer : rules -Oracle Open Office Writer : running titles in headers -Oracle Open Office Writer : samples and templates -Oracle Open Office Writer : saving -Oracle Open Office Writer : saving;default file formats -Oracle Open Office Writer : saving;dialog settings -Oracle Open Office Writer : saving;documents -Oracle Open Office Writer : saving;documents for mobile devices -Oracle Open Office Writer : saving;documents in other formats -Oracle Open Office Writer : saving;documents, automatically -Oracle Open Office Writer : saving;in HTML format -Oracle Open Office Writer : saving;in Microsoft Office file format -Oracle Open Office Writer : saving;options -Oracle Open Office Writer : saving;templates -Oracle Open Office Writer : saving;to XML -Oracle Open Office Writer : saving;VBA code in Microsoft Office documents -Oracle Open Office Writer : saving;with password by default -Oracle Open Office Writer : saving as command -Oracle Open Office Writer : saving as command;precautions -Oracle Open Office Writer : scaling -Oracle Open Office Writer : scaling;axes -Oracle Open Office Writer : scaling;font sizes in user interface -Oracle Open Office Writer : scaling;objects -Oracle Open Office Writer : scaling;pictures -Oracle Open Office Writer : scaling;printing in Oracle Open Office Math -Oracle Open Office Writer : scaling;text frames, by mouse -Oracle Open Office Writer : scaling;text in charts -Oracle Open Office Writer : scaling;when printing presentations -Oracle Open Office Writer : scaling, see also zooming -Oracle Open Office Writer : scanning pictures -Oracle Open Office Writer : scatter charts -Oracle Open Office Writer : scope of page styles -Oracle Open Office Writer : screen -Oracle Open Office Writer : screen;full screen views -Oracle Open Office Writer : screen;scaling -Oracle Open Office Writer : screen magnifiers -Oracle Open Office Writer : screen readers -Oracle Open Office Writer : script organization -Oracle Open Office Writer : scrollbars -Oracle Open Office Writer : scrollbars;controls -Oracle Open Office Writer : scrollbars;displaying (Calc) -Oracle Open Office Writer : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Writer : search criteria for database functions in cells -Oracle Open Office Writer : search engines -Oracle Open Office Writer : search engines;definition -Oracle Open Office Writer : search engines;selecting -Oracle Open Office Writer : searching -Oracle Open Office Writer : searching;all sheets -Oracle Open Office Writer : searching;cross-references -Oracle Open Office Writer : searching;databases -Oracle Open Office Writer : searching;form filters -Oracle Open Office Writer : searching;formats -Oracle Open Office Writer : searching;Internet -Oracle Open Office Writer : searching;repeating a search -Oracle Open Office Writer : searching;synonyms -Oracle Open Office Writer : searching;tables and forms -Oracle Open Office Writer : searching;with wildcards -Oracle Open Office Writer : searching, see also finding -Oracle Open Office Writer : secondary axes in charts -Oracle Open Office Writer : sections -Oracle Open Office Writer : sections;backgrounds -Oracle Open Office Writer : sections;columns in/use of -Oracle Open Office Writer : sections;defining conditions -Oracle Open Office Writer : sections;editing -Oracle Open Office Writer : sections;hiding -Oracle Open Office Writer : sections;inserting -Oracle Open Office Writer : sections;inserting external content -Oracle Open Office Writer : sections;inserting sections by DDE -Oracle Open Office Writer : sections;moving and copying -Oracle Open Office Writer : sections;protecting/unprotecting -Oracle Open Office Writer : security -Oracle Open Office Writer : security;digital signatures -Oracle Open Office Writer : security;options for documents with macros -Oracle Open Office Writer : security;protecting contents -Oracle Open Office Writer : security;security levels for macros -Oracle Open Office Writer : security;warning dialogs with macros -Oracle Open Office Writer : selecting -Oracle Open Office Writer : selecting;controls -Oracle Open Office Writer : selecting;measurement units -Oracle Open Office Writer : selecting;objects -Oracle Open Office Writer : selecting;paper trays -Oracle Open Office Writer : selecting;print areas -Oracle Open Office Writer : selecting;several files -Oracle Open Office Writer : selecting;tables -Oracle Open Office Writer : selecting;text, with keyboard -Oracle Open Office Writer : selection clipboard -Oracle Open Office Writer : selection frames -Oracle Open Office Writer : selection modes in text -Oracle Open Office Writer : sending -Oracle Open Office Writer : sending;AutoAbstract function in presentations -Oracle Open Office Writer : sending;documents as e-mail -Oracle Open Office Writer : sending;documents as faxes -Oracle Open Office Writer : separation, see hyphenation -Oracle Open Office Writer : separator lines -Oracle Open Office Writer : separator lines;AutoFormat function -Oracle Open Office Writer : separator lines;defining -Oracle Open Office Writer : separators -Oracle Open Office Writer : separators;conditional -Oracle Open Office Writer : serial letters -Oracle Open Office Writer : Server Side ImageMap -Oracle Open Office Writer : settings -Oracle Open Office Writer : settings;direct cursor -Oracle Open Office Writer : settings;printers -Oracle Open Office Writer : settings;program configuration -Oracle Open Office Writer : settings;proxies -Oracle Open Office Writer : settings;tracking changes -Oracle Open Office Writer : settings;views -Oracle Open Office Writer : settings;word completion -Oracle Open Office Writer : SGML -Oracle Open Office Writer : SGML;definition -Oracle Open Office Writer : shadows -Oracle Open Office Writer : shadows;areas -Oracle Open Office Writer : shadows;borders -Oracle Open Office Writer : shadows;characters -Oracle Open Office Writer : shadows;characters, using context menu -Oracle Open Office Writer : shadows;headers/footers -Oracle Open Office Writer : sharing documents -Oracle Open Office Writer : sharpening filter -Oracle Open Office Writer : sheet tabs -Oracle Open Office Writer : sheet tabs;displaying -Oracle Open Office Writer : sheets -Oracle Open Office Writer : sheets;searching all -Oracle Open Office Writer : shortcut keys -Oracle Open Office Writer : shortcut keys;assigning macros -Oracle Open Office Writer : shortcut keys;bold formatting -Oracle Open Office Writer : shortcut keys;charts -Oracle Open Office Writer : shortcut keys;general -Oracle Open Office Writer : shortcut keys;in databases -Oracle Open Office Writer : shortcut keys;in text documents -Oracle Open Office Writer : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Writer : showing -Oracle Open Office Writer : showing;changes -Oracle Open Office Writer : showing;docked windows -Oracle Open Office Writer : showing;drawings and controls (Writer) -Oracle Open Office Writer : showing;live presentations on the Internet -Oracle Open Office Writer : showing;rulers -Oracle Open Office Writer : showing;toolbars -Oracle Open Office Writer : sideways orientation of pages -Oracle Open Office Writer : signing documents with digital signatures -Oracle Open Office Writer : similarity search -Oracle Open Office Writer : simple handles (Writer) -Oracle Open Office Writer : simplified Chinese -Oracle Open Office Writer : simplified Chinese;translating to traditional Chinese -Oracle Open Office Writer : single sign on options -Oracle Open Office Writer : single-line spacing in text -Oracle Open Office Writer : sizes -Oracle Open Office Writer : sizes;draw objects -Oracle Open Office Writer : sizes;pictures -Oracle Open Office Writer : slanting draw objects -Oracle Open Office Writer : small capitals -Oracle Open Office Writer : small capitals (guide) -Oracle Open Office Writer : small icons -Oracle Open Office Writer : smart tag configuration -Oracle Open Office Writer : smart tags -Oracle Open Office Writer : smooth scrolling (Writer) -Oracle Open Office Writer : smoothing filter -Oracle Open Office Writer : snap grid defaults (Writer/Calc) -Oracle Open Office Writer : snapping in presentations and drawings -Oracle Open Office Writer : solarization filter -Oracle Open Office Writer : sort lists -Oracle Open Office Writer : sort lists;copying to in Calc -Oracle Open Office Writer : sorting -Oracle Open Office Writer : sorting;data in forms -Oracle Open Office Writer : sorting;databases -Oracle Open Office Writer : sorting;paragraphs in special languages -Oracle Open Office Writer : sorting;paragraphs/table rows -Oracle Open Office Writer : sound files -Oracle Open Office Writer : spaces -Oracle Open Office Writer : spaces;displaying (Writer) -Oracle Open Office Writer : spaces;ignoring double -Oracle Open Office Writer : spaces;inserting protected spaces -Oracle Open Office Writer : spaces;showing protected spaces (Writer) -Oracle Open Office Writer : spacing -Oracle Open Office Writer : spacing;between paragraphs in footnotes -Oracle Open Office Writer : spacing;endnotes/footnotes -Oracle Open Office Writer : spacing;font effects -Oracle Open Office Writer : spacing;lines and paragraphs -Oracle Open Office Writer : spacing;register-true text -Oracle Open Office Writer : spacing;tab stops in text documents -Oracle Open Office Writer : spacing;tabs in presentations -Oracle Open Office Writer : spadmin -Oracle Open Office Writer : special characters -Oracle Open Office Writer : speech bubbles -Oracle Open Office Writer : speed of printing -Oracle Open Office Writer : spellcheck -Oracle Open Office Writer : spellcheck;activating for a language -Oracle Open Office Writer : spellcheck;activating for all languages -Oracle Open Office Writer : spellcheck;AutoSpellcheck on/off -Oracle Open Office Writer : spellcheck;checking text documents manually -Oracle Open Office Writer : spellcheck;context menus -Oracle Open Office Writer : spellcheck;default languages -Oracle Open Office Writer : spellcheck;dialog -Oracle Open Office Writer : spellcheck;dictionary of exceptions -Oracle Open Office Writer : spellcheck;ignore list -Oracle Open Office Writer : spelling in thesaurus -Oracle Open Office Writer : spin button creation -Oracle Open Office Writer : splitting cells -Oracle Open Office Writer : splitting cells;by keyboard -Oracle Open Office Writer : splitting cells;by menu command -Oracle Open Office Writer : splitting tables -Oracle Open Office Writer : splitting tables;at cursor position -Oracle Open Office Writer : splitting tables;row breaks -Oracle Open Office Writer : spoolfiles with Xprinter -Oracle Open Office Writer : spreadsheets -Oracle Open Office Writer : spreadsheets;as databases (base) -Oracle Open Office Writer : spreadsheets;copying areas to text documents -Oracle Open Office Writer : spreadsheets;creating/opening -Oracle Open Office Writer : spreadsheets;inserting charts -Oracle Open Office Writer : spreadsheets;inserting database records -Oracle Open Office Writer : spreadsheets;inserting tables from -Oracle Open Office Writer : spreadsheets;printing -Oracle Open Office Writer : spreadsheets;saving -Oracle Open Office Writer : spreadsheets;saving automatically -Oracle Open Office Writer : spreadsheets;saving in other formats -Oracle Open Office Writer : spreadsheets;sending as e-mail -Oracle Open Office Writer : SQL -Oracle Open Office Writer : SQL;definition -Oracle Open Office Writer : SQL;DISTINCT parameter -Oracle Open Office Writer : SQL;executing SQL commands -Oracle Open Office Writer : SQL;executing SQL statements (Base) -Oracle Open Office Writer : SQL;queries (Base) -Oracle Open Office Writer : square drawings -Oracle Open Office Writer : standard bar on/off -Oracle Open Office Writer : standard deviation in charts -Oracle Open Office Writer : standard filters in databases -Oracle Open Office Writer : standard printer under UNIX -Oracle Open Office Writer : start center -Oracle Open Office Writer : start parameters -Oracle Open Office Writer : starting page numbers -Oracle Open Office Writer : statistical functions -Oracle Open Office Writer : statistics in charts -Oracle Open Office Writer : status bar on/off -Oracle Open Office Writer : stickers -Oracle Open Office Writer : stock charts -Oracle Open Office Writer : storing bibliographic information -Oracle Open Office Writer : strikethrough -Oracle Open Office Writer : strikethrough;characters -Oracle Open Office Writer : strikethrough;font effects -Oracle Open Office Writer : styles -Oracle Open Office Writer : styles;'changed' message -Oracle Open Office Writer : styles;categories -Oracle Open Office Writer : styles;conditional -Oracle Open Office Writer : styles;copying between documents -Oracle Open Office Writer : styles;creating from selections -Oracle Open Office Writer : styles;finding -Oracle Open Office Writer : styles;for pages -Oracle Open Office Writer : styles;importing from other files -Oracle Open Office Writer : styles;keyboard shortcuts -Oracle Open Office Writer : styles;master documents -Oracle Open Office Writer : styles;organizing -Oracle Open Office Writer : styles;page numbers -Oracle Open Office Writer : styles;printing styles used in a document -Oracle Open Office Writer : styles;replacing automatically -Oracle Open Office Writer : styles;styles and templates -Oracle Open Office Writer : styles;table styles -Oracle Open Office Writer : styles;transferring -Oracle Open Office Writer : styles;updating from selections -Oracle Open Office Writer : Styles and Formatting window -Oracle Open Office Writer : Styles and Formatting window;applying styles -Oracle Open Office Writer : Styles and Formatting window;docking -Oracle Open Office Writer : Styles and Formatting window;docking and resizing -Oracle Open Office Writer : Styles and Formatting window;updating from selections -Oracle Open Office Writer : Stylist, see Styles and Formatting window -Oracle Open Office Writer : subdocuments -Oracle Open Office Writer : subdocuments;creating/editing/removing -Oracle Open Office Writer : subdocuments;properties -Oracle Open Office Writer : subforms -Oracle Open Office Writer : subforms;creating -Oracle Open Office Writer : subforms;description -Oracle Open Office Writer : subject fields -Oracle Open Office Writer : submitting forms -Oracle Open Office Writer : subscript text -Oracle Open Office Writer : subsidiary documents -Oracle Open Office Writer : suffixes in file formats -Oracle Open Office Writer : sums of table cell series -Oracle Open Office Writer : superscript text -Oracle Open Office Writer : support on the Web -Oracle Open Office Writer : switching off -Oracle Open Office Writer : switching off;hyphenation for specific words -Oracle Open Office Writer : switching off;word completion -Oracle Open Office Writer : synchronizing -Oracle Open Office Writer : synchronizing;labels and business cards -Oracle Open Office Writer : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Writer : synonyms in thesaurus -Oracle Open Office Writer : system address book registration -Oracle Open Office Writer : tab stops -Oracle Open Office Writer : tab stops;before headings -Oracle Open Office Writer : tab stops;displaying (Writer) -Oracle Open Office Writer : tab stops;inserting and editing -Oracle Open Office Writer : tab stops;inserting in lists -Oracle Open Office Writer : tab stops;regular expressions -Oracle Open Office Writer : tab stops;setting in sheets -Oracle Open Office Writer : tab stops;settings -Oracle Open Office Writer : tab stops;spacing in presentations -Oracle Open Office Writer : tab stops;spacing in text documents -Oracle Open Office Writer : table cells -Oracle Open Office Writer : table cells;adjusting the width on rulers -Oracle Open Office Writer : table cells;calculating sums -Oracle Open Office Writer : table cells;enlarging/reducing in text -Oracle Open Office Writer : table controls -Oracle Open Office Writer : table controls;form functions -Oracle Open Office Writer : table controls;keyboard-only edit mode -Oracle Open Office Writer : table controls;properties -Oracle Open Office Writer : table mode selection -Oracle Open Office Writer : table views of databases -Oracle Open Office Writer : Table Wizard (Base) -Oracle Open Office Writer : tables -Oracle Open Office Writer : tables;adapting the width by keyboard -Oracle Open Office Writer : tables;allowing page breaks -Oracle Open Office Writer : tables;AutoFormat function -Oracle Open Office Writer : tables;backgrounds -Oracle Open Office Writer : tables;calculating across -Oracle Open Office Writer : tables;calculating sums -Oracle Open Office Writer : tables;converting to text -Oracle Open Office Writer : tables;cross-referencing -Oracle Open Office Writer : tables;defining borders -Oracle Open Office Writer : tables;deleting -Oracle Open Office Writer : tables;deleting page breaks before -Oracle Open Office Writer : tables;editing by keyboard -Oracle Open Office Writer : tables;editing with the keyboard -Oracle Open Office Writer : tables;heading repetition after page breaks -Oracle Open Office Writer : tables;inserting columns in -Oracle Open Office Writer : tables;inserting line breaks -Oracle Open Office Writer : tables;inserting rows -Oracle Open Office Writer : tables;inserting text before -Oracle Open Office Writer : tables;inserting text tables -Oracle Open Office Writer : tables;jumping to -Oracle Open Office Writer : tables;labeling -Oracle Open Office Writer : tables;merging -Oracle Open Office Writer : tables;merging cells -Oracle Open Office Writer : tables;number recognition -Oracle Open Office Writer : tables;performing calculations in -Oracle Open Office Writer : tables;positioning -Oracle Open Office Writer : tables;protecting/unprotecting cells -Oracle Open Office Writer : tables;resizing/juxtaposing -Oracle Open Office Writer : tables;selecting -Oracle Open Office Writer : tables;sorting rows -Oracle Open Office Writer : tables;splitting -Oracle Open Office Writer : tables;start/end of document -Oracle Open Office Writer : tables;text flow around text tables -Oracle Open Office Writer : tables in databases -Oracle Open Office Writer : tables in databases;access rights to (Base) -Oracle Open Office Writer : tables in databases;adding to queries -Oracle Open Office Writer : tables in databases;browsing and editing -Oracle Open Office Writer : tables in databases;copying database tables (Base) -Oracle Open Office Writer : tables in databases;creating -Oracle Open Office Writer : tables in databases;creating in design view (manually) -Oracle Open Office Writer : tables in databases;importing text formats (Base) -Oracle Open Office Writer : tables in databases;joining for queries (Base) -Oracle Open Office Writer : tables in databases;printing queries (Base) -Oracle Open Office Writer : tables in databases;relations (Base) -Oracle Open Office Writer : tables in databases;searching -Oracle Open Office Writer : tables in spreadsheets -Oracle Open Office Writer : tables in spreadsheets;copying data to other applications -Oracle Open Office Writer : tables in spreadsheets;defining borders -Oracle Open Office Writer : tables in spreadsheets;inserting in text -Oracle Open Office Writer : tables in spreadsheets;value highlighting -Oracle Open Office Writer : tables in text -Oracle Open Office Writer : tables in text;captions -Oracle Open Office Writer : tables in text;creating automatically -Oracle Open Office Writer : tables in text;default settings -Oracle Open Office Writer : tables in text;defining borders -Oracle Open Office Writer : tables in text;displaying -Oracle Open Office Writer : tables in text;printing -Oracle Open Office Writer : tables of contents -Oracle Open Office Writer : tables of contents;creating and updating -Oracle Open Office Writer : tables of contents;defining entries in -Oracle Open Office Writer : tables of contents;editing and deleting -Oracle Open Office Writer : tables of contents;editing or deleting entries -Oracle Open Office Writer : tables of contents;formatting -Oracle Open Office Writer : tables of contents;hyperlinks as entries -Oracle Open Office Writer : tables of contents;unprotecting -Oracle Open Office Writer : tabs -Oracle Open Office Writer : tabs;displaying sheet tabs -Oracle Open Office Writer : tags -Oracle Open Office Writer : tags;definition -Oracle Open Office Writer : tags;in Oracle Open Office Writer -Oracle Open Office Writer : tags;META tags -Oracle Open Office Writer : templates -Oracle Open Office Writer : templates;agendas -Oracle Open Office Writer : templates;changing basic fonts -Oracle Open Office Writer : templates;creating document templates -Oracle Open Office Writer : templates;database reports -Oracle Open Office Writer : templates;default templates -Oracle Open Office Writer : templates;deleting -Oracle Open Office Writer : templates;editing and saving -Oracle Open Office Writer : templates;faxes -Oracle Open Office Writer : templates;importing and exporting -Oracle Open Office Writer : templates;letters -Oracle Open Office Writer : templates;new documents from templates -Oracle Open Office Writer : templates;opening documents with -Oracle Open Office Writer : templates;organizing -Oracle Open Office Writer : templates;organizing (guide) -Oracle Open Office Writer : templates;updating from selections -Oracle Open Office Writer : terminology -Oracle Open Office Writer : terminology;general glossary -Oracle Open Office Writer : terminology;Internet glossary -Oracle Open Office Writer : testing XML filters -Oracle Open Office Writer : text -Oracle Open Office Writer : text;animating -Oracle Open Office Writer : text;Asian layout -Oracle Open Office Writer : text;backgrounds -Oracle Open Office Writer : text;bold -Oracle Open Office Writer : text;coloring -Oracle Open Office Writer : text;conditional text -Oracle Open Office Writer : text;converting to tables -Oracle Open Office Writer : text;copying by drag and drop -Oracle Open Office Writer : text;CTL languages -Oracle Open Office Writer : text;cursor -Oracle Open Office Writer : text;drawing pictures -Oracle Open Office Writer : text;emphasizing -Oracle Open Office Writer : text;font effects -Oracle Open Office Writer : text;font sizes -Oracle Open Office Writer : text;font styles -Oracle Open Office Writer : text;fonts and formats -Oracle Open Office Writer : text;Fontwork icons -Oracle Open Office Writer : text;formatting around objects -Oracle Open Office Writer : text;formatting bold while typing -Oracle Open Office Writer : text;hiding -Oracle Open Office Writer : text;hiding from specific users, with conditions -Oracle Open Office Writer : text;hyperlinks -Oracle Open Office Writer : text;input fields -Oracle Open Office Writer : text;inserting pictures from Draw -Oracle Open Office Writer : text;inserting pictures in -Oracle Open Office Writer : text;inserting special characters -Oracle Open Office Writer : text;italics -Oracle Open Office Writer : text;kerning -Oracle Open Office Writer : text;language selection -Oracle Open Office Writer : text;line numbers -Oracle Open Office Writer : text;line spacing -Oracle Open Office Writer : text;multi-column -Oracle Open Office Writer : text;navigating and selecting with keyboard -Oracle Open Office Writer : text;non-printable -Oracle Open Office Writer : text;number of words/characters -Oracle Open Office Writer : text;overwriting or inserting -Oracle Open Office Writer : text;printing in black -Oracle Open Office Writer : text;replacing with format -Oracle Open Office Writer : text;rotating -Oracle Open Office Writer : text;selection modes -Oracle Open Office Writer : text;shadowed -Oracle Open Office Writer : text;sorting paragraphs -Oracle Open Office Writer : text;subscript and superscript -Oracle Open Office Writer : text;text/draw objects -Oracle Open Office Writer : text;turning off automatic correction -Oracle Open Office Writer : text;uppercase or lowercase -Oracle Open Office Writer : text animation -Oracle Open Office Writer : text attributes -Oracle Open Office Writer : text attributes;hyperlinks -Oracle Open Office Writer : text attributes;undoing -Oracle Open Office Writer : text blocks -Oracle Open Office Writer : text boxes -Oracle Open Office Writer : text boxes;form functions -Oracle Open Office Writer : text boxes;positioning -Oracle Open Office Writer : text breaks in cells -Oracle Open Office Writer : text colors for better accessibility -Oracle Open Office Writer : text columns -Oracle Open Office Writer : text databases (Base) -Oracle Open Office Writer : text documents -Oracle Open Office Writer : text documents;creating/opening -Oracle Open Office Writer : text documents;default templates -Oracle Open Office Writer : text documents;importing/exporting -Oracle Open Office Writer : text documents;inserting Calc charts -Oracle Open Office Writer : text documents;inserting spreadsheet cells -Oracle Open Office Writer : text documents;merging -Oracle Open Office Writer : text documents;print settings -Oracle Open Office Writer : text documents;printing -Oracle Open Office Writer : text documents;publishing in HTML -Oracle Open Office Writer : text documents;saving -Oracle Open Office Writer : text documents;saving automatically -Oracle Open Office Writer : text documents;saving in other formats -Oracle Open Office Writer : text documents;sending as e-mail -Oracle Open Office Writer : text documents;shortcut keys in -Oracle Open Office Writer : text documents;word completion settings -Oracle Open Office Writer : text effects -Oracle Open Office Writer : text flow -Oracle Open Office Writer : text flow;around text tables -Oracle Open Office Writer : text flow;at breaks -Oracle Open Office Writer : text flow;from frame to frame -Oracle Open Office Writer : text flow;in cells -Oracle Open Office Writer : text formats -Oracle Open Office Writer : text formats;copying and pasting -Oracle Open Office Writer : text formats;databases -Oracle Open Office Writer : text formats;finding -Oracle Open Office Writer : text formats;pasting -Oracle Open Office Writer : text frames -Oracle Open Office Writer : text frames;centering on pages -Oracle Open Office Writer : text frames;inserting/editing/linking -Oracle Open Office Writer : text frames;labeling -Oracle Open Office Writer : text grid for Asian layout -Oracle Open Office Writer : text input fields -Oracle Open Office Writer : text layout for special languages -Oracle Open Office Writer : text objects -Oracle Open Office Writer : text objects;alignment -Oracle Open Office Writer : text objects;draw functions -Oracle Open Office Writer : text objects;fonts -Oracle Open Office Writer : text objects;in presentations and drawings -Oracle Open Office Writer : text overflow in spreadsheet cells -Oracle Open Office Writer : text scaling in charts -Oracle Open Office Writer : text wrap around objects -Oracle Open Office Writer : text, see also text documents, paragraphs and characters -Oracle Open Office Writer : TextArt, see Fontwork -Oracle Open Office Writer : textures -Oracle Open Office Writer : textures;inserting from Gallery -Oracle Open Office Writer : textures;on chart bars -Oracle Open Office Writer : Thai -Oracle Open Office Writer : Thai;entering text -Oracle Open Office Writer : Thai;language settings -Oracle Open Office Writer : thesaurus -Oracle Open Office Writer : thesaurus;activating for a language -Oracle Open Office Writer : thesaurus;related words -Oracle Open Office Writer : ticker text -Oracle Open Office Writer : time fields -Oracle Open Office Writer : time fields;form functions -Oracle Open Office Writer : time fields;HTML -Oracle Open Office Writer : time fields;inserting -Oracle Open Office Writer : times -Oracle Open Office Writer : times;inserting when printing presentations -Oracle Open Office Writer : times, formats -Oracle Open Office Writer : tips -Oracle Open Office Writer : tips;extended tips in Help -Oracle Open Office Writer : title pages -Oracle Open Office Writer : title pages;centering text on -Oracle Open Office Writer : title pages;page styles -Oracle Open Office Writer : title rows -Oracle Open Office Writer : title rows;printing in Oracle Open Office Math -Oracle Open Office Writer : titles -Oracle Open Office Writer : titles;alignment (charts) -Oracle Open Office Writer : titles;changing -Oracle Open Office Writer : titles;editing in charts -Oracle Open Office Writer : titles;font effects -Oracle Open Office Writer : titles;formatting automatically -Oracle Open Office Writer : titles;formatting charts -Oracle Open Office Writer : titles;objects -Oracle Open Office Writer : toolbars -Oracle Open Office Writer : toolbars;adding buttons -Oracle Open Office Writer : toolbars;docking/undocking -Oracle Open Office Writer : toolbars;Form Navigation bar -Oracle Open Office Writer : toolbars;viewing/closing -Oracle Open Office Writer : tools bar -Oracle Open Office Writer : tooltips -Oracle Open Office Writer : tooltips;extended tips -Oracle Open Office Writer : tooltips;help -Oracle Open Office Writer : totals in text tables -Oracle Open Office Writer : traditional Chinese -Oracle Open Office Writer : traditional Chinese;translating to simplified chinese -Oracle Open Office Writer : transparency -Oracle Open Office Writer : transparency;areas -Oracle Open Office Writer : transparency;off for faster printing -Oracle Open Office Writer : transparency;saving -Oracle Open Office Writer : tree view of Help -Oracle Open Office Writer : trend lines in charts -Oracle Open Office Writer : trigonometric functions -Oracle Open Office Writer : turning off automatic correction -Oracle Open Office Writer : typefaces -Oracle Open Office Writer : typefaces;adding under UNIX -Oracle Open Office Writer : typefaces;formats -Oracle Open Office Writer : typography -Oracle Open Office Writer : typography;Asian -Oracle Open Office Writer : underlining -Oracle Open Office Writer : underlining;AutoFormat function -Oracle Open Office Writer : underlining;characters -Oracle Open Office Writer : underlining;quick -Oracle Open Office Writer : underlining;text -Oracle Open Office Writer : undocking windows -Oracle Open Office Writer : undoing -Oracle Open Office Writer : undoing;direct formatting -Oracle Open Office Writer : undoing;editing -Oracle Open Office Writer : undoing;number of steps -Oracle Open Office Writer : ungrouping groups -Oracle Open Office Writer : units -Oracle Open Office Writer : units;converting -Oracle Open Office Writer : units;measurement units -Oracle Open Office Writer : unlinking frames -Oracle Open Office Writer : UNO components -Oracle Open Office Writer : UNO components;Extension Manager -Oracle Open Office Writer : UNO components;integrating new -Oracle Open Office Writer : unprotecting tables of contents and indexes -Oracle Open Office Writer : update options -Oracle Open Office Writer : updates -Oracle Open Office Writer : updates;checking automatically -Oracle Open Office Writer : updates;checking manually -Oracle Open Office Writer : updating -Oracle Open Office Writer : updating;cross-references -Oracle Open Office Writer : updating;fields -Oracle Open Office Writer : updating;fields and charts, automatically (Writer) -Oracle Open Office Writer : updating;indexes/tables of contents -Oracle Open Office Writer : updating;linked sections, manually -Oracle Open Office Writer : updating;links in text documents -Oracle Open Office Writer : updating;links, on opening -Oracle Open Office Writer : updating;styles, from selections -Oracle Open Office Writer : updating;tables of contents -Oracle Open Office Writer : updating;templates -Oracle Open Office Writer : updating;text documents -Oracle Open Office Writer : uppercase -Oracle Open Office Writer : uppercase;changing to lowercase -Oracle Open Office Writer : uppercase;formatting text -Oracle Open Office Writer : URL -Oracle Open Office Writer : URL;changing hyperlink URLs -Oracle Open Office Writer : URL;definition -Oracle Open Office Writer : URL;in pictures -Oracle Open Office Writer : URL;saving absolute/relative paths -Oracle Open Office Writer : URL;turning off URL recognition -Oracle Open Office Writer : user data -Oracle Open Office Writer : user data;in conditions -Oracle Open Office Writer : user data;input -Oracle Open Office Writer : user data;querying -Oracle Open Office Writer : user data;removing when saving -Oracle Open Office Writer : user feedback -Oracle Open Office Writer : user feedback;automatically -Oracle Open Office Writer : user variables in conditions/fields -Oracle Open Office Writer : user-defined dictionaries -Oracle Open Office Writer : user-defined dictionaries;creating -Oracle Open Office Writer : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Writer : user-defined dictionaries;editing -Oracle Open Office Writer : user-defined dictionaries;removing words from -Oracle Open Office Writer : user-defined fields, restriction -Oracle Open Office Writer : user-defined indexes -Oracle Open Office Writer : user-defined styles -Oracle Open Office Writer : user-defined styles;automatically replacing -Oracle Open Office Writer : UTF-8/UCS2 support -Oracle Open Office Writer : values -Oracle Open Office Writer : values;rounded as shown (Calc) -Oracle Open Office Writer : variable dates -Oracle Open Office Writer : variables -Oracle Open Office Writer : variables;document properties -Oracle Open Office Writer : variables;for hiding text -Oracle Open Office Writer : variables;for paths -Oracle Open Office Writer : variables;in conditions -Oracle Open Office Writer : variances in charts -Oracle Open Office Writer : VBA code -Oracle Open Office Writer : VBA code;loading/saving documents with VBA code -Oracle Open Office Writer : version management -Oracle Open Office Writer : version numbers of documents -Oracle Open Office Writer : versions -Oracle Open Office Writer : versions;comparing documents -Oracle Open Office Writer : versions;file saving as, restriction -Oracle Open Office Writer : versions;merging document versions -Oracle Open Office Writer : versions;of a document -Oracle Open Office Writer : versions;Oracle Open Office -Oracle Open Office Writer : vertical callouts -Oracle Open Office Writer : vertical rulers -Oracle Open Office Writer : vertical scrollbars (Writer) -Oracle Open Office Writer : vertical text boxes -Oracle Open Office Writer : videos -Oracle Open Office Writer : viewing -Oracle Open Office Writer : viewing;databases -Oracle Open Office Writer : viewing;fields -Oracle Open Office Writer : viewing;file properties -Oracle Open Office Writer : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Writer : viewing;toolbars -Oracle Open Office Writer : views -Oracle Open Office Writer : views;creating database views (Base) -Oracle Open Office Writer : views;defaults -Oracle Open Office Writer : views;full screen -Oracle Open Office Writer : views;icons -Oracle Open Office Writer : views;scaling -Oracle Open Office Writer : Visual Basic for Applications -Oracle Open Office Writer : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Writer : watermarks -Oracle Open Office Writer : web documents -Oracle Open Office Writer : web documents;XForms -Oracle Open Office Writer : Web support -Oracle Open Office Writer : WebCast export -Oracle Open Office Writer : WebDAV over HTTPS -Oracle Open Office Writer : weekdays -Oracle Open Office Writer : weekdays;automatically completing -Oracle Open Office Writer : widows -Oracle Open Office Writer : wildcards, see regular expressions -Oracle Open Office Writer : windows -Oracle Open Office Writer : windows;docking -Oracle Open Office Writer : windows;docking definition -Oracle Open Office Writer : windows;hiding/showing/docking -Oracle Open Office Writer : windows;new -Oracle Open Office Writer : wizards -Oracle Open Office Writer : wizards;agendas -Oracle Open Office Writer : wizards;database queries -Oracle Open Office Writer : wizards;database tables (Base) -Oracle Open Office Writer : wizards;databases (Base) -Oracle Open Office Writer : wizards;document converter -Oracle Open Office Writer : wizards;Euro Converter -Oracle Open Office Writer : wizards;faxes -Oracle Open Office Writer : wizards;form letters -Oracle Open Office Writer : wizards;forms -Oracle Open Office Writer : wizards;letters -Oracle Open Office Writer : wizards;macros (Base) -Oracle Open Office Writer : wizards;overview -Oracle Open Office Writer : wizards;presentations -Oracle Open Office Writer : wizards;reports -Oracle Open Office Writer : word completion -Oracle Open Office Writer : word completion;settings -Oracle Open Office Writer : word completion;using/disabling -Oracle Open Office Writer : word counts -Oracle Open Office Writer : Word documents -Oracle Open Office Writer : Word documents;compatibility -Oracle Open Office Writer : Word documents;saving as -Oracle Open Office Writer : WordArt, see Fontwork -Oracle Open Office Writer : words -Oracle Open Office Writer : words;automatic replacement on/off -Oracle Open Office Writer : words;automatically replacing -Oracle Open Office Writer : words;backgrounds -Oracle Open Office Writer : words;counting in text -Oracle Open Office Writer : words;disabling spellcheck -Oracle Open Office Writer : words;wrapping in cells -Oracle Open Office Writer : words;wrapping in CTL -Oracle Open Office Writer : words;wrapping/not wrapping in text -Oracle Open Office Writer : working directory change -Oracle Open Office Writer : wrapping text -Oracle Open Office Writer : wrapping text;editing contours -Oracle Open Office Writer : wrapping text;in cells -Oracle Open Office Writer : write protection on/off -Oracle Open Office Writer : writing aids options -Oracle Open Office Writer : writing with direct cursor -Oracle Open Office Writer : WYSIWYG in fonts lists -Oracle Open Office Writer : X axes -Oracle Open Office Writer : X axes;grid formatting -Oracle Open Office Writer : X axes;positioning -Oracle Open Office Writer : X axes;scaling -Oracle Open Office Writer : X axes;showing -Oracle Open Office Writer : XForms -Oracle Open Office Writer : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Writer : XForms;conditions -Oracle Open Office Writer : XForms;opening/editing -Oracle Open Office Writer : XML converters -Oracle Open Office Writer : XML file formats -Oracle Open Office Writer : XML filters -Oracle Open Office Writer : XML filters;creating/testing -Oracle Open Office Writer : XML filters;saving as package/installing/deleting -Oracle Open Office Writer : XML filters;settings -Oracle Open Office Writer : XML Forms, see XForms -Oracle Open Office Writer : XSLT filters, see also XML filters -Oracle Open Office Writer : XY charts -Oracle Open Office Writer : Y axes -Oracle Open Office Writer : Y axes;formatting -Oracle Open Office Writer : Y axes;grid formatting -Oracle Open Office Writer : Y axes;positioning -Oracle Open Office Writer : Y axes;scaling -Oracle Open Office Writer : Y axes;showing -Oracle Open Office Writer : years -Oracle Open Office Writer : years;2-digit options -Oracle Open Office Writer : Z axes -Oracle Open Office Writer : Z axes;grid formatting -Oracle Open Office Writer : Z axes;showing -Oracle Open Office Writer : zero values -Oracle Open Office Writer : zero values;displaying (Calc) -Oracle Open Office Writer : zooming -Oracle Open Office Writer : zooming;page views -Oracle Open Office Writer : zooming;pictures -Oracle Open Office Writer : zooming;status bar -Oracle Open Office Chart : 3D charts -Oracle Open Office Chart : 3D text creation -Oracle Open Office Chart : abbreviation replacement -Oracle Open Office Chart : absolute hyperlinks -Oracle Open Office Chart : absolute saving of URLs -Oracle Open Office Chart : accents -Oracle Open Office Chart : Access databases (base) -Oracle Open Office Chart : access rights for database tables (Base) -Oracle Open Office Chart : accessibility -Oracle Open Office Chart : accessibility;general shortcuts -Oracle Open Office Chart : accessibility;options -Oracle Open Office Chart : accessibility;Oracle Open Office assistive technology -Oracle Open Office Chart : accessibility;Oracle Open Office features -Oracle Open Office Chart : activating -Oracle Open Office Chart : activating;context menus -Oracle Open Office Chart : activating;Error Report Tool -Oracle Open Office Chart : activating;extended help tips -Oracle Open Office Chart : activating;plug-ins -Oracle Open Office Chart : ActiveX control -Oracle Open Office Chart : Adabas D databases (base) -Oracle Open Office Chart : add-ons, see UNO components -Oracle Open Office Chart : additional selection mode -Oracle Open Office Chart : address books -Oracle Open Office Chart : address books;LDAP server (Base) -Oracle Open Office Chart : address books;registering -Oracle Open Office Chart : address labels from databases -Oracle Open Office Chart : ADO databases (Base) -Oracle Open Office Chart : Agenda Wizard -Oracle Open Office Chart : aging filter -Oracle Open Office Chart : aligning -Oracle Open Office Chart : aligning;2D charts -Oracle Open Office Chart : aligning;cells -Oracle Open Office Chart : aligning;objects -Oracle Open Office Chart : aligning;paragraphs -Oracle Open Office Chart : aligning;tables in text -Oracle Open Office Chart : aligning;text objects -Oracle Open Office Chart : aligning;titles in charts -Oracle Open Office Chart : alternative fonts -Oracle Open Office Chart : ampersand symbol, see also operators -Oracle Open Office Chart : anchors -Oracle Open Office Chart : anchors;changing -Oracle Open Office Chart : anchors;displaying (Calc) -Oracle Open Office Chart : anchors;types/positions for draw objects -Oracle Open Office Chart : animations -Oracle Open Office Chart : animations;accessibility options -Oracle Open Office Chart : appearance options -Oracle Open Office Chart : Arabic -Oracle Open Office Chart : Arabic;entering text -Oracle Open Office Chart : Arabic;language settings -Oracle Open Office Chart : area charts -Oracle Open Office Chart : areas -Oracle Open Office Chart : areas;bitmap patterns -Oracle Open Office Chart : areas;hatched/dotted -Oracle Open Office Chart : areas;shadows -Oracle Open Office Chart : areas;slanting -Oracle Open Office Chart : areas;styles -Oracle Open Office Chart : areas;transparency -Oracle Open Office Chart : arguments in command line -Oracle Open Office Chart : arranging -Oracle Open Office Chart : arranging;objects -Oracle Open Office Chart : arrows -Oracle Open Office Chart : arrows;defining arrow heads -Oracle Open Office Chart : arrows;defining arrow lines -Oracle Open Office Chart : arrows;drawing in text -Oracle Open Office Chart : ASCII -Oracle Open Office Chart : ASCII;definition -Oracle Open Office Chart : Asian languages -Oracle Open Office Chart : Asian languages;enabling -Oracle Open Office Chart : Asian Phonetic Guide -Oracle Open Office Chart : Asian typography -Oracle Open Office Chart : assigning scripts -Oracle Open Office Chart : assistive technology in Oracle Open Office -Oracle Open Office Chart : attaching toolbars -Oracle Open Office Chart : attachments in e-mails -Oracle Open Office Chart : audio -Oracle Open Office Chart : auto reloading HTML documents -Oracle Open Office Chart : AutoAbstract function for sending text to presentations -Oracle Open Office Chart : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Chart : AutoComplete function in text and list boxes -Oracle Open Office Chart : AutoCorrect function -Oracle Open Office Chart : AutoCorrect function;context menu -Oracle Open Office Chart : AutoCorrect function;options -Oracle Open Office Chart : AutoCorrect function;pictures and frames -Oracle Open Office Chart : AutoCorrect function;quotes -Oracle Open Office Chart : AutoCorrect function;replacement table -Oracle Open Office Chart : AutoCorrect function;switching on and off in Calc -Oracle Open Office Chart : AutoCorrect function;URL recognition -Oracle Open Office Chart : AutoFormat function -Oracle Open Office Chart : AutoFormat function;switching on and off -Oracle Open Office Chart : automatic captions (Writer) -Oracle Open Office Chart : automatic control focus -Oracle Open Office Chart : automatic hyperlink formatting -Oracle Open Office Chart : automatic line breaks -Oracle Open Office Chart : automatic lines/borders in text -Oracle Open Office Chart : automatic saving -Oracle Open Office Chart : AutoPilots, see wizards -Oracle Open Office Chart : AutoValue (Base) -Oracle Open Office Chart : averages in charts -Oracle Open Office Chart : axes -Oracle Open Office Chart : axes;better scaling -Oracle Open Office Chart : axes;formatting -Oracle Open Office Chart : axes;formatting grids -Oracle Open Office Chart : axes;inserting grids -Oracle Open Office Chart : axes;interval marks -Oracle Open Office Chart : axes;showing axes in charts -Oracle Open Office Chart : axes in charts -Oracle Open Office Chart : backgrounds -Oracle Open Office Chart : backgrounds;defining colors/pictures -Oracle Open Office Chart : backgrounds;frames/sections/indexes -Oracle Open Office Chart : backgrounds;inserting from Gallery -Oracle Open Office Chart : backgrounds;printing -Oracle Open Office Chart : backing window -Oracle Open Office Chart : backups -Oracle Open Office Chart : backups;automatic -Oracle Open Office Chart : backups;documents -Oracle Open Office Chart : bar charts -Oracle Open Office Chart : Basic -Oracle Open Office Chart : Basic;fonts for source display -Oracle Open Office Chart : Basic;programming -Oracle Open Office Chart : Basic;recording macros -Oracle Open Office Chart : basic fonts -Oracle Open Office Chart : Bézier curves -Oracle Open Office Chart : Bézier curves;control points in presentations -Oracle Open Office Chart : bi-directional writing -Oracle Open Office Chart : binding space -Oracle Open Office Chart : bitmaps -Oracle Open Office Chart : bitmaps;inserting and editing -Oracle Open Office Chart : bitmaps;off for faster printing -Oracle Open Office Chart : bitmaps;patterns -Oracle Open Office Chart : black and white printing -Oracle Open Office Chart : black printing in Calc -Oracle Open Office Chart : block selection mode -Oracle Open Office Chart : bold -Oracle Open Office Chart : bold;AutoFormat function -Oracle Open Office Chart : bold;text -Oracle Open Office Chart : bookmarks -Oracle Open Office Chart : bookmarks;Help -Oracle Open Office Chart : borders -Oracle Open Office Chart : borders;arranging -Oracle Open Office Chart : borders;cells on screen (Calc) -Oracle Open Office Chart : borders;for paragraphs -Oracle Open Office Chart : borders;for tables -Oracle Open Office Chart : borders;shadows -Oracle Open Office Chart : borders;table boundaries (Writer) -Oracle Open Office Chart : borders, see also frames -Oracle Open Office Chart : bound fields -Oracle Open Office Chart : bound fields;controls -Oracle Open Office Chart : boundaries of tables (Writer) -Oracle Open Office Chart : break display (Writer) -Oracle Open Office Chart : brochures -Oracle Open Office Chart : brochures;printing several -Oracle Open Office Chart : bubble charts -Oracle Open Office Chart : build numbers of Oracle Open Office -Oracle Open Office Chart : bullet lists -Oracle Open Office Chart : bullet lists;formatting options -Oracle Open Office Chart : bullets -Oracle Open Office Chart : bullets;paragraphs -Oracle Open Office Chart : bullets;replacing -Oracle Open Office Chart : bullets;turning off -Oracle Open Office Chart : business cards -Oracle Open Office Chart : business cards;creating and synchronizing -Oracle Open Office Chart : business cards;using templates -Oracle Open Office Chart : button bars, see toolbars -Oracle Open Office Chart : buttons -Oracle Open Office Chart : buttons;adding push buttons -Oracle Open Office Chart : buttons;big/small -Oracle Open Office Chart : buttons;editing hyperlink buttons -Oracle Open Office Chart : buttons;form functions -Oracle Open Office Chart : buttons;toolbars -Oracle Open Office Chart : cache for graphics -Oracle Open Office Chart : calculating -Oracle Open Office Chart : calculating;iterative references (Calc) -Oracle Open Office Chart : calculating;regression curves -Oracle Open Office Chart : callouts -Oracle Open Office Chart : callouts;drawings -Oracle Open Office Chart : capital letters -Oracle Open Office Chart : capital letters;AutoCorrect function -Oracle Open Office Chart : capital letters;font effects -Oracle Open Office Chart : captions -Oracle Open Office Chart : captions;automatic captions (Writer) -Oracle Open Office Chart : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Chart : captions, see also labels/callouts -Oracle Open Office Chart : cascading update (Base) -Oracle Open Office Chart : case sensitivity -Oracle Open Office Chart : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Chart : case sensitivity;searching -Oracle Open Office Chart : cells -Oracle Open Office Chart : cells;aligning -Oracle Open Office Chart : cells;coloring (Calc) -Oracle Open Office Chart : cells;cursor positions after input (Calc) -Oracle Open Office Chart : cells;formatting without effect (Calc) -Oracle Open Office Chart : cells;line breaks -Oracle Open Office Chart : cells;linked to controls -Oracle Open Office Chart : cells;number of -Oracle Open Office Chart : cells;pasting -Oracle Open Office Chart : cells;resetting formats -Oracle Open Office Chart : cells;showing grid lines (Calc) -Oracle Open Office Chart : centered text -Oracle Open Office Chart : centimeters -Oracle Open Office Chart : certificates -Oracle Open Office Chart : changes -Oracle Open Office Chart : changes;accepting or rejecting -Oracle Open Office Chart : changes;comparing to original -Oracle Open Office Chart : changes;protecting -Oracle Open Office Chart : changes;recording -Oracle Open Office Chart : changes;review function -Oracle Open Office Chart : changes;showing -Oracle Open Office Chart : changing -Oracle Open Office Chart : changing;document titles -Oracle Open Office Chart : changing;file associations in Setup program -Oracle Open Office Chart : changing;icon sizes -Oracle Open Office Chart : changing;links -Oracle Open Office Chart : changing;work directory -Oracle Open Office Chart : changing, see also editing and replacing -Oracle Open Office Chart : character styles -Oracle Open Office Chart : character styles;language selection -Oracle Open Office Chart : characters -Oracle Open Office Chart : characters;alternative fonts -Oracle Open Office Chart : characters;Asian layout -Oracle Open Office Chart : characters;bold -Oracle Open Office Chart : characters;coloring -Oracle Open Office Chart : characters;displaying only on screen (Writer) -Oracle Open Office Chart : characters;enabling CTL and Asian characters -Oracle Open Office Chart : characters;font effects -Oracle Open Office Chart : characters;fonts and formats -Oracle Open Office Chart : characters;hyperlinks -Oracle Open Office Chart : characters;italics -Oracle Open Office Chart : characters;language selection -Oracle Open Office Chart : characters;shadowed -Oracle Open Office Chart : characters;spacing -Oracle Open Office Chart : characters;special -Oracle Open Office Chart : characters;underlining -Oracle Open Office Chart : charcoal sketches filter -Oracle Open Office Chart : chart legends -Oracle Open Office Chart : chart legends;hiding -Oracle Open Office Chart : chart legends;showing icons with labels -Oracle Open Office Chart : chart types -Oracle Open Office Chart : chart types;area -Oracle Open Office Chart : chart types;bubble -Oracle Open Office Chart : chart types;column and bar -Oracle Open Office Chart : chart types;column and line -Oracle Open Office Chart : chart types;line -Oracle Open Office Chart : chart types;net -Oracle Open Office Chart : chart types;pie/donut -Oracle Open Office Chart : chart types;stock -Oracle Open Office Chart : chart types;XY (scatter) -Oracle Open Office Chart : charts -Oracle Open Office Chart : charts;3D views -Oracle Open Office Chart : charts;aligning -Oracle Open Office Chart : charts;arranging within stacks -Oracle Open Office Chart : charts;bars with textures -Oracle Open Office Chart : charts;choosing chart types -Oracle Open Office Chart : charts;colors -Oracle Open Office Chart : charts;copying with link to source cell range -Oracle Open Office Chart : charts;data labels -Oracle Open Office Chart : charts;displaying (Calc) -Oracle Open Office Chart : charts;editing axes -Oracle Open Office Chart : charts;editing data -Oracle Open Office Chart : charts;editing legends -Oracle Open Office Chart : charts;editing titles -Oracle Open Office Chart : charts;formatting areas -Oracle Open Office Chart : charts;formatting floors -Oracle Open Office Chart : charts;formatting walls -Oracle Open Office Chart : charts;inserting -Oracle Open Office Chart : charts;overview -Oracle Open Office Chart : charts;positioning axes -Oracle Open Office Chart : charts;properties -Oracle Open Office Chart : charts;reorganizing -Oracle Open Office Chart : charts;scaling axes -Oracle Open Office Chart : charts;scaling text -Oracle Open Office Chart : charts;shortcuts -Oracle Open Office Chart : charts;showing axes -Oracle Open Office Chart : charts;updating automatically (Writer) -Oracle Open Office Chart : check box creation -Oracle Open Office Chart : Chinese writing systems -Oracle Open Office Chart : choosing printers -Oracle Open Office Chart : circle drawings -Oracle Open Office Chart : Client Side ImageMap -Oracle Open Office Chart : clipboard -Oracle Open Office Chart : clipboard;cutting -Oracle Open Office Chart : clipboard;pasting -Oracle Open Office Chart : clipboard;pasting formatted/unformatted text -Oracle Open Office Chart : clipboard;selection clipboard -Oracle Open Office Chart : clipboard;Unix -Oracle Open Office Chart : closing -Oracle Open Office Chart : closing;documents -Oracle Open Office Chart : closing;toolbars -Oracle Open Office Chart : collaboration -Oracle Open Office Chart : color bar -Oracle Open Office Chart : colors -Oracle Open Office Chart : colors;adding -Oracle Open Office Chart : colors;appearance -Oracle Open Office Chart : colors;backgrounds -Oracle Open Office Chart : colors;charts -Oracle Open Office Chart : colors;fill format -Oracle Open Office Chart : colors;fonts -Oracle Open Office Chart : colors;grid lines and cells (Calc) -Oracle Open Office Chart : colors;models -Oracle Open Office Chart : colors;not printing -Oracle Open Office Chart : colors;printing in grayscale -Oracle Open Office Chart : colors;restriction (Calc) -Oracle Open Office Chart : colors;selection -Oracle Open Office Chart : column and line charts -Oracle Open Office Chart : column charts -Oracle Open Office Chart : column headers -Oracle Open Office Chart : column headers;displaying (Calc) -Oracle Open Office Chart : column headers;highlighting (Calc) -Oracle Open Office Chart : columns -Oracle Open Office Chart : columns;setting with the mouse -Oracle Open Office Chart : combination charts -Oracle Open Office Chart : combo box creation -Oracle Open Office Chart : command button creation -Oracle Open Office Chart : command buttons, see push buttons -Oracle Open Office Chart : command line parameters -Oracle Open Office Chart : commands -Oracle Open Office Chart : commands;repeating -Oracle Open Office Chart : commands;SQL -Oracle Open Office Chart : comments -Oracle Open Office Chart : comments;displaying (Calc) -Oracle Open Office Chart : comments;inserting/editing/deleting/printing -Oracle Open Office Chart : comments;on changes -Oracle Open Office Chart : comments;printing in text -Oracle Open Office Chart : common terms -Oracle Open Office Chart : common terms;Chinese dictionary -Oracle Open Office Chart : common terms;glossaries -Oracle Open Office Chart : common terms;Internet glossary -Oracle Open Office Chart : comparisons -Oracle Open Office Chart : comparisons;document versions -Oracle Open Office Chart : comparisons;operators in default filter dialog -Oracle Open Office Chart : compatibility settings for MS Word import -Oracle Open Office Chart : complete screen view -Oracle Open Office Chart : complex text layout -Oracle Open Office Chart : complex text layout;definition -Oracle Open Office Chart : complex text layout;enabling -Oracle Open Office Chart : complex text layout, see CTL -Oracle Open Office Chart : compose key to insert special characters -Oracle Open Office Chart : concatenation, see ampersand symbol -Oracle Open Office Chart : conditional separators -Oracle Open Office Chart : conditions -Oracle Open Office Chart : conditions;in number formats -Oracle Open Office Chart : conditions;items in Data Navigator -Oracle Open Office Chart : Configuration Manager -Oracle Open Office Chart : configuring -Oracle Open Office Chart : configuring;fax icon -Oracle Open Office Chart : configuring;Oracle Open Office -Oracle Open Office Chart : configuring;toolbars -Oracle Open Office Chart : connections to data sources (Base) -Oracle Open Office Chart : contents protection -Oracle Open Office Chart : context menus -Oracle Open Office Chart : control point display in presentations -Oracle Open Office Chart : controls -Oracle Open Office Chart : controls;activating in forms -Oracle Open Office Chart : controls;adding to documents -Oracle Open Office Chart : controls;arranging in forms -Oracle Open Office Chart : controls;arranging within stacks -Oracle Open Office Chart : controls;assigning data sources -Oracle Open Office Chart : controls;assigning macros (Basic) -Oracle Open Office Chart : controls;bound fields/list contents/linked cells -Oracle Open Office Chart : controls;events -Oracle Open Office Chart : controls;focus -Oracle Open Office Chart : controls;formatted fields -Oracle Open Office Chart : controls;grouping -Oracle Open Office Chart : controls;hidden -Oracle Open Office Chart : controls;inserting -Oracle Open Office Chart : controls;multi-line titles -Oracle Open Office Chart : controls;positions and sizes -Oracle Open Office Chart : controls;printing -Oracle Open Office Chart : controls;properties of form controls -Oracle Open Office Chart : controls;properties of table controls -Oracle Open Office Chart : controls;reference by SQL -Oracle Open Office Chart : controls;rich text control -Oracle Open Office Chart : controls;select mode -Oracle Open Office Chart : controls;showing (Writer) -Oracle Open Office Chart : converters -Oracle Open Office Chart : converters;Euro converter -Oracle Open Office Chart : converters;PostScript, UNIX -Oracle Open Office Chart : converters;XML -Oracle Open Office Chart : converting -Oracle Open Office Chart : converting;Hangul/Hanja -Oracle Open Office Chart : converting;metrics -Oracle Open Office Chart : converting;Microsoft documents -Oracle Open Office Chart : converting;Oracle Open Office documents -Oracle Open Office Chart : converting;Pocket PC formats -Oracle Open Office Chart : copies -Oracle Open Office Chart : copies;printing -Oracle Open Office Chart : copying -Oracle Open Office Chart : copying;by drag and drop -Oracle Open Office Chart : copying;data from text documents -Oracle Open Office Chart : copying;datasource records in spreadsheets -Oracle Open Office Chart : copying;draw objects -Oracle Open Office Chart : copying;draw objects between documents -Oracle Open Office Chart : copying;formatting -Oracle Open Office Chart : copying;from data source view -Oracle Open Office Chart : copying;from Gallery -Oracle Open Office Chart : copying;in Unix -Oracle Open Office Chart : copying;pictures, between documents -Oracle Open Office Chart : copying;sheet areas, to text documents -Oracle Open Office Chart : copying;to Gallery -Oracle Open Office Chart : copyright for Oracle Open Office -Oracle Open Office Chart : corner roundings -Oracle Open Office Chart : crash reports -Oracle Open Office Chart : criteria of query design (Base) -Oracle Open Office Chart : cropping pictures -Oracle Open Office Chart : CTL -Oracle Open Office Chart : CTL;(not) wrapping words -Oracle Open Office Chart : CTL;complex text layout languages -Oracle Open Office Chart : CTL;definition -Oracle Open Office Chart : CTL;options -Oracle Open Office Chart : currencies -Oracle Open Office Chart : currencies;converters -Oracle Open Office Chart : currencies;format codes -Oracle Open Office Chart : currency field creation -Oracle Open Office Chart : currency formats -Oracle Open Office Chart : cursor -Oracle Open Office Chart : cursor;allowing in protected areas (Writer) -Oracle Open Office Chart : cursor;in read-only text -Oracle Open Office Chart : cursor;quickly moving to an object -Oracle Open Office Chart : curves -Oracle Open Office Chart : curves;editing points -Oracle Open Office Chart : curves;properties in line charts/XY charts -Oracle Open Office Chart : custom dictionaries -Oracle Open Office Chart : custom dictionaries;editing -Oracle Open Office Chart : custom hyphens (Writer) -Oracle Open Office Chart : custom quotes -Oracle Open Office Chart : custom templates -Oracle Open Office Chart : customizing -Oracle Open Office Chart : customizing;events -Oracle Open Office Chart : customizing;keyboard -Oracle Open Office Chart : customizing;menus -Oracle Open Office Chart : customizing;Oracle Open Office -Oracle Open Office Chart : customizing;round corners -Oracle Open Office Chart : customizing;toolbars -Oracle Open Office Chart : cutting -Oracle Open Office Chart : dashes -Oracle Open Office Chart : data -Oracle Open Office Chart : data;filtering in forms -Oracle Open Office Chart : data;forms and subforms -Oracle Open Office Chart : data;read-only -Oracle Open Office Chart : data;sorting in forms -Oracle Open Office Chart : data;user data -Oracle Open Office Chart : data binding change in XForms -Oracle Open Office Chart : data labels in charts -Oracle Open Office Chart : Data Navigator -Oracle Open Office Chart : Data Navigator;adding/editing items -Oracle Open Office Chart : Data Navigator;display options -Oracle Open Office Chart : data ranges in charts -Oracle Open Office Chart : data series -Oracle Open Office Chart : data source browser -Oracle Open Office Chart : data source explorer -Oracle Open Office Chart : data source view -Oracle Open Office Chart : data source view;drag and drop -Oracle Open Office Chart : data source view;overview -Oracle Open Office Chart : data source view;showing -Oracle Open Office Chart : data sources -Oracle Open Office Chart : data sources;as tables -Oracle Open Office Chart : data sources;connection settings (Base) -Oracle Open Office Chart : data sources;copying records to spreadsheets -Oracle Open Office Chart : data sources;displaying current -Oracle Open Office Chart : data sources;LDAP server (Base) -Oracle Open Office Chart : data sources;Oracle Open Office Base -Oracle Open Office Chart : data sources;registering address books -Oracle Open Office Chart : data sources;reports -Oracle Open Office Chart : data sources;setting for stock charts -Oracle Open Office Chart : data sources;viewing -Oracle Open Office Chart : data structure of XForms -Oracle Open Office Chart : data values in charts -Oracle Open Office Chart : data, see also values -Oracle Open Office Chart : database contents -Oracle Open Office Chart : database contents;inserting as tables -Oracle Open Office Chart : database contents;inserting as text -Oracle Open Office Chart : database reports -Oracle Open Office Chart : Database Wizard (Base) -Oracle Open Office Chart : databases -Oracle Open Office Chart : databases;administration through SQL (Base) -Oracle Open Office Chart : databases;ADO (Base) -Oracle Open Office Chart : databases;connecting (Base) -Oracle Open Office Chart : databases;creating -Oracle Open Office Chart : databases;creating labels -Oracle Open Office Chart : databases;creating queries -Oracle Open Office Chart : databases;creating reports -Oracle Open Office Chart : databases;creating tables -Oracle Open Office Chart : databases;deleting (Base) -Oracle Open Office Chart : databases;drag and drop (Base) -Oracle Open Office Chart : databases;editing tables -Oracle Open Office Chart : databases;form filters -Oracle Open Office Chart : databases;formats (Base) -Oracle Open Office Chart : databases;importing/exporting -Oracle Open Office Chart : databases;JDBC (Base) -Oracle Open Office Chart : databases;main page (Base) -Oracle Open Office Chart : databases;ODBC (Base) -Oracle Open Office Chart : databases;overview -Oracle Open Office Chart : databases;registering (Base) -Oracle Open Office Chart : databases;searching records -Oracle Open Office Chart : databases;shortcut keys -Oracle Open Office Chart : databases;sorting -Oracle Open Office Chart : databases;standard filters -Oracle Open Office Chart : databases;text formats -Oracle Open Office Chart : databases;viewing -Oracle Open Office Chart : date fields -Oracle Open Office Chart : date fields;creating -Oracle Open Office Chart : date fields;properties -Oracle Open Office Chart : date formats -Oracle Open Office Chart : dates -Oracle Open Office Chart : dates;default (Calc) -Oracle Open Office Chart : dates;printing in presentations -Oracle Open Office Chart : dates;start 1900/01/01 (Calc) -Oracle Open Office Chart : dates;start 1904/01/01 (Calc) -Oracle Open Office Chart : dBASE -Oracle Open Office Chart : dBASE;database settings (Base) -Oracle Open Office Chart : DDE -Oracle Open Office Chart : DDE;definition -Oracle Open Office Chart : deactivating -Oracle Open Office Chart : deactivating;plug-ins -Oracle Open Office Chart : decimal places displayed (Calc) -Oracle Open Office Chart : decimal separator key -Oracle Open Office Chart : decimal tab stops -Oracle Open Office Chart : default directories -Oracle Open Office Chart : default filters -Oracle Open Office Chart : default filters;comparison operators -Oracle Open Office Chart : default filters;databases -Oracle Open Office Chart : default printer -Oracle Open Office Chart : default printer;setting up -Oracle Open Office Chart : default printer;UNIX -Oracle Open Office Chart : default templates -Oracle Open Office Chart : default templates;changing -Oracle Open Office Chart : default templates;organizing -Oracle Open Office Chart : defaults -Oracle Open Office Chart : defaults;documents -Oracle Open Office Chart : defaults;file formats in file dialogs -Oracle Open Office Chart : defaults;file formats in Oracle Open Office -Oracle Open Office Chart : defaults;fonts -Oracle Open Office Chart : defaults;grids (Writer/Calc) -Oracle Open Office Chart : defaults;languages -Oracle Open Office Chart : defaults;number formats -Oracle Open Office Chart : defaults;of saving -Oracle Open Office Chart : defaults;program configuration -Oracle Open Office Chart : defaults;tab stops in text -Oracle Open Office Chart : defaults;views -Oracle Open Office Chart : defining -Oracle Open Office Chart : defining;arrowheads and other line ends -Oracle Open Office Chart : defining;colors -Oracle Open Office Chart : defining;line styles -Oracle Open Office Chart : defining;paragraph borders -Oracle Open Office Chart : defining;queries (Base) -Oracle Open Office Chart : defining;table borders -Oracle Open Office Chart : deleting -Oracle Open Office Chart : deleting;all direct formatting -Oracle Open Office Chart : deleting;comments -Oracle Open Office Chart : deleting;databases (Base) -Oracle Open Office Chart : deleting;hyperlinks -Oracle Open Office Chart : deleting;lines in text -Oracle Open Office Chart : deleting;models/instances -Oracle Open Office Chart : deleting;namespaces in XForms -Oracle Open Office Chart : deleting;tab stops -Oracle Open Office Chart : deleting;templates -Oracle Open Office Chart : deleting;XML filters -Oracle Open Office Chart : depth stagger -Oracle Open Office Chart : descriptions for objects -Oracle Open Office Chart : design mode after saving -Oracle Open Office Chart : design view -Oracle Open Office Chart : design view;creating forms -Oracle Open Office Chart : design view;queries/views (Base) -Oracle Open Office Chart : designing -Oracle Open Office Chart : designing;database tables -Oracle Open Office Chart : designing;fonts -Oracle Open Office Chart : designing;queries (Base) -Oracle Open Office Chart : detaching toolbars -Oracle Open Office Chart : dictionaries -Oracle Open Office Chart : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Chart : dictionaries;creating -Oracle Open Office Chart : dictionaries;editing user-defined -Oracle Open Office Chart : dictionaries;spellcheck -Oracle Open Office Chart : dictionaries, see also languages -Oracle Open Office Chart : digital signatures -Oracle Open Office Chart : digital signatures;getting/managing/applying -Oracle Open Office Chart : digital signatures;overview -Oracle Open Office Chart : digital signatures;WebDAV over HTTPS -Oracle Open Office Chart : direct formatting -Oracle Open Office Chart : direct formatting;undoing all -Oracle Open Office Chart : directories -Oracle Open Office Chart : directories;creating new -Oracle Open Office Chart : directories;directory structure -Oracle Open Office Chart : disabled persons -Oracle Open Office Chart : displaying -Oracle Open Office Chart : displaying;comments (Calc) -Oracle Open Office Chart : displaying;comments in text documents -Oracle Open Office Chart : displaying;non-printing characters (Writer) -Oracle Open Office Chart : displaying;pictures and objects (Writer) -Oracle Open Office Chart : displaying;tables (Writer) -Oracle Open Office Chart : displaying;zero values (Calc) -Oracle Open Office Chart : distances -Oracle Open Office Chart : distinct values in SQL queries -Oracle Open Office Chart : distorting in drawings -Oracle Open Office Chart : distributing XML filters -Oracle Open Office Chart : docking -Oracle Open Office Chart : docking;definition -Oracle Open Office Chart : docking;toolbars -Oracle Open Office Chart : docking;windows -Oracle Open Office Chart : Document Converter Wizard -Oracle Open Office Chart : Document Map, see Navigator -Oracle Open Office Chart : document types in Oracle Open Office -Oracle Open Office Chart : documents -Oracle Open Office Chart : documents;changing titles -Oracle Open Office Chart : documents;closing -Oracle Open Office Chart : documents;comparing -Oracle Open Office Chart : documents;contents as lists -Oracle Open Office Chart : documents;editing time -Oracle Open Office Chart : documents;exporting -Oracle Open Office Chart : documents;importing -Oracle Open Office Chart : documents;languages -Oracle Open Office Chart : documents;measurement units in -Oracle Open Office Chart : documents;merging -Oracle Open Office Chart : documents;number of pages/tables/sheets -Oracle Open Office Chart : documents;opening -Oracle Open Office Chart : documents;opening in design mode -Oracle Open Office Chart : documents;opening with templates -Oracle Open Office Chart : documents;organizing -Oracle Open Office Chart : documents;printing -Oracle Open Office Chart : documents;read-only -Oracle Open Office Chart : documents;reloading -Oracle Open Office Chart : documents;saving -Oracle Open Office Chart : documents;saving automatically -Oracle Open Office Chart : documents;saving in other formats -Oracle Open Office Chart : documents;sending as e-mail -Oracle Open Office Chart : documents;styles changed -Oracle Open Office Chart : documents;version management -Oracle Open Office Chart : documents;version numbers -Oracle Open Office Chart : donut charts -Oracle Open Office Chart : dotted areas -Oracle Open Office Chart : double-line spacing in paragraphs -Oracle Open Office Chart : double-line writing in Asian layout -Oracle Open Office Chart : drag and drop -Oracle Open Office Chart : drag and drop;copying and pasting text -Oracle Open Office Chart : drag and drop;data source view -Oracle Open Office Chart : drag and drop;from Gallery to draw objects -Oracle Open Office Chart : drag and drop;overview -Oracle Open Office Chart : drag and drop;pictures -Oracle Open Office Chart : drag and drop;to Gallery -Oracle Open Office Chart : draw objects -Oracle Open Office Chart : draw objects;adding/editing/copying -Oracle Open Office Chart : draw objects;anchoring -Oracle Open Office Chart : draw objects;arranging within stacks -Oracle Open Office Chart : draw objects;copying between documents -Oracle Open Office Chart : draw objects;displaying (Calc) -Oracle Open Office Chart : draw objects;dropping Gallery pictures -Oracle Open Office Chart : draw objects;flipping -Oracle Open Office Chart : draw objects;legends -Oracle Open Office Chart : draw objects;positioning and resizing -Oracle Open Office Chart : draw objects;protecting -Oracle Open Office Chart : draw objects;slanting -Oracle Open Office Chart : draw objects;text in -Oracle Open Office Chart : Drawing bar -Oracle Open Office Chart : drawing lines in text -Oracle Open Office Chart : drawings -Oracle Open Office Chart : drawings;creating/opening -Oracle Open Office Chart : drawings;languages -Oracle Open Office Chart : drawings;printing -Oracle Open Office Chart : drawings;printing defaults -Oracle Open Office Chart : drawings;printing in text documents -Oracle Open Office Chart : drawings;saving -Oracle Open Office Chart : drawings;saving automatically -Oracle Open Office Chart : drawings;saving in other formats -Oracle Open Office Chart : drawings;sending as e-mail -Oracle Open Office Chart : drawings;showing (Writer) -Oracle Open Office Chart : drawings, see also draw objects -Oracle Open Office Chart : drop-down lists in form functions -Oracle Open Office Chart : e-mail attachments -Oracle Open Office Chart : Edit File icon -Oracle Open Office Chart : edit mode -Oracle Open Office Chart : edit mode;after opening -Oracle Open Office Chart : edit mode;through Enter key (Calc) -Oracle Open Office Chart : Edit Points bar -Oracle Open Office Chart : editing -Oracle Open Office Chart : editing;chart axes -Oracle Open Office Chart : editing;chart data -Oracle Open Office Chart : editing;chart legends -Oracle Open Office Chart : editing;chart titles -Oracle Open Office Chart : editing;comments -Oracle Open Office Chart : editing;data binding of XForms -Oracle Open Office Chart : editing;database tables and queries -Oracle Open Office Chart : editing;draw objects -Oracle Open Office Chart : editing;Fontwork objects -Oracle Open Office Chart : editing;hyperlinks -Oracle Open Office Chart : editing;menus -Oracle Open Office Chart : editing;objects -Oracle Open Office Chart : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Chart : editing;pictures -Oracle Open Office Chart : editing;reports -Oracle Open Office Chart : editing;shortcut keys -Oracle Open Office Chart : editing;tab stops -Oracle Open Office Chart : editing;templates -Oracle Open Office Chart : editing;titles -Oracle Open Office Chart : editing;toolbars -Oracle Open Office Chart : editing;undoing -Oracle Open Office Chart : editing;XForms -Oracle Open Office Chart : editing time of documents -Oracle Open Office Chart : editors -Oracle Open Office Chart : editors;formula editor -Oracle Open Office Chart : editors;ImageMap editor -Oracle Open Office Chart : effects -Oracle Open Office Chart : effects;font positions -Oracle Open Office Chart : effects;fonts -Oracle Open Office Chart : effects;Fontwork icons -Oracle Open Office Chart : empty documents -Oracle Open Office Chart : empty paragraph removal -Oracle Open Office Chart : encryption of contents -Oracle Open Office Chart : entering groups -Oracle Open Office Chart : entering text from right to left -Oracle Open Office Chart : equal sign, see also operators -Oracle Open Office Chart : equations in formula editor -Oracle Open Office Chart : error bars in charts -Oracle Open Office Chart : error indicators in charts -Oracle Open Office Chart : Error Report Tool -Oracle Open Office Chart : Euro -Oracle Open Office Chart : Euro;currency formats -Oracle Open Office Chart : Euro;Euro Converter Wizard -Oracle Open Office Chart : even/odd pages -Oracle Open Office Chart : even/odd pages;printing -Oracle Open Office Chart : events -Oracle Open Office Chart : events;assigning scripts -Oracle Open Office Chart : events;controls -Oracle Open Office Chart : events;customizing -Oracle Open Office Chart : events;in forms -Oracle Open Office Chart : Excel -Oracle Open Office Chart : Excel;saving as -Oracle Open Office Chart : Excel;search criteria -Oracle Open Office Chart : exceptions -Oracle Open Office Chart : exceptions;user-defined dictionaries -Oracle Open Office Chart : exchanging, see also replacing -Oracle Open Office Chart : executing SQL commands -Oracle Open Office Chart : exiting -Oracle Open Office Chart : exiting;groups -Oracle Open Office Chart : exiting;Oracle Open Office -Oracle Open Office Chart : expanding formatting (Calc) -Oracle Open Office Chart : explorer of data sources -Oracle Open Office Chart : export filters -Oracle Open Office Chart : exporting -Oracle Open Office Chart : exporting;bitmaps -Oracle Open Office Chart : exporting;HTML and text documents -Oracle Open Office Chart : exporting;Microsoft Office documents with VBA code -Oracle Open Office Chart : exporting;spreadsheets to text format -Oracle Open Office Chart : exporting;templates -Oracle Open Office Chart : exporting;to foreign formats -Oracle Open Office Chart : exporting;to HTML -Oracle Open Office Chart : exporting;to Microsoft Office formats -Oracle Open Office Chart : exporting;to PDF -Oracle Open Office Chart : exporting;to PostScript format -Oracle Open Office Chart : exporting;to XML -Oracle Open Office Chart : exporting;XML files -Oracle Open Office Chart : extended tips in Help -Oracle Open Office Chart : extension mode in text -Oracle Open Office Chart : extensions -Oracle Open Office Chart : extensions;Extension Manager -Oracle Open Office Chart : extensions;file formats -Oracle Open Office Chart : external keys (Base) -Oracle Open Office Chart : faster printing -Oracle Open Office Chart : faxes -Oracle Open Office Chart : faxes;configuring Oracle Open Office -Oracle Open Office Chart : faxes;fax programs/fax printers under UNIX -Oracle Open Office Chart : faxes;selecting a fax machine -Oracle Open Office Chart : faxes;sending -Oracle Open Office Chart : faxes;wizards -Oracle Open Office Chart : feedback -Oracle Open Office Chart : feedback;automatically -Oracle Open Office Chart : fields -Oracle Open Office Chart : fields;database tables -Oracle Open Office Chart : fields;displaying field codes (Writer) -Oracle Open Office Chart : fields;formatted fields -Oracle Open Office Chart : fields;updating automatically (Writer) -Oracle Open Office Chart : file associations for Microsoft Office -Oracle Open Office Chart : file filters -Oracle Open Office Chart : file filters;mobile devices -Oracle Open Office Chart : file filters;XML -Oracle Open Office Chart : file formats -Oracle Open Office Chart : file formats;changing Oracle Open Office defaults -Oracle Open Office Chart : file formats;OpenDocument/XML -Oracle Open Office Chart : file formats;saving always in other formats -Oracle Open Office Chart : file selection button -Oracle Open Office Chart : file sharing options for current document -Oracle Open Office Chart : files -Oracle Open Office Chart : files;filters and formats -Oracle Open Office Chart : files;importing -Oracle Open Office Chart : files;opening -Oracle Open Office Chart : files;properties -Oracle Open Office Chart : files;saving -Oracle Open Office Chart : files;saving automatically -Oracle Open Office Chart : files;saving in other formats -Oracle Open Office Chart : files;sending as e-mail -Oracle Open Office Chart : files;version numbers -Oracle Open Office Chart : files and folders in Oracle Open Office -Oracle Open Office Chart : fill characters with tabulators -Oracle Open Office Chart : fill colors for areas -Oracle Open Office Chart : fill patterns for areas -Oracle Open Office Chart : filter conditions -Oracle Open Office Chart : filter conditions;connecting -Oracle Open Office Chart : filter conditions;in queries (Base) -Oracle Open Office Chart : filtering -Oracle Open Office Chart : filtering;data in databases -Oracle Open Office Chart : filtering;data in forms -Oracle Open Office Chart : filters -Oracle Open Office Chart : filters;comparison operators -Oracle Open Office Chart : filters;for import and export -Oracle Open Office Chart : filters;Navigator -Oracle Open Office Chart : filters;pictures -Oracle Open Office Chart : filters;XML filter settings -Oracle Open Office Chart : Find tab in Help -Oracle Open Office Chart : finding -Oracle Open Office Chart : finding;in all sheets -Oracle Open Office Chart : finding;records in form documents -Oracle Open Office Chart : finding;selections -Oracle Open Office Chart : finding;similarity search -Oracle Open Office Chart : fitting to pages -Oracle Open Office Chart : fitting to pages;print settings in Math -Oracle Open Office Chart : fitting to pages;print settings in presentations -Oracle Open Office Chart : fixed text -Oracle Open Office Chart : fixed text;form functions -Oracle Open Office Chart : fixing toolbars -Oracle Open Office Chart : flipping draw objects -Oracle Open Office Chart : floating frames in HTML documents -Oracle Open Office Chart : floating toolbars -Oracle Open Office Chart : focus of controls -Oracle Open Office Chart : folder creation -Oracle Open Office Chart : font lists -Oracle Open Office Chart : font name box -Oracle Open Office Chart : font sizes -Oracle Open Office Chart : font sizes;bullets -Oracle Open Office Chart : font sizes;relative changes -Oracle Open Office Chart : font sizes;scaling on screen -Oracle Open Office Chart : font sizes;text -Oracle Open Office Chart : fonts -Oracle Open Office Chart : fonts;adding under UNIX -Oracle Open Office Chart : fonts;changing in templates -Oracle Open Office Chart : fonts;colors -Oracle Open Office Chart : fonts;default settings -Oracle Open Office Chart : fonts;effects -Oracle Open Office Chart : fonts;for HTML and Basic -Oracle Open Office Chart : fonts;formats -Oracle Open Office Chart : fonts;outlines -Oracle Open Office Chart : fonts;positions in text -Oracle Open Office Chart : fonts;shadows -Oracle Open Office Chart : fonts;specifying several -Oracle Open Office Chart : fonts;strikethrough -Oracle Open Office Chart : fonts;styles -Oracle Open Office Chart : fonts;text objects -Oracle Open Office Chart : Fontwork icons -Oracle Open Office Chart : footers -Oracle Open Office Chart : footers;backgrounds -Oracle Open Office Chart : form controls -Oracle Open Office Chart : form controls;assigning macros -Oracle Open Office Chart : form controls;protecting -Oracle Open Office Chart : form controls;toolbars -Oracle Open Office Chart : form fields -Oracle Open Office Chart : form filters -Oracle Open Office Chart : Form Navigator -Oracle Open Office Chart : format codes -Oracle Open Office Chart : format codes;numbers -Oracle Open Office Chart : format filling printing in Oracle Open Office Math -Oracle Open Office Chart : Format Paintbrush -Oracle Open Office Chart : formats -Oracle Open Office Chart : formats;Asian layout -Oracle Open Office Chart : formats;fonts -Oracle Open Office Chart : formats;maximizing page formats -Oracle Open Office Chart : formats;number and currency formats -Oracle Open Office Chart : formats;of currencies/date/time -Oracle Open Office Chart : formats;on opening and saving -Oracle Open Office Chart : formats;pasting in special formats -Oracle Open Office Chart : formats;positions -Oracle Open Office Chart : formats;tabulators -Oracle Open Office Chart : formatted fields -Oracle Open Office Chart : formatted fields;form functions -Oracle Open Office Chart : formatted fields;properties -Oracle Open Office Chart : formatting -Oracle Open Office Chart : formatting;Asian typography -Oracle Open Office Chart : formatting;axes in charts -Oracle Open Office Chart : formatting;chart areas -Oracle Open Office Chart : formatting;chart floors -Oracle Open Office Chart : formatting;chart legends -Oracle Open Office Chart : formatting;chart titles -Oracle Open Office Chart : formatting;chart walls -Oracle Open Office Chart : formatting;copying -Oracle Open Office Chart : formatting;definition -Oracle Open Office Chart : formatting;expanding (Calc) -Oracle Open Office Chart : formatting;font effects -Oracle Open Office Chart : formatting;hyperlinks -Oracle Open Office Chart : formatting;pages -Oracle Open Office Chart : formatting;printer metrics (Writer) -Oracle Open Office Chart : formatting;undoing -Oracle Open Office Chart : formatting;undoing when writing -Oracle Open Office Chart : forms -Oracle Open Office Chart : forms;browsing -Oracle Open Office Chart : forms;Combo Box/List Box Wizard -Oracle Open Office Chart : forms;creating -Oracle Open Office Chart : forms;data -Oracle Open Office Chart : forms;designing (Base) -Oracle Open Office Chart : forms;events -Oracle Open Office Chart : forms;filtering data -Oracle Open Office Chart : forms;finding records -Oracle Open Office Chart : forms;focus after opening -Oracle Open Office Chart : forms;general information (Base) -Oracle Open Office Chart : forms;grouping controls -Oracle Open Office Chart : forms;HTML filters -Oracle Open Office Chart : forms;Navigator -Oracle Open Office Chart : forms;opening in design mode -Oracle Open Office Chart : forms;properties -Oracle Open Office Chart : forms;sorting data -Oracle Open Office Chart : forms;subforms -Oracle Open Office Chart : forms;wizards -Oracle Open Office Chart : forms;XForms -Oracle Open Office Chart : formula texts -Oracle Open Office Chart : formula texts;printing in Oracle Open Office Math -Oracle Open Office Chart : formulas -Oracle Open Office Chart : formulas;new -Oracle Open Office Chart : formulas;starting formula editor -Oracle Open Office Chart : formulas in reports -Oracle Open Office Chart : formulas in reports;editing -Oracle Open Office Chart : forums and support -Oracle Open Office Chart : frames -Oracle Open Office Chart : frames;around paragraphs -Oracle Open Office Chart : frames;around tables -Oracle Open Office Chart : frames;AutoCorrect function -Oracle Open Office Chart : frames;backgrounds -Oracle Open Office Chart : frames;captions (Writer) -Oracle Open Office Chart : frames;printing in Oracle Open Office Math -Oracle Open Office Chart : frames;protecting -Oracle Open Office Chart : frames;selection frames -Oracle Open Office Chart : frames;text fitting to frames -Oracle Open Office Chart : freeform lines -Oracle Open Office Chart : freeform lines;draw functions -Oracle Open Office Chart : FTP -Oracle Open Office Chart : FTP;opening documents -Oracle Open Office Chart : FTP;saving documents -Oracle Open Office Chart : full joins (Base) -Oracle Open Office Chart : full screen view -Oracle Open Office Chart : full-text search in Help -Oracle Open Office Chart : functions in reports -Oracle Open Office Chart : functions in reports;editing -Oracle Open Office Chart : Gallery -Oracle Open Office Chart : Gallery;adding pictures -Oracle Open Office Chart : Gallery;dragging pictures to draw objects -Oracle Open Office Chart : Gallery;hiding/showing -Oracle Open Office Chart : Gallery;inserting pictures from -Oracle Open Office Chart : get method for form transmissions -Oracle Open Office Chart : getting support -Oracle Open Office Chart : GIF format -Oracle Open Office Chart : glossaries -Oracle Open Office Chart : glossaries;common terms -Oracle Open Office Chart : glossaries;Internet terms -Oracle Open Office Chart : gradients off for faster printing -Oracle Open Office Chart : graphic objects, see draw objects -Oracle Open Office Chart : graphical text art -Oracle Open Office Chart : graphics -Oracle Open Office Chart : graphics;cache -Oracle Open Office Chart : graphics;protecting -Oracle Open Office Chart : graphics, see also pictures -Oracle Open Office Chart : grayscale printing -Oracle Open Office Chart : grid controls -Oracle Open Office Chart : grid controls;form functions -Oracle Open Office Chart : grids -Oracle Open Office Chart : grids;defaults (Writer/Calc) -Oracle Open Office Chart : grids;display options (Impress/Draw) -Oracle Open Office Chart : grids;displaying lines (Calc) -Oracle Open Office Chart : grids;formatting axes -Oracle Open Office Chart : grids;inserting in charts -Oracle Open Office Chart : group box creation -Oracle Open Office Chart : groups -Oracle Open Office Chart : groups;entering/exiting/ungrouping -Oracle Open Office Chart : groups;naming -Oracle Open Office Chart : groups;of controls -Oracle Open Office Chart : guides -Oracle Open Office Chart : guides;display options (Impress/Draw) -Oracle Open Office Chart : guides;displaying when moving objects (Impress) -Oracle Open Office Chart : guides;showing (Calc) -Oracle Open Office Chart : guides;showing when moving frames (Writer) -Oracle Open Office Chart : gutter -Oracle Open Office Chart : handles -Oracle Open Office Chart : handles;displaying (Writer) -Oracle Open Office Chart : handles;scaling -Oracle Open Office Chart : handles;showing simple/large handles (Calc) -Oracle Open Office Chart : Hangul/Hanja -Oracle Open Office Chart : hatching -Oracle Open Office Chart : headers -Oracle Open Office Chart : headers;backgrounds -Oracle Open Office Chart : headings -Oracle Open Office Chart : headings;entering as text box -Oracle Open Office Chart : Hebrew -Oracle Open Office Chart : Hebrew;entering text -Oracle Open Office Chart : Hebrew;language settings -Oracle Open Office Chart : Help -Oracle Open Office Chart : Help;bookmarks -Oracle Open Office Chart : Help;extended tips on/off -Oracle Open Office Chart : Help;full-text search -Oracle Open Office Chart : Help;Help tips -Oracle Open Office Chart : Help;keywords -Oracle Open Office Chart : Help;navigation pane showing/hiding -Oracle Open Office Chart : Help;style sheets -Oracle Open Office Chart : Help;topics -Oracle Open Office Chart : Help Agent -Oracle Open Office Chart : Help Agent;help -Oracle Open Office Chart : Help Agent;options -Oracle Open Office Chart : Help tips -Oracle Open Office Chart : Help tips;hiding -Oracle Open Office Chart : hidden controls in Form Navigator -Oracle Open Office Chart : hidden fields display (Writer) -Oracle Open Office Chart : hidden pages -Oracle Open Office Chart : hidden pages;printing in presentations -Oracle Open Office Chart : hidden text -Oracle Open Office Chart : hidden text;showing (Writer) -Oracle Open Office Chart : hiding -Oracle Open Office Chart : hiding;changes -Oracle Open Office Chart : hiding;chart legends -Oracle Open Office Chart : hiding;docked windows -Oracle Open Office Chart : hiding;navigation pane in Help window -Oracle Open Office Chart : high contrast mode -Oracle Open Office Chart : Hindi -Oracle Open Office Chart : Hindi;entering text -Oracle Open Office Chart : Hindi;language settings -Oracle Open Office Chart : horizontal scrollbars (Writer) -Oracle Open Office Chart : hotspots -Oracle Open Office Chart : HowTos for charts -Oracle Open Office Chart : HTML -Oracle Open Office Chart : HTML;definition -Oracle Open Office Chart : HTML;export character set -Oracle Open Office Chart : HTML;fonts for source display -Oracle Open Office Chart : HTML;importing META tags -Oracle Open Office Chart : HTML;live presentations -Oracle Open Office Chart : HTML documents -Oracle Open Office Chart : HTML documents;auto reloading -Oracle Open Office Chart : HTML documents;importing/exporting -Oracle Open Office Chart : HTML documents;META tags in -Oracle Open Office Chart : HTML documents;new -Oracle Open Office Chart : HTML documents;source text -Oracle Open Office Chart : hyperlinks -Oracle Open Office Chart : hyperlinks;assigning macros -Oracle Open Office Chart : hyperlinks;character formats -Oracle Open Office Chart : hyperlinks;definition -Oracle Open Office Chart : hyperlinks;deleting -Oracle Open Office Chart : hyperlinks;editing -Oracle Open Office Chart : hyperlinks;inserting -Oracle Open Office Chart : hyperlinks;relative and absolute -Oracle Open Office Chart : hyperlinks;turning off automatic recognition -Oracle Open Office Chart : hyperlinks, see also links -Oracle Open Office Chart : hyphenation -Oracle Open Office Chart : hyphenation;activating for a language -Oracle Open Office Chart : hyphenation;minimal number of characters -Oracle Open Office Chart : hyphens -Oracle Open Office Chart : hyphens;displaying custom (Writer) -Oracle Open Office Chart : hyphens;inserting custom -Oracle Open Office Chart : icon bars, see toolbars -Oracle Open Office Chart : icon sizes -Oracle Open Office Chart : ignore list for spellcheck -Oracle Open Office Chart : illumination -Oracle Open Office Chart : illumination;3D charts -Oracle Open Office Chart : illustrations, see pictures -Oracle Open Office Chart : image button creation -Oracle Open Office Chart : image control creation -Oracle Open Office Chart : ImageMap -Oracle Open Office Chart : ImageMap;definition -Oracle Open Office Chart : ImageMap;editor -Oracle Open Office Chart : images -Oracle Open Office Chart : images;ImageMap -Oracle Open Office Chart : images;inserting and editing bitmaps -Oracle Open Office Chart : images, see also pictures -Oracle Open Office Chart : IME -Oracle Open Office Chart : IME;definition -Oracle Open Office Chart : IME;showing/hiding -Oracle Open Office Chart : import filters -Oracle Open Office Chart : import restrictions for Microsoft Office -Oracle Open Office Chart : importing -Oracle Open Office Chart : importing;bitmaps -Oracle Open Office Chart : importing;compatibility settings for text import -Oracle Open Office Chart : importing;databases -Oracle Open Office Chart : importing;documents in other formats -Oracle Open Office Chart : importing;from XML -Oracle Open Office Chart : importing;HTML and text documents -Oracle Open Office Chart : importing;HTML with META tags -Oracle Open Office Chart : importing;Microsoft Office documents with VBA code -Oracle Open Office Chart : importing;tables in text format -Oracle Open Office Chart : importing;templates -Oracle Open Office Chart : improvement program -Oracle Open Office Chart : inches -Oracle Open Office Chart : Index tab in Help -Oracle Open Office Chart : indexes -Oracle Open Office Chart : indexes;backgrounds -Oracle Open Office Chart : indexes;showing/hiding Help index tab -Oracle Open Office Chart : indicator lines in text -Oracle Open Office Chart : inner joins (Base) -Oracle Open Office Chart : input method window -Oracle Open Office Chart : insert mode for entering text -Oracle Open Office Chart : inserting -Oracle Open Office Chart : inserting;buttons in toolbars -Oracle Open Office Chart : inserting;cell ranges from spreadsheets -Oracle Open Office Chart : inserting;charts -Oracle Open Office Chart : inserting;clipboard options -Oracle Open Office Chart : inserting;comments -Oracle Open Office Chart : inserting;data from text documents -Oracle Open Office Chart : inserting;datasource records in spreadsheets -Oracle Open Office Chart : inserting;drawings -Oracle Open Office Chart : inserting;floating frames -Oracle Open Office Chart : inserting;Fontwork objects -Oracle Open Office Chart : inserting;form fields -Oracle Open Office Chart : inserting;hyperlinks -Oracle Open Office Chart : inserting;line breaks in cells -Oracle Open Office Chart : inserting;movies/sounds -Oracle Open Office Chart : inserting;new text tables defaults -Oracle Open Office Chart : inserting;objects from Gallery -Oracle Open Office Chart : inserting;OLE objects -Oracle Open Office Chart : inserting;paragraph borders -Oracle Open Office Chart : inserting;paragraph bullets -Oracle Open Office Chart : inserting;pictures in Gallery -Oracle Open Office Chart : inserting;plug-ins -Oracle Open Office Chart : inserting;push buttons -Oracle Open Office Chart : inserting;special characters -Oracle Open Office Chart : inserting;tab stops -Oracle Open Office Chart : inserting;textures on chart bars -Oracle Open Office Chart : installing -Oracle Open Office Chart : installing;ActiveX control -Oracle Open Office Chart : installing;mobile device filters -Oracle Open Office Chart : installing;UNO components -Oracle Open Office Chart : installing;XML filters -Oracle Open Office Chart : instructions -Oracle Open Office Chart : instructions;general -Oracle Open Office Chart : Internet -Oracle Open Office Chart : Internet;checking for updates -Oracle Open Office Chart : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Chart : Internet;presentations -Oracle Open Office Chart : Internet;starting searches -Oracle Open Office Chart : Internet glossary -Oracle Open Office Chart : invert filter -Oracle Open Office Chart : invisible areas -Oracle Open Office Chart : italic text -Oracle Open Office Chart : iterative references in spreadsheets -Oracle Open Office Chart : Java -Oracle Open Office Chart : Java;definition -Oracle Open Office Chart : Java;setting options -Oracle Open Office Chart : JDBC -Oracle Open Office Chart : JDBC;databases (Base) -Oracle Open Office Chart : JDBC;definition -Oracle Open Office Chart : joining -Oracle Open Office Chart : joining;paragraphs -Oracle Open Office Chart : joining;tables (Base) -Oracle Open Office Chart : joins in databases (Base) -Oracle Open Office Chart : justifying text -Oracle Open Office Chart : kerning -Oracle Open Office Chart : kerning;Asian texts -Oracle Open Office Chart : kerning;definition -Oracle Open Office Chart : kerning;in characters -Oracle Open Office Chart : key fields for relations (Base) -Oracle Open Office Chart : keyboard -Oracle Open Office Chart : keyboard;assigning/editing shortcut keys -Oracle Open Office Chart : keyboard;general commands -Oracle Open Office Chart : keyboard;removing numbering -Oracle Open Office Chart : keys -Oracle Open Office Chart : keys;adding push buttons -Oracle Open Office Chart : keys;primary keys (Base) -Oracle Open Office Chart : kiosk export -Oracle Open Office Chart : labels -Oracle Open Office Chart : labels;creating and synchronizing -Oracle Open Office Chart : labels;for charts -Oracle Open Office Chart : labels;for draw objects -Oracle Open Office Chart : labels;form functions -Oracle Open Office Chart : labels;from databases -Oracle Open Office Chart : labels, see also names/callouts -Oracle Open Office Chart : languages -Oracle Open Office Chart : languages;activating modules -Oracle Open Office Chart : languages;Asian support -Oracle Open Office Chart : languages;complex text layout -Oracle Open Office Chart : languages;locale settings -Oracle Open Office Chart : languages;selecting for text -Oracle Open Office Chart : languages;setting options -Oracle Open Office Chart : languages;spellcheck -Oracle Open Office Chart : languages;spellchecking and formatting -Oracle Open Office Chart : large handles (Writer) -Oracle Open Office Chart : large icons -Oracle Open Office Chart : layer arrangement -Oracle Open Office Chart : layout -Oracle Open Office Chart : layout;importing Word documents -Oracle Open Office Chart : layout;pages -Oracle Open Office Chart : LDAP server -Oracle Open Office Chart : LDAP server;address books (Base) -Oracle Open Office Chart : LDAP server;sign on options -Oracle Open Office Chart : leading between paragraphs -Oracle Open Office Chart : left alignment of paragraphs -Oracle Open Office Chart : left joins (Base) -Oracle Open Office Chart : legends -Oracle Open Office Chart : legends;charts -Oracle Open Office Chart : legends;draw objects -Oracle Open Office Chart : legends;rounding corners -Oracle Open Office Chart : Letter Wizard -Oracle Open Office Chart : levels -Oracle Open Office Chart : levels;depth stagger -Oracle Open Office Chart : levels;macro security -Oracle Open Office Chart : limits of tables (Writer) -Oracle Open Office Chart : line breaks -Oracle Open Office Chart : line breaks;in cells -Oracle Open Office Chart : line charts -Oracle Open Office Chart : line spacing -Oracle Open Office Chart : line spacing;context menu in paragraphs -Oracle Open Office Chart : line spacing;paragraph -Oracle Open Office Chart : line styles -Oracle Open Office Chart : line styles;applying -Oracle Open Office Chart : line styles;defining -Oracle Open Office Chart : lines -Oracle Open Office Chart : lines;defining ends -Oracle Open Office Chart : lines;draw functions -Oracle Open Office Chart : lines;drawing in text -Oracle Open Office Chart : lines;editing points -Oracle Open Office Chart : lines;removing automatic lines -Oracle Open Office Chart : lines of text -Oracle Open Office Chart : lines of text;alignment -Oracle Open Office Chart : links -Oracle Open Office Chart : links;between cells and controls -Oracle Open Office Chart : links;by drag and drop -Oracle Open Office Chart : links;character formats -Oracle Open Office Chart : links;definition -Oracle Open Office Chart : links;editing hyperlinks -Oracle Open Office Chart : links;inserting -Oracle Open Office Chart : links;modifying -Oracle Open Office Chart : links;opening files with -Oracle Open Office Chart : links;relational databases (Base) -Oracle Open Office Chart : links;turning off automatic recognition -Oracle Open Office Chart : links;updating options (Writer) -Oracle Open Office Chart : links;updating specific links -Oracle Open Office Chart : list box creation -Oracle Open Office Chart : lists -Oracle Open Office Chart : lists;data assigned to controls -Oracle Open Office Chart : lists;registered databases (Base) -Oracle Open Office Chart : lists;regular expressions -Oracle Open Office Chart : live presentations on the Internet -Oracle Open Office Chart : loading -Oracle Open Office Chart : loading;documents -Oracle Open Office Chart : loading;documents from other formats -Oracle Open Office Chart : loading;HTML documents, automatically -Oracle Open Office Chart : loading;Microsoft Office documents with VBA code -Oracle Open Office Chart : loading;reloading -Oracle Open Office Chart : loading;XML files -Oracle Open Office Chart : locale settings -Oracle Open Office Chart : logarithmic scaling along axes -Oracle Open Office Chart : lowercase letters -Oracle Open Office Chart : lowercase letters;font effects -Oracle Open Office Chart : Macro Wizard (Base) -Oracle Open Office Chart : macros -Oracle Open Office Chart : macros;assigning to events in forms -Oracle Open Office Chart : macros;attaching new (Base) -Oracle Open Office Chart : macros;in MS Office documents -Oracle Open Office Chart : macros;interrupting -Oracle Open Office Chart : macros;organizing -Oracle Open Office Chart : macros;recording -Oracle Open Office Chart : macros;security -Oracle Open Office Chart : macros;security levels -Oracle Open Office Chart : macros;security warning dialog -Oracle Open Office Chart : macros;selecting security warnings -Oracle Open Office Chart : magnifiers -Oracle Open Office Chart : margins -Oracle Open Office Chart : margins;pages -Oracle Open Office Chart : margins;setting with the mouse -Oracle Open Office Chart : margins;shadows -Oracle Open Office Chart : marking changes -Oracle Open Office Chart : marking, see selecting -Oracle Open Office Chart : Math formula editor -Oracle Open Office Chart : mean value lines in charts -Oracle Open Office Chart : measurement units -Oracle Open Office Chart : measurement units;changing on rulers -Oracle Open Office Chart : measurement units;converting -Oracle Open Office Chart : measurement units;selecting -Oracle Open Office Chart : Media Player window -Oracle Open Office Chart : menus -Oracle Open Office Chart : menus;activating context menus -Oracle Open Office Chart : menus;assigning macros -Oracle Open Office Chart : menus;customizing -Oracle Open Office Chart : merging -Oracle Open Office Chart : merging;documents -Oracle Open Office Chart : META tags -Oracle Open Office Chart : metrics -Oracle Open Office Chart : metrics;converting -Oracle Open Office Chart : metrics;document formatting (Writer) -Oracle Open Office Chart : metrics;in sheets -Oracle Open Office Chart : Microsoft Office -Oracle Open Office Chart : Microsoft Office;Access databases (base) -Oracle Open Office Chart : Microsoft Office;as default file format -Oracle Open Office Chart : Microsoft Office;document import restrictions -Oracle Open Office Chart : Microsoft Office;feature comparisons -Oracle Open Office Chart : Microsoft Office;importing password protected files -Oracle Open Office Chart : Microsoft Office;importing Word documents -Oracle Open Office Chart : Microsoft Office;importing/exporting VBA code -Oracle Open Office Chart : Microsoft Office;new users information -Oracle Open Office Chart : Microsoft Office;opening Microsoft documents -Oracle Open Office Chart : Microsoft Office;reassigning document types -Oracle Open Office Chart : migrating macros (Base) -Oracle Open Office Chart : mobile device filters -Oracle Open Office Chart : models in XForms -Oracle Open Office Chart : modifying, see changing -Oracle Open Office Chart : more controls -Oracle Open Office Chart : mosaic filter -Oracle Open Office Chart : mouse -Oracle Open Office Chart : mouse;pointers when using drag and drop -Oracle Open Office Chart : mouse;positioning -Oracle Open Office Chart : movies -Oracle Open Office Chart : moving -Oracle Open Office Chart : moving;tab stops on ruler -Oracle Open Office Chart : moving;toolbars -Oracle Open Office Chart : moving;using guide lines in presentations -Oracle Open Office Chart : MS ADO interface (Base) -Oracle Open Office Chart : multi-line titles in forms -Oracle Open Office Chart : multiple documents -Oracle Open Office Chart : multiple documents;opening -Oracle Open Office Chart : multiple selection -Oracle Open Office Chart : music -Oracle Open Office Chart : My Documents folder -Oracle Open Office Chart : My Documents folder;changing work directory -Oracle Open Office Chart : My Documents folder;opening -Oracle Open Office Chart : MySQL databases (Base) -Oracle Open Office Chart : names -Oracle Open Office Chart : names;multi-line titles -Oracle Open Office Chart : names;objects -Oracle Open Office Chart : names, see also labels/callouts -Oracle Open Office Chart : namespace organization in XForms -Oracle Open Office Chart : native SQL (Base) -Oracle Open Office Chart : navigating -Oracle Open Office Chart : navigating;in documents -Oracle Open Office Chart : Navigation bar -Oracle Open Office Chart : Navigation bar;controls -Oracle Open Office Chart : Navigation bar;forms -Oracle Open Office Chart : Navigator -Oracle Open Office Chart : Navigator;comments -Oracle Open Office Chart : Navigator;contents as lists -Oracle Open Office Chart : Navigator;docking -Oracle Open Office Chart : Navigator;working with -Oracle Open Office Chart : net charts -Oracle Open Office Chart : network identity options -Oracle Open Office Chart : new databases -Oracle Open Office Chart : new documents -Oracle Open Office Chart : new lines in cells -Oracle Open Office Chart : new windows -Oracle Open Office Chart : non-breaking dashes -Oracle Open Office Chart : non-breaking spaces (Writer) -Oracle Open Office Chart : non-printing characters (Writer) -Oracle Open Office Chart : number formats -Oracle Open Office Chart : number formats;codes -Oracle Open Office Chart : number formats;formats -Oracle Open Office Chart : number formats;recognition in text tables -Oracle Open Office Chart : number of pages -Oracle Open Office Chart : number of sheets -Oracle Open Office Chart : number of tables -Oracle Open Office Chart : numbering -Oracle Open Office Chart : numbering;options -Oracle Open Office Chart : numbering;turning off -Oracle Open Office Chart : numbering;using automatically -Oracle Open Office Chart : numbers -Oracle Open Office Chart : numbers;date, time and currency formats -Oracle Open Office Chart : numerical fields in forms -Oracle Open Office Chart : objects -Oracle Open Office Chart : objects;always moveable (Impress/Draw) -Oracle Open Office Chart : objects;arranging within stacks -Oracle Open Office Chart : objects;copying when moving in presentations -Oracle Open Office Chart : objects;definition -Oracle Open Office Chart : objects;displaying in spreadsheets -Oracle Open Office Chart : objects;displaying in text documents -Oracle Open Office Chart : objects;editing -Oracle Open Office Chart : objects;inserting from Gallery -Oracle Open Office Chart : objects;inserting OLE objects -Oracle Open Office Chart : objects;moving and resizing with mouse -Oracle Open Office Chart : objects;naming -Oracle Open Office Chart : objects;opening -Oracle Open Office Chart : objects;properties of charts -Oracle Open Office Chart : objects;quickly moving to -Oracle Open Office Chart : objects;titles and descriptions -Oracle Open Office Chart : ODBC -Oracle Open Office Chart : ODBC;database (Base) -Oracle Open Office Chart : ODBC;definition -Oracle Open Office Chart : ODF file formats -Oracle Open Office Chart : Office -Oracle Open Office Chart : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Chart : OLE -Oracle Open Office Chart : OLE;definition -Oracle Open Office Chart : OLE objects -Oracle Open Office Chart : OLE objects;arranging within stacks -Oracle Open Office Chart : OLE objects;captions (Writer) -Oracle Open Office Chart : OLE objects;inserting -Oracle Open Office Chart : OLE objects;number of -Oracle Open Office Chart : OLE objects;protecting -Oracle Open Office Chart : one and a half line spacing in text -Oracle Open Office Chart : online feedback options -Oracle Open Office Chart : online registration -Oracle Open Office Chart : online update options -Oracle Open Office Chart : online updates -Oracle Open Office Chart : online updates;checking automatically -Oracle Open Office Chart : online updates;checking manually -Oracle Open Office Chart : OpenDocument file formats -Oracle Open Office Chart : OpenGL -Oracle Open Office Chart : OpenGL;definition -Oracle Open Office Chart : opening -Oracle Open Office Chart : opening;context menus -Oracle Open Office Chart : opening;database files -Oracle Open Office Chart : opening;dialog settings -Oracle Open Office Chart : opening;documents -Oracle Open Office Chart : opening;documents from other formats -Oracle Open Office Chart : opening;documents on WebDAV server -Oracle Open Office Chart : opening;files with links -Oracle Open Office Chart : opening;files, with placeholders -Oracle Open Office Chart : opening;forms -Oracle Open Office Chart : opening;Microsoft Office files -Oracle Open Office Chart : opening;mobile device documents -Oracle Open Office Chart : opening;objects -Oracle Open Office Chart : opening;reports -Oracle Open Office Chart : opening;several files -Oracle Open Office Chart : opening;XForms -Oracle Open Office Chart : operators -Oracle Open Office Chart : operators;default filters -Oracle Open Office Chart : optional hyphens (Writer) -Oracle Open Office Chart : options -Oracle Open Office Chart : options;accessibility -Oracle Open Office Chart : options;appearance -Oracle Open Office Chart : options;compatibility (Writer) -Oracle Open Office Chart : options;improvement program -Oracle Open Office Chart : options;network identity -Oracle Open Office Chart : options;online update -Oracle Open Office Chart : options;tools -Oracle Open Office Chart : Oracle databases (base) -Oracle Open Office Chart : Oracle Open Office Base data sources -Oracle Open Office Chart : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Chart : Oracle Open Office documents -Oracle Open Office Chart : Oracle Open Office documents;mobile device filters -Oracle Open Office Chart : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Chart : Oracle Open Office Math start -Oracle Open Office Chart : order of chart data -Oracle Open Office Chart : ordering -Oracle Open Office Chart : ordering;objects -Oracle Open Office Chart : ordinal numbers -Oracle Open Office Chart : ordinal numbers;replacing -Oracle Open Office Chart : organizing -Oracle Open Office Chart : organizing;macros and scripts -Oracle Open Office Chart : organizing;namespaces in XForms -Oracle Open Office Chart : organizing;styles -Oracle Open Office Chart : organizing;templates -Oracle Open Office Chart : original size -Oracle Open Office Chart : original size;printing in Oracle Open Office Math -Oracle Open Office Chart : original size;restoring after cropping -Oracle Open Office Chart : outlines -Oracle Open Office Chart : outlines;font effects -Oracle Open Office Chart : outlines;outline symbols -Oracle Open Office Chart : outlines;sending to presentations -Oracle Open Office Chart : overwrite mode -Oracle Open Office Chart : packages, see extensions -Oracle Open Office Chart : page breaks -Oracle Open Office Chart : page breaks;displaying (Calc) -Oracle Open Office Chart : page formats -Oracle Open Office Chart : page formats;maximizing -Oracle Open Office Chart : page formats;restriction -Oracle Open Office Chart : page styles -Oracle Open Office Chart : page styles;editing/applying with statusbar -Oracle Open Office Chart : pages -Oracle Open Office Chart : pages;backgrounds in all applications -Oracle Open Office Chart : pages;formatting and numbering -Oracle Open Office Chart : pages;printing page names in presentations -Oracle Open Office Chart : pages;scaling -Oracle Open Office Chart : pages;selecting one to print -Oracle Open Office Chart : paint box -Oracle Open Office Chart : paint can symbol -Oracle Open Office Chart : pair kerning -Oracle Open Office Chart : Palm file filters -Oracle Open Office Chart : paper formats -Oracle Open Office Chart : paper size warning -Oracle Open Office Chart : paper trays -Oracle Open Office Chart : paragraph marks -Oracle Open Office Chart : paragraph marks;displaying (Writer) -Oracle Open Office Chart : paragraph styles -Oracle Open Office Chart : paragraph styles;languages -Oracle Open Office Chart : paragraph styles;modifying basic fonts -Oracle Open Office Chart : paragraphs -Oracle Open Office Chart : paragraphs;alignment -Oracle Open Office Chart : paragraphs;Asian typography -Oracle Open Office Chart : paragraphs;defining borders -Oracle Open Office Chart : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Chart : paragraphs;increasing indents of -Oracle Open Office Chart : paragraphs;indents, margins and columns -Oracle Open Office Chart : paragraphs;inserting bullets -Oracle Open Office Chart : paragraphs;joining -Oracle Open Office Chart : paragraphs;numbering automatically -Oracle Open Office Chart : paragraphs;removing blank ones -Oracle Open Office Chart : paragraphs;spacing -Oracle Open Office Chart : paragraphs;tab stops -Oracle Open Office Chart : parameters -Oracle Open Office Chart : parameters;command line -Oracle Open Office Chart : parameters;queries (Base) -Oracle Open Office Chart : passwords for protecting contents -Oracle Open Office Chart : pasting -Oracle Open Office Chart : pasting;cell ranges -Oracle Open Office Chart : pasting;cell ranges from spreadsheets -Oracle Open Office Chart : pasting;data from text documents -Oracle Open Office Chart : pasting;draw objects -Oracle Open Office Chart : pasting;draw objects from other documents -Oracle Open Office Chart : pasting;formatted/unformatted text -Oracle Open Office Chart : pasting;from data source view -Oracle Open Office Chart : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Chart : pasting;pictures from other documents -Oracle Open Office Chart : pasting;sheet areas in text documents -Oracle Open Office Chart : pasting;to Gallery -Oracle Open Office Chart : paths -Oracle Open Office Chart : paths;changing work directory -Oracle Open Office Chart : paths;defaults -Oracle Open Office Chart : pattern editor -Oracle Open Office Chart : pattern fields -Oracle Open Office Chart : pattern fields;form functions -Oracle Open Office Chart : patterns for objects -Oracle Open Office Chart : PDF -Oracle Open Office Chart : PDF;export -Oracle Open Office Chart : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Chart : personal data input -Oracle Open Office Chart : phonetic guide -Oracle Open Office Chart : picklist creation -Oracle Open Office Chart : pictures -Oracle Open Office Chart : pictures;adding to Gallery -Oracle Open Office Chart : pictures;arranging within stacks -Oracle Open Office Chart : pictures;assigning macros -Oracle Open Office Chart : pictures;backgrounds -Oracle Open Office Chart : pictures;captions (Writer) -Oracle Open Office Chart : pictures;changing paths -Oracle Open Office Chart : pictures;cropping and zooming -Oracle Open Office Chart : pictures;displaying in Calc -Oracle Open Office Chart : pictures;displaying in Writer (Writer) -Oracle Open Office Chart : pictures;drag and drop between documents -Oracle Open Office Chart : pictures;drawing -Oracle Open Office Chart : pictures;editing -Oracle Open Office Chart : pictures;filters -Oracle Open Office Chart : pictures;ImageMap -Oracle Open Office Chart : pictures;inserting automatically -Oracle Open Office Chart : pictures;inserting from Gallery -Oracle Open Office Chart : pictures;number of -Oracle Open Office Chart : pictures;printing -Oracle Open Office Chart : pictures;scaling/resizing -Oracle Open Office Chart : pie charts -Oracle Open Office Chart : pie charts;options -Oracle Open Office Chart : pie charts;types -Oracle Open Office Chart : pixel editor -Oracle Open Office Chart : pixel graphics -Oracle Open Office Chart : pixel graphics;inserting and editing -Oracle Open Office Chart : pixel patterns -Oracle Open Office Chart : placeholders -Oracle Open Office Chart : placeholders;in SQL queries -Oracle Open Office Chart : placeholders;on opening files -Oracle Open Office Chart : placing toolbars -Oracle Open Office Chart : playing movies and sound files -Oracle Open Office Chart : plotting data as charts -Oracle Open Office Chart : plug-ins -Oracle Open Office Chart : plug-ins;activating and deactivating -Oracle Open Office Chart : plug-ins;definition -Oracle Open Office Chart : plug-ins;inserting -Oracle Open Office Chart : pocket device appliances -Oracle Open Office Chart : Pocket PC file filters -Oracle Open Office Chart : points -Oracle Open Office Chart : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Chart : polygon drawing -Oracle Open Office Chart : pop-art filter -Oracle Open Office Chart : portable document format -Oracle Open Office Chart : positioning -Oracle Open Office Chart : positioning;axes -Oracle Open Office Chart : positioning;draw objects and controls -Oracle Open Office Chart : positioning;fonts -Oracle Open Office Chart : positioning;objects -Oracle Open Office Chart : positioning;toolbars -Oracle Open Office Chart : post method for form transmissions -Oracle Open Office Chart : posterizing filter -Oracle Open Office Chart : PostScript -Oracle Open Office Chart : PostScript;creating files -Oracle Open Office Chart : PostScript;PDF converter, UNIX -Oracle Open Office Chart : PowerPoint export -Oracle Open Office Chart : precision as shown (Calc) -Oracle Open Office Chart : predefining fonts -Oracle Open Office Chart : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Chart : presentations -Oracle Open Office Chart : presentations;creating/opening -Oracle Open Office Chart : presentations;inserting spreadsheet cells -Oracle Open Office Chart : presentations;live on the Internet -Oracle Open Office Chart : presentations;print menu -Oracle Open Office Chart : presentations;saving -Oracle Open Office Chart : presentations;saving automatically -Oracle Open Office Chart : presentations;saving in other formats -Oracle Open Office Chart : presentations;sending as e-mail -Oracle Open Office Chart : presentations;starting with wizard -Oracle Open Office Chart : presentations;wizards -Oracle Open Office Chart : Presenter Console shortcuts -Oracle Open Office Chart : press buttons, see push buttons -Oracle Open Office Chart : previews -Oracle Open Office Chart : previews;fonts lists -Oracle Open Office Chart : primary keys -Oracle Open Office Chart : primary keys;defining -Oracle Open Office Chart : primary keys;design view -Oracle Open Office Chart : primary keys;inserting (Base) -Oracle Open Office Chart : print area selection -Oracle Open Office Chart : printer metrics for document formatting (Writer) -Oracle Open Office Chart : printers -Oracle Open Office Chart : printers;adding, UNIX -Oracle Open Office Chart : printers;choosing -Oracle Open Office Chart : printers;default printer -Oracle Open Office Chart : printers;faxes under UNIX -Oracle Open Office Chart : printers;maximum page formats -Oracle Open Office Chart : printers;paper trays -Oracle Open Office Chart : printers;properties -Oracle Open Office Chart : printing -Oracle Open Office Chart : printing;black and white -Oracle Open Office Chart : printing;brochures -Oracle Open Office Chart : printing;colors in grayscale -Oracle Open Office Chart : printing;comments -Oracle Open Office Chart : printing;copies -Oracle Open Office Chart : printing;creating individual jobs -Oracle Open Office Chart : printing;dates in presentations -Oracle Open Office Chart : printing;directly -Oracle Open Office Chart : printing;documents -Oracle Open Office Chart : printing;drawings defaults -Oracle Open Office Chart : printing;elements in text documents -Oracle Open Office Chart : printing;faster -Oracle Open Office Chart : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Chart : printing;fitting to pages in presentations -Oracle Open Office Chart : printing;formulas in Oracle Open Office Math -Oracle Open Office Chart : printing;hidden pages of presentations -Oracle Open Office Chart : printing;in original size in Oracle Open Office Math -Oracle Open Office Chart : printing;left/right pages -Oracle Open Office Chart : printing;queries (Base) -Oracle Open Office Chart : printing;scaling in Oracle Open Office Math -Oracle Open Office Chart : printing;selections -Oracle Open Office Chart : printing;text always in black -Oracle Open Office Chart : printing;text in reverse order -Oracle Open Office Chart : printing;tiling pages in presentations -Oracle Open Office Chart : printing;transparencies -Oracle Open Office Chart : printing;warnings -Oracle Open Office Chart : printing;without scaling in presentations -Oracle Open Office Chart : printing speed -Oracle Open Office Chart : programming -Oracle Open Office Chart : programming;Oracle Open Office -Oracle Open Office Chart : programming;scripting -Oracle Open Office Chart : properties -Oracle Open Office Chart : properties;charts -Oracle Open Office Chart : properties;fields in databases -Oracle Open Office Chart : properties;files -Oracle Open Office Chart : properties;form controls -Oracle Open Office Chart : properties;forms -Oracle Open Office Chart : properties;printers -Oracle Open Office Chart : properties;smooth lines in line charts/XY charts -Oracle Open Office Chart : protected contents -Oracle Open Office Chart : protected dashes -Oracle Open Office Chart : protected database tables -Oracle Open Office Chart : protected documents -Oracle Open Office Chart : protected spaces -Oracle Open Office Chart : protected spaces;inserting -Oracle Open Office Chart : protected spaces;showing (Writer) -Oracle Open Office Chart : protecting -Oracle Open Office Chart : protecting;contents -Oracle Open Office Chart : protecting;recorded changes -Oracle Open Office Chart : proxy settings -Oracle Open Office Chart : push buttons -Oracle Open Office Chart : push buttons;adding to documents -Oracle Open Office Chart : push buttons;creating -Oracle Open Office Chart : queries -Oracle Open Office Chart : queries;copying (Base) -Oracle Open Office Chart : queries;creating in design view (Base) -Oracle Open Office Chart : queries;creating in SQL view -Oracle Open Office Chart : queries;defining (Base) -Oracle Open Office Chart : queries;deleting table links (Base) -Oracle Open Office Chart : queries;editing in data source view -Oracle Open Office Chart : queries;formulating filter conditions (Base) -Oracle Open Office Chart : queries;joining tables (Base) -Oracle Open Office Chart : queries;missing elements (Base) -Oracle Open Office Chart : queries;overview (Base) -Oracle Open Office Chart : queries;parameter queries (Base) -Oracle Open Office Chart : queries;printing (Base) -Oracle Open Office Chart : Query Wizard (Base) -Oracle Open Office Chart : Quickstarter -Oracle Open Office Chart : quotes -Oracle Open Office Chart : quotes;custom -Oracle Open Office Chart : radar charts, see net charts -Oracle Open Office Chart : radio button creation -Oracle Open Office Chart : read-only documents -Oracle Open Office Chart : read-only documents;cursor -Oracle Open Office Chart : read-only documents;database tables on/off -Oracle Open Office Chart : read-only documents;editing -Oracle Open Office Chart : read-only documents;opening documents as -Oracle Open Office Chart : read-only items in Data Navigator -Oracle Open Office Chart : recognizing URLs automatically -Oracle Open Office Chart : recording -Oracle Open Office Chart : recording;changes -Oracle Open Office Chart : recording;macros -Oracle Open Office Chart : records -Oracle Open Office Chart : records;inserting comments -Oracle Open Office Chart : records;protecting -Oracle Open Office Chart : records;saving -Oracle Open Office Chart : records;searching in databases -Oracle Open Office Chart : rectangles with round corners -Oracle Open Office Chart : recursions in spreadsheets -Oracle Open Office Chart : redo command -Oracle Open Office Chart : reduced printing -Oracle Open Office Chart : reference lines -Oracle Open Office Chart : references -Oracle Open Office Chart : references;displaying in color (Calc) -Oracle Open Office Chart : references;expanding (Calc) -Oracle Open Office Chart : references;iterative (Calc) -Oracle Open Office Chart : register-true -Oracle Open Office Chart : register-true;definition -Oracle Open Office Chart : registering -Oracle Open Office Chart : registering;address books -Oracle Open Office Chart : registering;databases (Base) -Oracle Open Office Chart : registering;Oracle Open Office -Oracle Open Office Chart : regression curves in charts -Oracle Open Office Chart : regular expressions -Oracle Open Office Chart : regular expressions;list of -Oracle Open Office Chart : relational databases (Base) -Oracle Open Office Chart : relations -Oracle Open Office Chart : relations;creating and deleting (Base) -Oracle Open Office Chart : relations;joining tables (Base) -Oracle Open Office Chart : relations;properties (Base) -Oracle Open Office Chart : relative hyperlinks -Oracle Open Office Chart : relative saving of URLs -Oracle Open Office Chart : reloading -Oracle Open Office Chart : reloading;documents -Oracle Open Office Chart : reloading;HTML documents, automatically -Oracle Open Office Chart : remarks, see also comments -Oracle Open Office Chart : remote configurations -Oracle Open Office Chart : remove noise filter -Oracle Open Office Chart : removing -Oracle Open Office Chart : removing;bullets and numbering -Oracle Open Office Chart : removing;form filters -Oracle Open Office Chart : removing, see also deleting -Oracle Open Office Chart : reorganizing charts -Oracle Open Office Chart : repeating -Oracle Open Office Chart : repeating;commands -Oracle Open Office Chart : replacement options -Oracle Open Office Chart : replacement table -Oracle Open Office Chart : replacing -Oracle Open Office Chart : replacing;AutoCorrect function -Oracle Open Office Chart : replacing;dashes -Oracle Open Office Chart : replacing;ordinal numbers -Oracle Open Office Chart : replacing;tab stops (regular expressions) -Oracle Open Office Chart : Report Builder -Oracle Open Office Chart : reports -Oracle Open Office Chart : reports;creating -Oracle Open Office Chart : reports;error reports -Oracle Open Office Chart : reports;opening and editing -Oracle Open Office Chart : reports;templates -Oracle Open Office Chart : resetting -Oracle Open Office Chart : resetting;templates -Oracle Open Office Chart : resizing -Oracle Open Office Chart : resizing;objects, by mouse -Oracle Open Office Chart : resizing, see also scaling/zooming -Oracle Open Office Chart : resolution when printing bitmaps -Oracle Open Office Chart : restoring -Oracle Open Office Chart : restoring;default formatting -Oracle Open Office Chart : restoring;editing -Oracle Open Office Chart : reversing printing order -Oracle Open Office Chart : review function -Oracle Open Office Chart : review function;accepting or rejecting changes -Oracle Open Office Chart : review function;comparing documents -Oracle Open Office Chart : review function;protecting records -Oracle Open Office Chart : review function;recording changes example -Oracle Open Office Chart : rich text control -Oracle Open Office Chart : right alignment of paragraphs -Oracle Open Office Chart : right joins (Base) -Oracle Open Office Chart : right-to-left text -Oracle Open Office Chart : rotating -Oracle Open Office Chart : rotating;3D text -Oracle Open Office Chart : round corners -Oracle Open Office Chart : rounding precision (Calc) -Oracle Open Office Chart : row headers -Oracle Open Office Chart : row headers;displaying (Calc) -Oracle Open Office Chart : row headers;highlighting (Calc) -Oracle Open Office Chart : rulers -Oracle Open Office Chart : rulers;default settings -Oracle Open Office Chart : rulers;measurement units -Oracle Open Office Chart : rulers;visible in presentations -Oracle Open Office Chart : samples and templates -Oracle Open Office Chart : saving -Oracle Open Office Chart : saving;default file formats -Oracle Open Office Chart : saving;dialog settings -Oracle Open Office Chart : saving;documents -Oracle Open Office Chart : saving;documents for mobile devices -Oracle Open Office Chart : saving;documents in other formats -Oracle Open Office Chart : saving;documents, automatically -Oracle Open Office Chart : saving;in Microsoft Office file format -Oracle Open Office Chart : saving;options -Oracle Open Office Chart : saving;templates -Oracle Open Office Chart : saving;to XML -Oracle Open Office Chart : saving;VBA code in Microsoft Office documents -Oracle Open Office Chart : saving;with password by default -Oracle Open Office Chart : saving as command -Oracle Open Office Chart : saving as command;precautions -Oracle Open Office Chart : scaling -Oracle Open Office Chart : scaling;axes -Oracle Open Office Chart : scaling;font sizes in user interface -Oracle Open Office Chart : scaling;objects -Oracle Open Office Chart : scaling;pictures -Oracle Open Office Chart : scaling;printing in Oracle Open Office Math -Oracle Open Office Chart : scaling;text in charts -Oracle Open Office Chart : scaling;when printing presentations -Oracle Open Office Chart : scaling, see also zooming -Oracle Open Office Chart : scatter charts -Oracle Open Office Chart : screen -Oracle Open Office Chart : screen;full screen views -Oracle Open Office Chart : screen;scaling -Oracle Open Office Chart : screen magnifiers -Oracle Open Office Chart : screen readers -Oracle Open Office Chart : script organization -Oracle Open Office Chart : scrollbars -Oracle Open Office Chart : scrollbars;controls -Oracle Open Office Chart : scrollbars;displaying (Calc) -Oracle Open Office Chart : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Chart : search criteria for database functions in cells -Oracle Open Office Chart : search engines -Oracle Open Office Chart : search engines;definition -Oracle Open Office Chart : search engines;selecting -Oracle Open Office Chart : searching -Oracle Open Office Chart : searching;all sheets -Oracle Open Office Chart : searching;databases -Oracle Open Office Chart : searching;form filters -Oracle Open Office Chart : searching;Internet -Oracle Open Office Chart : searching;tables and forms -Oracle Open Office Chart : secondary axes in charts -Oracle Open Office Chart : sections -Oracle Open Office Chart : sections;backgrounds -Oracle Open Office Chart : security -Oracle Open Office Chart : security;digital signatures -Oracle Open Office Chart : security;options for documents with macros -Oracle Open Office Chart : security;protecting contents -Oracle Open Office Chart : security;security levels for macros -Oracle Open Office Chart : security;warning dialogs with macros -Oracle Open Office Chart : selecting -Oracle Open Office Chart : selecting;controls -Oracle Open Office Chart : selecting;measurement units -Oracle Open Office Chart : selecting;objects -Oracle Open Office Chart : selecting;print areas -Oracle Open Office Chart : selecting;several files -Oracle Open Office Chart : selection clipboard -Oracle Open Office Chart : selection frames -Oracle Open Office Chart : selection modes in text -Oracle Open Office Chart : sending -Oracle Open Office Chart : sending;AutoAbstract function in presentations -Oracle Open Office Chart : sending;documents as e-mail -Oracle Open Office Chart : sending;documents as faxes -Oracle Open Office Chart : separator lines -Oracle Open Office Chart : separator lines;defining -Oracle Open Office Chart : separators -Oracle Open Office Chart : separators;conditional -Oracle Open Office Chart : Server Side ImageMap -Oracle Open Office Chart : settings -Oracle Open Office Chart : settings;printers -Oracle Open Office Chart : settings;program configuration -Oracle Open Office Chart : settings;proxies -Oracle Open Office Chart : settings;tracking changes -Oracle Open Office Chart : settings;views -Oracle Open Office Chart : SGML -Oracle Open Office Chart : SGML;definition -Oracle Open Office Chart : shadows -Oracle Open Office Chart : shadows;areas -Oracle Open Office Chart : shadows;borders -Oracle Open Office Chart : shadows;characters -Oracle Open Office Chart : shadows;characters, using context menu -Oracle Open Office Chart : sharing documents -Oracle Open Office Chart : sharpening filter -Oracle Open Office Chart : sheet tabs -Oracle Open Office Chart : sheet tabs;displaying -Oracle Open Office Chart : sheets -Oracle Open Office Chart : sheets;searching all -Oracle Open Office Chart : shortcut keys -Oracle Open Office Chart : shortcut keys;assigning macros -Oracle Open Office Chart : shortcut keys;charts -Oracle Open Office Chart : shortcut keys;general -Oracle Open Office Chart : shortcut keys;in databases -Oracle Open Office Chart : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Chart : showing -Oracle Open Office Chart : showing;changes -Oracle Open Office Chart : showing;docked windows -Oracle Open Office Chart : showing;drawings and controls (Writer) -Oracle Open Office Chart : showing;live presentations on the Internet -Oracle Open Office Chart : showing;toolbars -Oracle Open Office Chart : signing documents with digital signatures -Oracle Open Office Chart : similarity search -Oracle Open Office Chart : simple handles (Writer) -Oracle Open Office Chart : simplified Chinese -Oracle Open Office Chart : simplified Chinese;translating to traditional Chinese -Oracle Open Office Chart : single sign on options -Oracle Open Office Chart : single-line spacing in text -Oracle Open Office Chart : sizes -Oracle Open Office Chart : sizes;draw objects -Oracle Open Office Chart : sizes;pictures -Oracle Open Office Chart : slanting draw objects -Oracle Open Office Chart : small capitals -Oracle Open Office Chart : small icons -Oracle Open Office Chart : smart tag configuration -Oracle Open Office Chart : smooth scrolling (Writer) -Oracle Open Office Chart : smoothing filter -Oracle Open Office Chart : snap grid defaults (Writer/Calc) -Oracle Open Office Chart : snapping in presentations and drawings -Oracle Open Office Chart : solarization filter -Oracle Open Office Chart : sort lists -Oracle Open Office Chart : sort lists;copying to in Calc -Oracle Open Office Chart : sorting -Oracle Open Office Chart : sorting;data in forms -Oracle Open Office Chart : sorting;databases -Oracle Open Office Chart : sound files -Oracle Open Office Chart : spaces -Oracle Open Office Chart : spaces;displaying (Writer) -Oracle Open Office Chart : spaces;ignoring double -Oracle Open Office Chart : spaces;inserting protected spaces -Oracle Open Office Chart : spaces;showing protected spaces (Writer) -Oracle Open Office Chart : spacing -Oracle Open Office Chart : spacing;between paragraphs in footnotes -Oracle Open Office Chart : spacing;font effects -Oracle Open Office Chart : spacing;lines and paragraphs -Oracle Open Office Chart : spacing;tab stops in text documents -Oracle Open Office Chart : spacing;tabs in presentations -Oracle Open Office Chart : spadmin -Oracle Open Office Chart : special characters -Oracle Open Office Chart : speech bubbles -Oracle Open Office Chart : speed of printing -Oracle Open Office Chart : spellcheck -Oracle Open Office Chart : spellcheck;activating for a language -Oracle Open Office Chart : spellcheck;context menus -Oracle Open Office Chart : spellcheck;default languages -Oracle Open Office Chart : spellcheck;dialog -Oracle Open Office Chart : spellcheck;dictionary of exceptions -Oracle Open Office Chart : spellcheck;ignore list -Oracle Open Office Chart : spin button creation -Oracle Open Office Chart : spoolfiles with Xprinter -Oracle Open Office Chart : spreadsheets -Oracle Open Office Chart : spreadsheets;as databases (base) -Oracle Open Office Chart : spreadsheets;copying areas to text documents -Oracle Open Office Chart : spreadsheets;creating/opening -Oracle Open Office Chart : spreadsheets;inserting charts -Oracle Open Office Chart : spreadsheets;inserting database records -Oracle Open Office Chart : spreadsheets;printing -Oracle Open Office Chart : spreadsheets;saving -Oracle Open Office Chart : spreadsheets;saving automatically -Oracle Open Office Chart : spreadsheets;saving in other formats -Oracle Open Office Chart : spreadsheets;sending as e-mail -Oracle Open Office Chart : SQL -Oracle Open Office Chart : SQL;definition -Oracle Open Office Chart : SQL;DISTINCT parameter -Oracle Open Office Chart : SQL;executing SQL commands -Oracle Open Office Chart : SQL;executing SQL statements (Base) -Oracle Open Office Chart : SQL;queries (Base) -Oracle Open Office Chart : square drawings -Oracle Open Office Chart : standard bar on/off -Oracle Open Office Chart : standard deviation in charts -Oracle Open Office Chart : standard filters in databases -Oracle Open Office Chart : standard printer under UNIX -Oracle Open Office Chart : start center -Oracle Open Office Chart : start parameters -Oracle Open Office Chart : statistics in charts -Oracle Open Office Chart : status bar on/off -Oracle Open Office Chart : stickers -Oracle Open Office Chart : stock charts -Oracle Open Office Chart : strikethrough -Oracle Open Office Chart : strikethrough;characters -Oracle Open Office Chart : strikethrough;font effects -Oracle Open Office Chart : styles -Oracle Open Office Chart : styles;'changed' message -Oracle Open Office Chart : styles;copying between documents -Oracle Open Office Chart : styles;keyboard shortcuts -Oracle Open Office Chart : styles;organizing -Oracle Open Office Chart : styles;printing styles used in a document -Oracle Open Office Chart : styles;replacing automatically -Oracle Open Office Chart : Styles and Formatting window -Oracle Open Office Chart : Styles and Formatting window;docking -Oracle Open Office Chart : subforms -Oracle Open Office Chart : subforms;creating -Oracle Open Office Chart : subforms;description -Oracle Open Office Chart : submitting forms -Oracle Open Office Chart : suffixes in file formats -Oracle Open Office Chart : support on the Web -Oracle Open Office Chart : synchronizing -Oracle Open Office Chart : synchronizing;labels and business cards -Oracle Open Office Chart : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Chart : system address book registration -Oracle Open Office Chart : tab stops -Oracle Open Office Chart : tab stops;displaying (Writer) -Oracle Open Office Chart : tab stops;inserting and editing -Oracle Open Office Chart : tab stops;regular expressions -Oracle Open Office Chart : tab stops;setting in sheets -Oracle Open Office Chart : tab stops;settings -Oracle Open Office Chart : tab stops;spacing in presentations -Oracle Open Office Chart : tab stops;spacing in text documents -Oracle Open Office Chart : table controls -Oracle Open Office Chart : table controls;form functions -Oracle Open Office Chart : table controls;keyboard-only edit mode -Oracle Open Office Chart : table controls;properties -Oracle Open Office Chart : table views of databases -Oracle Open Office Chart : Table Wizard (Base) -Oracle Open Office Chart : tables -Oracle Open Office Chart : tables;inserting line breaks -Oracle Open Office Chart : tables in databases -Oracle Open Office Chart : tables in databases;access rights to (Base) -Oracle Open Office Chart : tables in databases;adding to queries -Oracle Open Office Chart : tables in databases;browsing and editing -Oracle Open Office Chart : tables in databases;copying database tables (Base) -Oracle Open Office Chart : tables in databases;creating -Oracle Open Office Chart : tables in databases;creating in design view (manually) -Oracle Open Office Chart : tables in databases;importing text formats (Base) -Oracle Open Office Chart : tables in databases;joining for queries (Base) -Oracle Open Office Chart : tables in databases;printing queries (Base) -Oracle Open Office Chart : tables in databases;relations (Base) -Oracle Open Office Chart : tables in databases;searching -Oracle Open Office Chart : tables in spreadsheets -Oracle Open Office Chart : tables in spreadsheets;copying data to other applications -Oracle Open Office Chart : tables in spreadsheets;defining borders -Oracle Open Office Chart : tables in spreadsheets;value highlighting -Oracle Open Office Chart : tables in text -Oracle Open Office Chart : tables in text;captions -Oracle Open Office Chart : tables in text;creating automatically -Oracle Open Office Chart : tables in text;default settings -Oracle Open Office Chart : tables in text;defining borders -Oracle Open Office Chart : tables in text;displaying -Oracle Open Office Chart : tables in text;printing -Oracle Open Office Chart : tabs -Oracle Open Office Chart : tabs;displaying sheet tabs -Oracle Open Office Chart : tags -Oracle Open Office Chart : tags;definition -Oracle Open Office Chart : tags;META tags -Oracle Open Office Chart : templates -Oracle Open Office Chart : templates;agendas -Oracle Open Office Chart : templates;changing basic fonts -Oracle Open Office Chart : templates;database reports -Oracle Open Office Chart : templates;deleting -Oracle Open Office Chart : templates;editing and saving -Oracle Open Office Chart : templates;faxes -Oracle Open Office Chart : templates;importing and exporting -Oracle Open Office Chart : templates;letters -Oracle Open Office Chart : templates;new documents from templates -Oracle Open Office Chart : templates;opening documents with -Oracle Open Office Chart : templates;organizing -Oracle Open Office Chart : terminology -Oracle Open Office Chart : terminology;general glossary -Oracle Open Office Chart : terminology;Internet glossary -Oracle Open Office Chart : testing XML filters -Oracle Open Office Chart : text -Oracle Open Office Chart : text;animating -Oracle Open Office Chart : text;Asian layout -Oracle Open Office Chart : text;bold -Oracle Open Office Chart : text;coloring -Oracle Open Office Chart : text;copying by drag and drop -Oracle Open Office Chart : text;CTL languages -Oracle Open Office Chart : text;drawing pictures -Oracle Open Office Chart : text;font effects -Oracle Open Office Chart : text;font sizes -Oracle Open Office Chart : text;font styles -Oracle Open Office Chart : text;fonts and formats -Oracle Open Office Chart : text;Fontwork icons -Oracle Open Office Chart : text;hyperlinks -Oracle Open Office Chart : text;inserting special characters -Oracle Open Office Chart : text;italics -Oracle Open Office Chart : text;kerning -Oracle Open Office Chart : text;language selection -Oracle Open Office Chart : text;line spacing -Oracle Open Office Chart : text;overwriting or inserting -Oracle Open Office Chart : text;printing in black -Oracle Open Office Chart : text;replacing with format -Oracle Open Office Chart : text;selection modes -Oracle Open Office Chart : text;shadowed -Oracle Open Office Chart : text;text/draw objects -Oracle Open Office Chart : text attributes -Oracle Open Office Chart : text attributes;hyperlinks -Oracle Open Office Chart : text attributes;undoing -Oracle Open Office Chart : text boxes -Oracle Open Office Chart : text boxes;form functions -Oracle Open Office Chart : text boxes;positioning -Oracle Open Office Chart : text breaks in cells -Oracle Open Office Chart : text colors for better accessibility -Oracle Open Office Chart : text databases (Base) -Oracle Open Office Chart : text documents -Oracle Open Office Chart : text documents;creating/opening -Oracle Open Office Chart : text documents;importing/exporting -Oracle Open Office Chart : text documents;inserting spreadsheet cells -Oracle Open Office Chart : text documents;print settings -Oracle Open Office Chart : text documents;printing -Oracle Open Office Chart : text documents;saving -Oracle Open Office Chart : text documents;saving automatically -Oracle Open Office Chart : text documents;saving in other formats -Oracle Open Office Chart : text documents;sending as e-mail -Oracle Open Office Chart : text effects -Oracle Open Office Chart : text flow -Oracle Open Office Chart : text flow;in cells -Oracle Open Office Chart : text formats -Oracle Open Office Chart : text formats;databases -Oracle Open Office Chart : text formats;pasting -Oracle Open Office Chart : text input fields -Oracle Open Office Chart : text layout for special languages -Oracle Open Office Chart : text objects -Oracle Open Office Chart : text objects;alignment -Oracle Open Office Chart : text objects;draw functions -Oracle Open Office Chart : text objects;fonts -Oracle Open Office Chart : text objects;in presentations and drawings -Oracle Open Office Chart : text overflow in spreadsheet cells -Oracle Open Office Chart : text scaling in charts -Oracle Open Office Chart : text, see also text documents, paragraphs and characters -Oracle Open Office Chart : TextArt, see Fontwork -Oracle Open Office Chart : textures -Oracle Open Office Chart : textures;inserting from Gallery -Oracle Open Office Chart : textures;on chart bars -Oracle Open Office Chart : Thai -Oracle Open Office Chart : Thai;entering text -Oracle Open Office Chart : Thai;language settings -Oracle Open Office Chart : thesaurus -Oracle Open Office Chart : thesaurus;activating for a language -Oracle Open Office Chart : ticker text -Oracle Open Office Chart : time fields -Oracle Open Office Chart : time fields;form functions -Oracle Open Office Chart : times -Oracle Open Office Chart : times;inserting when printing presentations -Oracle Open Office Chart : times, formats -Oracle Open Office Chart : tips -Oracle Open Office Chart : tips;extended tips in Help -Oracle Open Office Chart : title rows -Oracle Open Office Chart : title rows;printing in Oracle Open Office Math -Oracle Open Office Chart : titles -Oracle Open Office Chart : titles;alignment (charts) -Oracle Open Office Chart : titles;changing -Oracle Open Office Chart : titles;editing in charts -Oracle Open Office Chart : titles;font effects -Oracle Open Office Chart : titles;formatting automatically -Oracle Open Office Chart : titles;formatting charts -Oracle Open Office Chart : titles;objects -Oracle Open Office Chart : toolbars -Oracle Open Office Chart : toolbars;adding buttons -Oracle Open Office Chart : toolbars;docking/undocking -Oracle Open Office Chart : toolbars;Form Navigation bar -Oracle Open Office Chart : toolbars;viewing/closing -Oracle Open Office Chart : tools bar -Oracle Open Office Chart : tooltips -Oracle Open Office Chart : tooltips;extended tips -Oracle Open Office Chart : tooltips;help -Oracle Open Office Chart : traditional Chinese -Oracle Open Office Chart : traditional Chinese;translating to simplified chinese -Oracle Open Office Chart : transparency -Oracle Open Office Chart : transparency;areas -Oracle Open Office Chart : transparency;off for faster printing -Oracle Open Office Chart : transparency;saving -Oracle Open Office Chart : tree view of Help -Oracle Open Office Chart : trend lines in charts -Oracle Open Office Chart : typefaces -Oracle Open Office Chart : typefaces;adding under UNIX -Oracle Open Office Chart : typefaces;formats -Oracle Open Office Chart : typography -Oracle Open Office Chart : typography;Asian -Oracle Open Office Chart : underlining -Oracle Open Office Chart : underlining;AutoFormat function -Oracle Open Office Chart : underlining;characters -Oracle Open Office Chart : underlining;text -Oracle Open Office Chart : undocking windows -Oracle Open Office Chart : undoing -Oracle Open Office Chart : undoing;direct formatting -Oracle Open Office Chart : undoing;editing -Oracle Open Office Chart : undoing;number of steps -Oracle Open Office Chart : ungrouping groups -Oracle Open Office Chart : units -Oracle Open Office Chart : units;converting -Oracle Open Office Chart : units;measurement units -Oracle Open Office Chart : UNO components -Oracle Open Office Chart : UNO components;Extension Manager -Oracle Open Office Chart : UNO components;integrating new -Oracle Open Office Chart : update options -Oracle Open Office Chart : updates -Oracle Open Office Chart : updates;checking automatically -Oracle Open Office Chart : updates;checking manually -Oracle Open Office Chart : updating -Oracle Open Office Chart : updating;fields and charts, automatically (Writer) -Oracle Open Office Chart : updating;links in text documents -Oracle Open Office Chart : updating;links, on opening -Oracle Open Office Chart : updating;templates -Oracle Open Office Chart : URL -Oracle Open Office Chart : URL;changing hyperlink URLs -Oracle Open Office Chart : URL;definition -Oracle Open Office Chart : URL;in pictures -Oracle Open Office Chart : URL;saving absolute/relative paths -Oracle Open Office Chart : URL;turning off URL recognition -Oracle Open Office Chart : user data -Oracle Open Office Chart : user data;input -Oracle Open Office Chart : user data;removing when saving -Oracle Open Office Chart : user feedback -Oracle Open Office Chart : user feedback;automatically -Oracle Open Office Chart : user-defined dictionaries -Oracle Open Office Chart : user-defined dictionaries;creating -Oracle Open Office Chart : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Chart : user-defined dictionaries;editing -Oracle Open Office Chart : user-defined styles -Oracle Open Office Chart : user-defined styles;automatically replacing -Oracle Open Office Chart : UTF-8/UCS2 support -Oracle Open Office Chart : values -Oracle Open Office Chart : values;rounded as shown (Calc) -Oracle Open Office Chart : variables -Oracle Open Office Chart : variables;for paths -Oracle Open Office Chart : variances in charts -Oracle Open Office Chart : VBA code -Oracle Open Office Chart : VBA code;loading/saving documents with VBA code -Oracle Open Office Chart : version management -Oracle Open Office Chart : version numbers of documents -Oracle Open Office Chart : versions -Oracle Open Office Chart : versions;comparing documents -Oracle Open Office Chart : versions;file saving as, restriction -Oracle Open Office Chart : versions;merging document versions -Oracle Open Office Chart : versions;of a document -Oracle Open Office Chart : versions;Oracle Open Office -Oracle Open Office Chart : vertical callouts -Oracle Open Office Chart : vertical scrollbars (Writer) -Oracle Open Office Chart : vertical text boxes -Oracle Open Office Chart : videos -Oracle Open Office Chart : viewing -Oracle Open Office Chart : viewing;databases -Oracle Open Office Chart : viewing;file properties -Oracle Open Office Chart : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Chart : viewing;toolbars -Oracle Open Office Chart : views -Oracle Open Office Chart : views;creating database views (Base) -Oracle Open Office Chart : views;defaults -Oracle Open Office Chart : views;full screen -Oracle Open Office Chart : views;icons -Oracle Open Office Chart : views;scaling -Oracle Open Office Chart : Visual Basic for Applications -Oracle Open Office Chart : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Chart : watermarks -Oracle Open Office Chart : web documents -Oracle Open Office Chart : web documents;XForms -Oracle Open Office Chart : Web support -Oracle Open Office Chart : WebCast export -Oracle Open Office Chart : WebDAV over HTTPS -Oracle Open Office Chart : windows -Oracle Open Office Chart : windows;docking -Oracle Open Office Chart : windows;docking definition -Oracle Open Office Chart : windows;hiding/showing/docking -Oracle Open Office Chart : windows;new -Oracle Open Office Chart : wizards -Oracle Open Office Chart : wizards;agendas -Oracle Open Office Chart : wizards;database queries -Oracle Open Office Chart : wizards;database tables (Base) -Oracle Open Office Chart : wizards;databases (Base) -Oracle Open Office Chart : wizards;document converter -Oracle Open Office Chart : wizards;Euro Converter -Oracle Open Office Chart : wizards;faxes -Oracle Open Office Chart : wizards;forms -Oracle Open Office Chart : wizards;letters -Oracle Open Office Chart : wizards;macros (Base) -Oracle Open Office Chart : wizards;overview -Oracle Open Office Chart : wizards;presentations -Oracle Open Office Chart : wizards;reports -Oracle Open Office Chart : Word documents -Oracle Open Office Chart : Word documents;compatibility -Oracle Open Office Chart : Word documents;saving as -Oracle Open Office Chart : WordArt, see Fontwork -Oracle Open Office Chart : words -Oracle Open Office Chart : words;automatically replacing -Oracle Open Office Chart : words;wrapping in cells -Oracle Open Office Chart : words;wrapping in CTL -Oracle Open Office Chart : working directory change -Oracle Open Office Chart : wrapping text -Oracle Open Office Chart : wrapping text;in cells -Oracle Open Office Chart : write protection on/off -Oracle Open Office Chart : writing aids options -Oracle Open Office Chart : WYSIWYG in fonts lists -Oracle Open Office Chart : X axes -Oracle Open Office Chart : X axes;grid formatting -Oracle Open Office Chart : X axes;positioning -Oracle Open Office Chart : X axes;scaling -Oracle Open Office Chart : X axes;showing -Oracle Open Office Chart : XForms -Oracle Open Office Chart : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Chart : XForms;conditions -Oracle Open Office Chart : XForms;opening/editing -Oracle Open Office Chart : XML converters -Oracle Open Office Chart : XML file formats -Oracle Open Office Chart : XML filters -Oracle Open Office Chart : XML filters;creating/testing -Oracle Open Office Chart : XML filters;saving as package/installing/deleting -Oracle Open Office Chart : XML filters;settings -Oracle Open Office Chart : XML Forms, see XForms -Oracle Open Office Chart : XSLT filters, see also XML filters -Oracle Open Office Chart : XY charts -Oracle Open Office Chart : Y axes -Oracle Open Office Chart : Y axes;formatting -Oracle Open Office Chart : Y axes;grid formatting -Oracle Open Office Chart : Y axes;positioning -Oracle Open Office Chart : Y axes;scaling -Oracle Open Office Chart : Y axes;showing -Oracle Open Office Chart : years -Oracle Open Office Chart : years;2-digit options -Oracle Open Office Chart : Z axes -Oracle Open Office Chart : Z axes;grid formatting -Oracle Open Office Chart : Z axes;showing -Oracle Open Office Chart : zero values -Oracle Open Office Chart : zero values;displaying (Calc) -Oracle Open Office Chart : zooming -Oracle Open Office Chart : zooming;page views -Oracle Open Office Chart : zooming;pictures -Oracle Open Office Chart : zooming;status bar -Oracle Open Office Impress : 3D charts -Oracle Open Office Impress : 3D objects -Oracle Open Office Impress : 3D objects;assembling -Oracle Open Office Impress : 3D objects;generating -Oracle Open Office Impress : 3D objects;inserting -Oracle Open Office Impress : 3D rotation objects -Oracle Open Office Impress : 3D rotation objects;converting to -Oracle Open Office Impress : 3D rotation objects;generating -Oracle Open Office Impress : 3D text creation -Oracle Open Office Impress : abbreviation replacement -Oracle Open Office Impress : absolute hyperlinks -Oracle Open Office Impress : absolute saving of URLs -Oracle Open Office Impress : accents -Oracle Open Office Impress : Access databases (base) -Oracle Open Office Impress : access rights for database tables (Base) -Oracle Open Office Impress : accessibility -Oracle Open Office Impress : accessibility;general shortcuts -Oracle Open Office Impress : accessibility;options -Oracle Open Office Impress : accessibility;Oracle Open Office assistive technology -Oracle Open Office Impress : accessibility;Oracle Open Office Draw -Oracle Open Office Impress : accessibility;Oracle Open Office features -Oracle Open Office Impress : accessibility;Oracle Open Office Impress -Oracle Open Office Impress : activating -Oracle Open Office Impress : activating;context menus -Oracle Open Office Impress : activating;Error Report Tool -Oracle Open Office Impress : activating;extended help tips -Oracle Open Office Impress : activating;plug-ins -Oracle Open Office Impress : ActiveX control -Oracle Open Office Impress : Adabas D databases (base) -Oracle Open Office Impress : add-ons, see UNO components -Oracle Open Office Impress : additional selection mode -Oracle Open Office Impress : address books -Oracle Open Office Impress : address books;LDAP server (Base) -Oracle Open Office Impress : address books;registering -Oracle Open Office Impress : address labels from databases -Oracle Open Office Impress : ADO databases (Base) -Oracle Open Office Impress : Agenda Wizard -Oracle Open Office Impress : aging filter -Oracle Open Office Impress : aligning -Oracle Open Office Impress : aligning;2D charts -Oracle Open Office Impress : aligning;cells -Oracle Open Office Impress : aligning;draw objects -Oracle Open Office Impress : aligning;objects -Oracle Open Office Impress : aligning;paragraphs -Oracle Open Office Impress : aligning;tables in text -Oracle Open Office Impress : aligning;text objects -Oracle Open Office Impress : aligning;titles in charts -Oracle Open Office Impress : allowing -Oracle Open Office Impress : allowing;effects -Oracle Open Office Impress : allowing;interaction -Oracle Open Office Impress : alternative fonts -Oracle Open Office Impress : ampersand symbol, see also operators -Oracle Open Office Impress : anchors -Oracle Open Office Impress : anchors;changing -Oracle Open Office Impress : anchors;displaying (Calc) -Oracle Open Office Impress : anchors;types/positions for draw objects -Oracle Open Office Impress : animated GIFs -Oracle Open Office Impress : animated slide transitions -Oracle Open Office Impress : animation effects -Oracle Open Office Impress : animations -Oracle Open Office Impress : animations;accessibility options -Oracle Open Office Impress : animations;editing -Oracle Open Office Impress : animations;list of -Oracle Open Office Impress : animations;saving as GIFs -Oracle Open Office Impress : appearance options -Oracle Open Office Impress : Arabic -Oracle Open Office Impress : Arabic;entering text -Oracle Open Office Impress : Arabic;language settings -Oracle Open Office Impress : area charts -Oracle Open Office Impress : areas -Oracle Open Office Impress : areas;bitmap patterns -Oracle Open Office Impress : areas;from connected lines -Oracle Open Office Impress : areas;hatched/dotted -Oracle Open Office Impress : areas;shadows -Oracle Open Office Impress : areas;slanting -Oracle Open Office Impress : areas;styles -Oracle Open Office Impress : areas;transparency -Oracle Open Office Impress : arguments in command line -Oracle Open Office Impress : arranging -Oracle Open Office Impress : arranging;objects -Oracle Open Office Impress : arranging;objects (guide) -Oracle Open Office Impress : arranging;slides -Oracle Open Office Impress : arrows -Oracle Open Office Impress : arrows;defining arrow heads -Oracle Open Office Impress : arrows;defining arrow lines -Oracle Open Office Impress : arrows;drawing in text -Oracle Open Office Impress : arrows;inserting -Oracle Open Office Impress : arrows;loading arrow styles -Oracle Open Office Impress : ASCII -Oracle Open Office Impress : ASCII;definition -Oracle Open Office Impress : Asian languages -Oracle Open Office Impress : Asian languages;enabling -Oracle Open Office Impress : Asian Phonetic Guide -Oracle Open Office Impress : Asian typography -Oracle Open Office Impress : assembled objects in 3D -Oracle Open Office Impress : assigning scripts -Oracle Open Office Impress : assistive technology in Oracle Open Office -Oracle Open Office Impress : attaching toolbars -Oracle Open Office Impress : attachments in e-mails -Oracle Open Office Impress : attributes -Oracle Open Office Impress : attributes;objects with -Oracle Open Office Impress : audio -Oracle Open Office Impress : authors -Oracle Open Office Impress : auto reloading HTML documents -Oracle Open Office Impress : AutoAbstract function for sending text to presentations -Oracle Open Office Impress : AutoCaption function in Oracle Open Office Writer -Oracle Open Office Impress : AutoComplete function in text and list boxes -Oracle Open Office Impress : AutoCorrect function -Oracle Open Office Impress : AutoCorrect function;context menu -Oracle Open Office Impress : AutoCorrect function;options -Oracle Open Office Impress : AutoCorrect function;pictures and frames -Oracle Open Office Impress : AutoCorrect function;quotes -Oracle Open Office Impress : AutoCorrect function;replacement table -Oracle Open Office Impress : AutoCorrect function;switching on and off in Calc -Oracle Open Office Impress : AutoCorrect function;URL recognition -Oracle Open Office Impress : AutoFormat function -Oracle Open Office Impress : AutoFormat function;switching on and off -Oracle Open Office Impress : automatic captions (Writer) -Oracle Open Office Impress : automatic control focus -Oracle Open Office Impress : automatic hyperlink formatting -Oracle Open Office Impress : automatic line breaks -Oracle Open Office Impress : automatic lines/borders in text -Oracle Open Office Impress : automatic saving -Oracle Open Office Impress : automatic slide changes -Oracle Open Office Impress : automatic slide changes;rehearse timings -Oracle Open Office Impress : automatic slide shows -Oracle Open Office Impress : automatic slide transition -Oracle Open Office Impress : AutoPilots, see wizards -Oracle Open Office Impress : AutoValue (Base) -Oracle Open Office Impress : averages in charts -Oracle Open Office Impress : axes -Oracle Open Office Impress : axes;better scaling -Oracle Open Office Impress : axes;formatting -Oracle Open Office Impress : axes;formatting grids -Oracle Open Office Impress : axes;inserting grids -Oracle Open Office Impress : axes;interval marks -Oracle Open Office Impress : axes;showing axes in charts -Oracle Open Office Impress : axes in charts -Oracle Open Office Impress : backgrounds -Oracle Open Office Impress : backgrounds;changing -Oracle Open Office Impress : backgrounds;defining colors/pictures -Oracle Open Office Impress : backgrounds;deleting unused -Oracle Open Office Impress : backgrounds;frames/sections/indexes -Oracle Open Office Impress : backgrounds;inserting from Gallery -Oracle Open Office Impress : backgrounds;normal view -Oracle Open Office Impress : backgrounds;notes -Oracle Open Office Impress : backgrounds;printing -Oracle Open Office Impress : backgrounds;slides -Oracle Open Office Impress : backing window -Oracle Open Office Impress : backups -Oracle Open Office Impress : backups;automatic -Oracle Open Office Impress : backups;documents -Oracle Open Office Impress : bar charts -Oracle Open Office Impress : Basic -Oracle Open Office Impress : Basic;fonts for source display -Oracle Open Office Impress : Basic;programming -Oracle Open Office Impress : Basic;recording macros -Oracle Open Office Impress : basic fonts -Oracle Open Office Impress : behind object command -Oracle Open Office Impress : Bézier curves -Oracle Open Office Impress : Bézier curves;control points in presentations -Oracle Open Office Impress : bi-directional writing -Oracle Open Office Impress : binding space -Oracle Open Office Impress : bitmaps -Oracle Open Office Impress : bitmaps;converting to -Oracle Open Office Impress : bitmaps;converting to vector graphics -Oracle Open Office Impress : bitmaps;inserting and editing -Oracle Open Office Impress : bitmaps;off for faster printing -Oracle Open Office Impress : bitmaps;patterns -Oracle Open Office Impress : bitmaps;replacing colors -Oracle Open Office Impress : black and white display -Oracle Open Office Impress : black and white printing -Oracle Open Office Impress : black and white view -Oracle Open Office Impress : black printing in Calc -Oracle Open Office Impress : block selection mode -Oracle Open Office Impress : bold -Oracle Open Office Impress : bold;AutoFormat function -Oracle Open Office Impress : bold;text -Oracle Open Office Impress : bookmarks -Oracle Open Office Impress : bookmarks;Help -Oracle Open Office Impress : borders -Oracle Open Office Impress : borders;arranging -Oracle Open Office Impress : borders;cells on screen (Calc) -Oracle Open Office Impress : borders;for paragraphs -Oracle Open Office Impress : borders;for tables -Oracle Open Office Impress : borders;shadows -Oracle Open Office Impress : borders;table boundaries (Writer) -Oracle Open Office Impress : borders, see also frames -Oracle Open Office Impress : bound fields -Oracle Open Office Impress : bound fields;controls -Oracle Open Office Impress : boundaries of tables (Writer) -Oracle Open Office Impress : break display (Writer) -Oracle Open Office Impress : breaking object connections -Oracle Open Office Impress : brochures -Oracle Open Office Impress : brochures;printing several -Oracle Open Office Impress : bubble charts -Oracle Open Office Impress : build numbers of Oracle Open Office -Oracle Open Office Impress : bullet lists -Oracle Open Office Impress : bullet lists;formatting options -Oracle Open Office Impress : bullets -Oracle Open Office Impress : bullets;paragraphs -Oracle Open Office Impress : bullets;replacing -Oracle Open Office Impress : bullets;turning off -Oracle Open Office Impress : business cards -Oracle Open Office Impress : business cards;creating and synchronizing -Oracle Open Office Impress : business cards;using templates -Oracle Open Office Impress : button bars, see toolbars -Oracle Open Office Impress : buttons -Oracle Open Office Impress : buttons;adding push buttons -Oracle Open Office Impress : buttons;big/small -Oracle Open Office Impress : buttons;editing hyperlink buttons -Oracle Open Office Impress : buttons;form functions -Oracle Open Office Impress : buttons;toolbars -Oracle Open Office Impress : cache for graphics -Oracle Open Office Impress : calculating -Oracle Open Office Impress : calculating;iterative references (Calc) -Oracle Open Office Impress : calculating;regression curves -Oracle Open Office Impress : callouts -Oracle Open Office Impress : callouts;drawings -Oracle Open Office Impress : callouts;inserting in presentations -Oracle Open Office Impress : capital letters -Oracle Open Office Impress : capital letters;AutoCorrect function -Oracle Open Office Impress : capital letters;font effects -Oracle Open Office Impress : captions -Oracle Open Office Impress : captions;automatic captions (Writer) -Oracle Open Office Impress : captions;tables/pictures/frames/OLE objects (Writer) -Oracle Open Office Impress : captions, see also labels/callouts -Oracle Open Office Impress : cascading update (Base) -Oracle Open Office Impress : case sensitivity -Oracle Open Office Impress : case sensitivity;comparing cell contents (Calc) -Oracle Open Office Impress : case sensitivity;searching -Oracle Open Office Impress : cells -Oracle Open Office Impress : cells;aligning -Oracle Open Office Impress : cells;coloring (Calc) -Oracle Open Office Impress : cells;cursor positions after input (Calc) -Oracle Open Office Impress : cells;formatting without effect (Calc) -Oracle Open Office Impress : cells;line breaks -Oracle Open Office Impress : cells;linked to controls -Oracle Open Office Impress : cells;number of -Oracle Open Office Impress : cells;pasting -Oracle Open Office Impress : cells;resetting formats -Oracle Open Office Impress : cells;showing grid lines (Calc) -Oracle Open Office Impress : centered text -Oracle Open Office Impress : centimeters -Oracle Open Office Impress : certificates -Oracle Open Office Impress : changes -Oracle Open Office Impress : changes;accepting or rejecting -Oracle Open Office Impress : changes;comparing to original -Oracle Open Office Impress : changes;protecting -Oracle Open Office Impress : changes;recording -Oracle Open Office Impress : changes;review function -Oracle Open Office Impress : changes;showing -Oracle Open Office Impress : changing -Oracle Open Office Impress : changing;document titles -Oracle Open Office Impress : changing;file associations in Setup program -Oracle Open Office Impress : changing;icon sizes -Oracle Open Office Impress : changing;layer properties -Oracle Open Office Impress : changing;layout for handouts -Oracle Open Office Impress : changing;links -Oracle Open Office Impress : changing;order of slides -Oracle Open Office Impress : changing;slide layouts -Oracle Open Office Impress : changing;work directory -Oracle Open Office Impress : changing, see also editing and replacing -Oracle Open Office Impress : character styles -Oracle Open Office Impress : character styles;language selection -Oracle Open Office Impress : characters -Oracle Open Office Impress : characters;alternative fonts -Oracle Open Office Impress : characters;Asian layout -Oracle Open Office Impress : characters;bold -Oracle Open Office Impress : characters;coloring -Oracle Open Office Impress : characters;converting to curves -Oracle Open Office Impress : characters;displaying only on screen (Writer) -Oracle Open Office Impress : characters;enabling CTL and Asian characters -Oracle Open Office Impress : characters;font effects -Oracle Open Office Impress : characters;fonts and formats -Oracle Open Office Impress : characters;hyperlinks -Oracle Open Office Impress : characters;italics -Oracle Open Office Impress : characters;language selection -Oracle Open Office Impress : characters;shadowed -Oracle Open Office Impress : characters;spacing -Oracle Open Office Impress : characters;special -Oracle Open Office Impress : characters;underlining -Oracle Open Office Impress : charcoal sketches filter -Oracle Open Office Impress : chart legends -Oracle Open Office Impress : chart legends;hiding -Oracle Open Office Impress : chart legends;showing icons with labels -Oracle Open Office Impress : chart types -Oracle Open Office Impress : chart types;area -Oracle Open Office Impress : chart types;bubble -Oracle Open Office Impress : chart types;column and bar -Oracle Open Office Impress : chart types;column and line -Oracle Open Office Impress : chart types;line -Oracle Open Office Impress : chart types;net -Oracle Open Office Impress : chart types;pie/donut -Oracle Open Office Impress : chart types;stock -Oracle Open Office Impress : chart types;XY (scatter) -Oracle Open Office Impress : charts -Oracle Open Office Impress : charts;3D views -Oracle Open Office Impress : charts;aligning -Oracle Open Office Impress : charts;arranging within stacks -Oracle Open Office Impress : charts;bars with textures -Oracle Open Office Impress : charts;choosing chart types -Oracle Open Office Impress : charts;colors -Oracle Open Office Impress : charts;copying with link to source cell range -Oracle Open Office Impress : charts;data labels -Oracle Open Office Impress : charts;displaying (Calc) -Oracle Open Office Impress : charts;editing axes -Oracle Open Office Impress : charts;editing data -Oracle Open Office Impress : charts;editing legends -Oracle Open Office Impress : charts;editing titles -Oracle Open Office Impress : charts;formatting areas -Oracle Open Office Impress : charts;formatting floors -Oracle Open Office Impress : charts;formatting walls -Oracle Open Office Impress : charts;inserting -Oracle Open Office Impress : charts;overview -Oracle Open Office Impress : charts;positioning axes -Oracle Open Office Impress : charts;properties -Oracle Open Office Impress : charts;reorganizing -Oracle Open Office Impress : charts;scaling axes -Oracle Open Office Impress : charts;scaling text -Oracle Open Office Impress : charts;shortcuts -Oracle Open Office Impress : charts;showing axes -Oracle Open Office Impress : charts;updating automatically (Writer) -Oracle Open Office Impress : check box creation -Oracle Open Office Impress : Chinese writing systems -Oracle Open Office Impress : choosing printers -Oracle Open Office Impress : circle drawings -Oracle Open Office Impress : circle segments -Oracle Open Office Impress : circles -Oracle Open Office Impress : circles;of objects -Oracle Open Office Impress : Client Side ImageMap -Oracle Open Office Impress : clipboard -Oracle Open Office Impress : clipboard;cutting -Oracle Open Office Impress : clipboard;pasting -Oracle Open Office Impress : clipboard;pasting formatted/unformatted text -Oracle Open Office Impress : clipboard;selection clipboard -Oracle Open Office Impress : clipboard;Unix -Oracle Open Office Impress : closing -Oracle Open Office Impress : closing;documents -Oracle Open Office Impress : closing;shapes -Oracle Open Office Impress : closing;toolbars -Oracle Open Office Impress : collaboration -Oracle Open Office Impress : color bar -Oracle Open Office Impress : colors -Oracle Open Office Impress : colors;adding -Oracle Open Office Impress : colors;appearance -Oracle Open Office Impress : colors;backgrounds -Oracle Open Office Impress : colors;charts -Oracle Open Office Impress : colors;default colors -Oracle Open Office Impress : colors;defining and saving -Oracle Open Office Impress : colors;defining gradients interactively -Oracle Open Office Impress : colors;displaying presentations -Oracle Open Office Impress : colors;fill format -Oracle Open Office Impress : colors;fonts -Oracle Open Office Impress : colors;grid lines and cells (Calc) -Oracle Open Office Impress : colors;loading lists -Oracle Open Office Impress : colors;models -Oracle Open Office Impress : colors;not printing -Oracle Open Office Impress : colors;printing in grayscale -Oracle Open Office Impress : colors;replacing -Oracle Open Office Impress : colors;restriction (Calc) -Oracle Open Office Impress : colors;selection -Oracle Open Office Impress : column and line charts -Oracle Open Office Impress : column charts -Oracle Open Office Impress : column headers -Oracle Open Office Impress : column headers;displaying (Calc) -Oracle Open Office Impress : column headers;highlighting (Calc) -Oracle Open Office Impress : columns -Oracle Open Office Impress : columns;inserting -Oracle Open Office Impress : columns;setting with the mouse -Oracle Open Office Impress : combination charts -Oracle Open Office Impress : combining -Oracle Open Office Impress : combining;3D objects -Oracle Open Office Impress : combining;draw objects -Oracle Open Office Impress : combining;undoing -Oracle Open Office Impress : combo box creation -Oracle Open Office Impress : command button creation -Oracle Open Office Impress : command buttons, see push buttons -Oracle Open Office Impress : command line parameters -Oracle Open Office Impress : commands -Oracle Open Office Impress : commands;repeating -Oracle Open Office Impress : commands;SQL -Oracle Open Office Impress : comments -Oracle Open Office Impress : comments;displaying (Calc) -Oracle Open Office Impress : comments;inserting/editing/deleting/printing -Oracle Open Office Impress : comments;on changes -Oracle Open Office Impress : comments;printing in text -Oracle Open Office Impress : common terms -Oracle Open Office Impress : common terms;Chinese dictionary -Oracle Open Office Impress : common terms;glossaries -Oracle Open Office Impress : common terms;Internet glossary -Oracle Open Office Impress : comparisons -Oracle Open Office Impress : comparisons;document versions -Oracle Open Office Impress : comparisons;operators in default filter dialog -Oracle Open Office Impress : compatibility settings for MS Word import -Oracle Open Office Impress : complete screen view -Oracle Open Office Impress : complex text layout -Oracle Open Office Impress : complex text layout;definition -Oracle Open Office Impress : complex text layout;enabling -Oracle Open Office Impress : complex text layout, see CTL -Oracle Open Office Impress : compose key to insert special characters -Oracle Open Office Impress : concatenation, see ampersand symbol -Oracle Open Office Impress : conditional separators -Oracle Open Office Impress : conditions -Oracle Open Office Impress : conditions;in number formats -Oracle Open Office Impress : conditions;items in Data Navigator -Oracle Open Office Impress : cones -Oracle Open Office Impress : Configuration Manager -Oracle Open Office Impress : configuring -Oracle Open Office Impress : configuring;fax icon -Oracle Open Office Impress : configuring;Oracle Open Office -Oracle Open Office Impress : configuring;toolbars -Oracle Open Office Impress : connecting -Oracle Open Office Impress : connecting;draw objects -Oracle Open Office Impress : connecting;lines -Oracle Open Office Impress : connecting;paths and objects -Oracle Open Office Impress : connections to data sources (Base) -Oracle Open Office Impress : connectors -Oracle Open Office Impress : connectors;properties of -Oracle Open Office Impress : connectors;using -Oracle Open Office Impress : constructing shapes -Oracle Open Office Impress : contents protection -Oracle Open Office Impress : context menus -Oracle Open Office Impress : contours -Oracle Open Office Impress : contours;converting to -Oracle Open Office Impress : control point display in presentations -Oracle Open Office Impress : control points definition -Oracle Open Office Impress : controls -Oracle Open Office Impress : controls;activating in forms -Oracle Open Office Impress : controls;adding to documents -Oracle Open Office Impress : controls;arranging in forms -Oracle Open Office Impress : controls;arranging within stacks -Oracle Open Office Impress : controls;assigning data sources -Oracle Open Office Impress : controls;assigning macros (Basic) -Oracle Open Office Impress : controls;bound fields/list contents/linked cells -Oracle Open Office Impress : controls;events -Oracle Open Office Impress : controls;focus -Oracle Open Office Impress : controls;formatted fields -Oracle Open Office Impress : controls;grouping -Oracle Open Office Impress : controls;hidden -Oracle Open Office Impress : controls;inserting -Oracle Open Office Impress : controls;multi-line titles -Oracle Open Office Impress : controls;positions and sizes -Oracle Open Office Impress : controls;printing -Oracle Open Office Impress : controls;properties of form controls -Oracle Open Office Impress : controls;properties of table controls -Oracle Open Office Impress : controls;reference by SQL -Oracle Open Office Impress : controls;rich text control -Oracle Open Office Impress : controls;select mode -Oracle Open Office Impress : controls;showing (Writer) -Oracle Open Office Impress : converters -Oracle Open Office Impress : converters;Euro converter -Oracle Open Office Impress : converters;PostScript, UNIX -Oracle Open Office Impress : converters;XML -Oracle Open Office Impress : converting -Oracle Open Office Impress : converting;bitmaps to polygons -Oracle Open Office Impress : converting;Hangul/Hanja -Oracle Open Office Impress : converting;metrics -Oracle Open Office Impress : converting;Microsoft documents -Oracle Open Office Impress : converting;Oracle Open Office documents -Oracle Open Office Impress : converting;Pocket PC formats -Oracle Open Office Impress : converting;points -Oracle Open Office Impress : converting;text to curves -Oracle Open Office Impress : converting;to bitmaps -Oracle Open Office Impress : converting;to contours -Oracle Open Office Impress : converting;to curves, polygons, 3D -Oracle Open Office Impress : converting;to metafile format (WMF) -Oracle Open Office Impress : copies -Oracle Open Office Impress : copies;printing -Oracle Open Office Impress : copying -Oracle Open Office Impress : copying;by drag and drop -Oracle Open Office Impress : copying;data from text documents -Oracle Open Office Impress : copying;datasource records in spreadsheets -Oracle Open Office Impress : copying;draw objects -Oracle Open Office Impress : copying;draw objects between documents -Oracle Open Office Impress : copying;formatting -Oracle Open Office Impress : copying;from data source view -Oracle Open Office Impress : copying;from Gallery -Oracle Open Office Impress : copying;in Unix -Oracle Open Office Impress : copying;pictures, between documents -Oracle Open Office Impress : copying;sheet areas, to text documents -Oracle Open Office Impress : copying;slides -Oracle Open Office Impress : copying;text from other documents -Oracle Open Office Impress : copying;to Gallery -Oracle Open Office Impress : copyright for Oracle Open Office -Oracle Open Office Impress : corner points -Oracle Open Office Impress : corner roundings -Oracle Open Office Impress : covered objects -Oracle Open Office Impress : crash reports -Oracle Open Office Impress : criteria of query design (Base) -Oracle Open Office Impress : cropping pictures -Oracle Open Office Impress : cross-fading -Oracle Open Office Impress : cross-fading;creating cross-fades -Oracle Open Office Impress : cross-fading;slides -Oracle Open Office Impress : cross-fading;two draw objects -Oracle Open Office Impress : CTL -Oracle Open Office Impress : CTL;(not) wrapping words -Oracle Open Office Impress : CTL;complex text layout languages -Oracle Open Office Impress : CTL;definition -Oracle Open Office Impress : CTL;options -Oracle Open Office Impress : cubes -Oracle Open Office Impress : currencies -Oracle Open Office Impress : currencies;converters -Oracle Open Office Impress : currencies;format codes -Oracle Open Office Impress : currency field creation -Oracle Open Office Impress : currency formats -Oracle Open Office Impress : cursor -Oracle Open Office Impress : cursor;allowing in protected areas (Writer) -Oracle Open Office Impress : cursor;in read-only text -Oracle Open Office Impress : cursor;quickly moving to an object -Oracle Open Office Impress : curves -Oracle Open Office Impress : curves;converting text to -Oracle Open Office Impress : curves;drawing -Oracle Open Office Impress : curves;editing -Oracle Open Office Impress : curves;editing points -Oracle Open Office Impress : curves;properties in line charts/XY charts -Oracle Open Office Impress : curves;toolbar -Oracle Open Office Impress : custom animation -Oracle Open Office Impress : custom colors -Oracle Open Office Impress : custom dictionaries -Oracle Open Office Impress : custom dictionaries;editing -Oracle Open Office Impress : custom gradients -Oracle Open Office Impress : custom hyphens (Writer) -Oracle Open Office Impress : custom quotes -Oracle Open Office Impress : custom slide shows -Oracle Open Office Impress : custom templates -Oracle Open Office Impress : customizing -Oracle Open Office Impress : customizing;events -Oracle Open Office Impress : customizing;keyboard -Oracle Open Office Impress : customizing;menus -Oracle Open Office Impress : customizing;Oracle Open Office -Oracle Open Office Impress : customizing;round corners -Oracle Open Office Impress : customizing;toolbars -Oracle Open Office Impress : cutting -Oracle Open Office Impress : cylinders -Oracle Open Office Impress : dashes -Oracle Open Office Impress : data -Oracle Open Office Impress : data;filtering in forms -Oracle Open Office Impress : data;forms and subforms -Oracle Open Office Impress : data;read-only -Oracle Open Office Impress : data;sorting in forms -Oracle Open Office Impress : data;user data -Oracle Open Office Impress : data binding change in XForms -Oracle Open Office Impress : data labels in charts -Oracle Open Office Impress : Data Navigator -Oracle Open Office Impress : Data Navigator;adding/editing items -Oracle Open Office Impress : Data Navigator;display options -Oracle Open Office Impress : data ranges in charts -Oracle Open Office Impress : data series -Oracle Open Office Impress : data source browser -Oracle Open Office Impress : data source explorer -Oracle Open Office Impress : data source view -Oracle Open Office Impress : data source view;drag and drop -Oracle Open Office Impress : data source view;overview -Oracle Open Office Impress : data source view;showing -Oracle Open Office Impress : data sources -Oracle Open Office Impress : data sources;as tables -Oracle Open Office Impress : data sources;connection settings (Base) -Oracle Open Office Impress : data sources;copying records to spreadsheets -Oracle Open Office Impress : data sources;displaying current -Oracle Open Office Impress : data sources;LDAP server (Base) -Oracle Open Office Impress : data sources;Oracle Open Office Base -Oracle Open Office Impress : data sources;registering address books -Oracle Open Office Impress : data sources;reports -Oracle Open Office Impress : data sources;setting for stock charts -Oracle Open Office Impress : data sources;viewing -Oracle Open Office Impress : data structure of XForms -Oracle Open Office Impress : data values in charts -Oracle Open Office Impress : data, see also values -Oracle Open Office Impress : database contents -Oracle Open Office Impress : database contents;inserting as tables -Oracle Open Office Impress : database contents;inserting as text -Oracle Open Office Impress : database reports -Oracle Open Office Impress : Database Wizard (Base) -Oracle Open Office Impress : databases -Oracle Open Office Impress : databases;administration through SQL (Base) -Oracle Open Office Impress : databases;ADO (Base) -Oracle Open Office Impress : databases;connecting (Base) -Oracle Open Office Impress : databases;creating -Oracle Open Office Impress : databases;creating labels -Oracle Open Office Impress : databases;creating queries -Oracle Open Office Impress : databases;creating reports -Oracle Open Office Impress : databases;creating tables -Oracle Open Office Impress : databases;deleting (Base) -Oracle Open Office Impress : databases;drag and drop (Base) -Oracle Open Office Impress : databases;editing tables -Oracle Open Office Impress : databases;form filters -Oracle Open Office Impress : databases;formats (Base) -Oracle Open Office Impress : databases;importing/exporting -Oracle Open Office Impress : databases;JDBC (Base) -Oracle Open Office Impress : databases;main page (Base) -Oracle Open Office Impress : databases;ODBC (Base) -Oracle Open Office Impress : databases;overview -Oracle Open Office Impress : databases;registering (Base) -Oracle Open Office Impress : databases;searching records -Oracle Open Office Impress : databases;shortcut keys -Oracle Open Office Impress : databases;sorting -Oracle Open Office Impress : databases;standard filters -Oracle Open Office Impress : databases;text formats -Oracle Open Office Impress : databases;viewing -Oracle Open Office Impress : date fields -Oracle Open Office Impress : date fields;creating -Oracle Open Office Impress : date fields;properties -Oracle Open Office Impress : date formats -Oracle Open Office Impress : date on all slides -Oracle Open Office Impress : dates -Oracle Open Office Impress : dates;default (Calc) -Oracle Open Office Impress : dates;fixed -Oracle Open Office Impress : dates;printing in presentations -Oracle Open Office Impress : dates;start 1900/01/01 (Calc) -Oracle Open Office Impress : dates;start 1904/01/01 (Calc) -Oracle Open Office Impress : dates;variable -Oracle Open Office Impress : dBASE -Oracle Open Office Impress : dBASE;database settings (Base) -Oracle Open Office Impress : DDE -Oracle Open Office Impress : DDE;definition -Oracle Open Office Impress : deactivating -Oracle Open Office Impress : deactivating;plug-ins -Oracle Open Office Impress : decimal places displayed (Calc) -Oracle Open Office Impress : decimal separator key -Oracle Open Office Impress : decimal tab stops -Oracle Open Office Impress : decreasing sizes of views -Oracle Open Office Impress : default directories -Oracle Open Office Impress : default filters -Oracle Open Office Impress : default filters;comparison operators -Oracle Open Office Impress : default filters;databases -Oracle Open Office Impress : default printer -Oracle Open Office Impress : default printer;setting up -Oracle Open Office Impress : default printer;UNIX -Oracle Open Office Impress : default templates -Oracle Open Office Impress : default templates;changing -Oracle Open Office Impress : default templates;organizing -Oracle Open Office Impress : defaults -Oracle Open Office Impress : defaults;documents -Oracle Open Office Impress : defaults;file formats in file dialogs -Oracle Open Office Impress : defaults;file formats in Oracle Open Office -Oracle Open Office Impress : defaults;fonts -Oracle Open Office Impress : defaults;grids (Writer/Calc) -Oracle Open Office Impress : defaults;languages -Oracle Open Office Impress : defaults;number formats -Oracle Open Office Impress : defaults;of saving -Oracle Open Office Impress : defaults;program configuration -Oracle Open Office Impress : defaults;tab stops in text -Oracle Open Office Impress : defaults;views -Oracle Open Office Impress : defining -Oracle Open Office Impress : defining;arrowheads and other line ends -Oracle Open Office Impress : defining;colors -Oracle Open Office Impress : defining;gradients -Oracle Open Office Impress : defining;line styles -Oracle Open Office Impress : defining;paragraph borders -Oracle Open Office Impress : defining;queries (Base) -Oracle Open Office Impress : defining;table borders -Oracle Open Office Impress : deleting -Oracle Open Office Impress : deleting;all direct formatting -Oracle Open Office Impress : deleting;animation effects -Oracle Open Office Impress : deleting;comments -Oracle Open Office Impress : deleting;databases (Base) -Oracle Open Office Impress : deleting;hyperlinks -Oracle Open Office Impress : deleting;layers -Oracle Open Office Impress : deleting;lines in text -Oracle Open Office Impress : deleting;models/instances -Oracle Open Office Impress : deleting;namespaces in XForms -Oracle Open Office Impress : deleting;points -Oracle Open Office Impress : deleting;slide transition effects -Oracle Open Office Impress : deleting;slides -Oracle Open Office Impress : deleting;tab stops -Oracle Open Office Impress : deleting;templates -Oracle Open Office Impress : deleting;XML filters -Oracle Open Office Impress : depth stagger -Oracle Open Office Impress : descriptions for objects -Oracle Open Office Impress : design mode after saving -Oracle Open Office Impress : design view -Oracle Open Office Impress : design view;creating forms -Oracle Open Office Impress : design view;queries/views (Base) -Oracle Open Office Impress : designing -Oracle Open Office Impress : designing;database tables -Oracle Open Office Impress : designing;fonts -Oracle Open Office Impress : designing;queries (Base) -Oracle Open Office Impress : detaching toolbars -Oracle Open Office Impress : dictionaries -Oracle Open Office Impress : dictionaries;common terms in simplified and traditional chinese -Oracle Open Office Impress : dictionaries;creating -Oracle Open Office Impress : dictionaries;editing user-defined -Oracle Open Office Impress : dictionaries;spellcheck -Oracle Open Office Impress : dictionaries, see also languages -Oracle Open Office Impress : digital signatures -Oracle Open Office Impress : digital signatures;getting/managing/applying -Oracle Open Office Impress : digital signatures;overview -Oracle Open Office Impress : digital signatures;WebDAV over HTTPS -Oracle Open Office Impress : dimension lines -Oracle Open Office Impress : dimension lines;drawing -Oracle Open Office Impress : dimension lines;properties of -Oracle Open Office Impress : direct formatting -Oracle Open Office Impress : direct formatting;undoing all -Oracle Open Office Impress : directories -Oracle Open Office Impress : directories;creating new -Oracle Open Office Impress : directories;directory structure -Oracle Open Office Impress : disabled persons -Oracle Open Office Impress : display qualities of presentations -Oracle Open Office Impress : displaying -Oracle Open Office Impress : displaying;comments (Calc) -Oracle Open Office Impress : displaying;comments in text documents -Oracle Open Office Impress : displaying;non-printing characters (Writer) -Oracle Open Office Impress : displaying;pictures and objects (Writer) -Oracle Open Office Impress : displaying;tables (Writer) -Oracle Open Office Impress : displaying;zero values (Calc) -Oracle Open Office Impress : distances -Oracle Open Office Impress : distinct values in SQL queries -Oracle Open Office Impress : distorting in drawings -Oracle Open Office Impress : distorting objects -Oracle Open Office Impress : distributing draw objects -Oracle Open Office Impress : distributing XML filters -Oracle Open Office Impress : docking -Oracle Open Office Impress : docking;definition -Oracle Open Office Impress : docking;toolbars -Oracle Open Office Impress : docking;windows -Oracle Open Office Impress : Document Converter Wizard -Oracle Open Office Impress : Document Map, see Navigator -Oracle Open Office Impress : document types in Oracle Open Office -Oracle Open Office Impress : documents -Oracle Open Office Impress : documents;changing titles -Oracle Open Office Impress : documents;closing -Oracle Open Office Impress : documents;comparing -Oracle Open Office Impress : documents;contents as lists -Oracle Open Office Impress : documents;editing time -Oracle Open Office Impress : documents;exporting -Oracle Open Office Impress : documents;importing -Oracle Open Office Impress : documents;languages -Oracle Open Office Impress : documents;measurement units in -Oracle Open Office Impress : documents;merging -Oracle Open Office Impress : documents;number of pages/tables/sheets -Oracle Open Office Impress : documents;opening -Oracle Open Office Impress : documents;opening in design mode -Oracle Open Office Impress : documents;opening with templates -Oracle Open Office Impress : documents;organizing -Oracle Open Office Impress : documents;printing -Oracle Open Office Impress : documents;read-only -Oracle Open Office Impress : documents;reloading -Oracle Open Office Impress : documents;saving -Oracle Open Office Impress : documents;saving automatically -Oracle Open Office Impress : documents;saving in other formats -Oracle Open Office Impress : documents;sending as e-mail -Oracle Open Office Impress : documents;styles changed -Oracle Open Office Impress : documents;version management -Oracle Open Office Impress : documents;version numbers -Oracle Open Office Impress : donut charts -Oracle Open Office Impress : dotted areas -Oracle Open Office Impress : double-line spacing in paragraphs -Oracle Open Office Impress : double-line writing in Asian layout -Oracle Open Office Impress : doubling draw objects -Oracle Open Office Impress : drag and drop -Oracle Open Office Impress : drag and drop;copying and pasting text -Oracle Open Office Impress : drag and drop;data source view -Oracle Open Office Impress : drag and drop;from Gallery to draw objects -Oracle Open Office Impress : drag and drop;overview -Oracle Open Office Impress : drag and drop;pictures -Oracle Open Office Impress : drag and drop;to Gallery -Oracle Open Office Impress : Draw instructions -Oracle Open Office Impress : draw objects -Oracle Open Office Impress : draw objects;adding/editing/copying -Oracle Open Office Impress : draw objects;anchoring -Oracle Open Office Impress : draw objects;arranging within stacks -Oracle Open Office Impress : draw objects;combining -Oracle Open Office Impress : draw objects;connecting lines to -Oracle Open Office Impress : draw objects;converting text to -Oracle Open Office Impress : draw objects;copying between documents -Oracle Open Office Impress : draw objects;cross-fading two objects -Oracle Open Office Impress : draw objects;displaying (Calc) -Oracle Open Office Impress : draw objects;dropping Gallery pictures -Oracle Open Office Impress : draw objects;duplicating -Oracle Open Office Impress : draw objects;flipping -Oracle Open Office Impress : draw objects;grouping -Oracle Open Office Impress : draw objects;legends -Oracle Open Office Impress : draw objects;positioning and resizing -Oracle Open Office Impress : draw objects;protecting -Oracle Open Office Impress : draw objects;rotating -Oracle Open Office Impress : draw objects;slanting -Oracle Open Office Impress : draw objects;text entry mode -Oracle Open Office Impress : draw objects;text in -Oracle Open Office Impress : drawing -Oracle Open Office Impress : drawing;3D objects -Oracle Open Office Impress : drawing;freeform lines -Oracle Open Office Impress : drawing;lines -Oracle Open Office Impress : drawing;sectors and segments -Oracle Open Office Impress : Drawing bar -Oracle Open Office Impress : drawing lines in text -Oracle Open Office Impress : drawings -Oracle Open Office Impress : drawings;creating/opening -Oracle Open Office Impress : drawings;languages -Oracle Open Office Impress : drawings;printing -Oracle Open Office Impress : drawings;printing defaults -Oracle Open Office Impress : drawings;printing in text documents -Oracle Open Office Impress : drawings;saving -Oracle Open Office Impress : drawings;saving automatically -Oracle Open Office Impress : drawings;saving in other formats -Oracle Open Office Impress : drawings;sending as e-mail -Oracle Open Office Impress : drawings;shortcut keys -Oracle Open Office Impress : drawings;showing (Writer) -Oracle Open Office Impress : drawings;zoom function in -Oracle Open Office Impress : drawings, see also draw objects -Oracle Open Office Impress : drop-down lists in form functions -Oracle Open Office Impress : duplicating draw objects -Oracle Open Office Impress : e-mail attachments -Oracle Open Office Impress : Edit File icon -Oracle Open Office Impress : edit mode -Oracle Open Office Impress : edit mode;after opening -Oracle Open Office Impress : edit mode;through Enter key (Calc) -Oracle Open Office Impress : Edit Points bar -Oracle Open Office Impress : editing -Oracle Open Office Impress : editing;chart axes -Oracle Open Office Impress : editing;chart data -Oracle Open Office Impress : editing;chart legends -Oracle Open Office Impress : editing;chart titles -Oracle Open Office Impress : editing;comments -Oracle Open Office Impress : editing;curves -Oracle Open Office Impress : editing;data binding of XForms -Oracle Open Office Impress : editing;database tables and queries -Oracle Open Office Impress : editing;draw objects -Oracle Open Office Impress : editing;fields -Oracle Open Office Impress : editing;Fontwork objects -Oracle Open Office Impress : editing;gradients -Oracle Open Office Impress : editing;guides and snap points -Oracle Open Office Impress : editing;hyperlinks -Oracle Open Office Impress : editing;menus -Oracle Open Office Impress : editing;objects -Oracle Open Office Impress : editing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Impress : editing;pictures -Oracle Open Office Impress : editing;reports -Oracle Open Office Impress : editing;shortcut keys -Oracle Open Office Impress : editing;slide titles -Oracle Open Office Impress : editing;tab stops -Oracle Open Office Impress : editing;templates -Oracle Open Office Impress : editing;titles -Oracle Open Office Impress : editing;toolbars -Oracle Open Office Impress : editing;undoing -Oracle Open Office Impress : editing;XForms -Oracle Open Office Impress : editing time of documents -Oracle Open Office Impress : editors -Oracle Open Office Impress : editors;formula editor -Oracle Open Office Impress : editors;ImageMap editor -Oracle Open Office Impress : effects -Oracle Open Office Impress : effects;animated slide transitions -Oracle Open Office Impress : effects;applying to/removing from objects -Oracle Open Office Impress : effects;font positions -Oracle Open Office Impress : effects;fonts -Oracle Open Office Impress : effects;Fontwork icons -Oracle Open Office Impress : effects;preview -Oracle Open Office Impress : effects;sounds -Oracle Open Office Impress : ellipses -Oracle Open Office Impress : ellipses;segments -Oracle Open Office Impress : ellipses;toolbars -Oracle Open Office Impress : empty documents -Oracle Open Office Impress : empty paragraph removal -Oracle Open Office Impress : encryption of contents -Oracle Open Office Impress : entering groups -Oracle Open Office Impress : entering text from right to left -Oracle Open Office Impress : equal sign, see also operators -Oracle Open Office Impress : equations in formula editor -Oracle Open Office Impress : error bars in charts -Oracle Open Office Impress : error indicators in charts -Oracle Open Office Impress : Error Report Tool -Oracle Open Office Impress : Euro -Oracle Open Office Impress : Euro;currency formats -Oracle Open Office Impress : Euro;Euro Converter Wizard -Oracle Open Office Impress : even/odd pages -Oracle Open Office Impress : even/odd pages;printing -Oracle Open Office Impress : events -Oracle Open Office Impress : events;assigning scripts -Oracle Open Office Impress : events;controls -Oracle Open Office Impress : events;customizing -Oracle Open Office Impress : events;in forms -Oracle Open Office Impress : Excel -Oracle Open Office Impress : Excel;saving as -Oracle Open Office Impress : Excel;search criteria -Oracle Open Office Impress : exceptions -Oracle Open Office Impress : exceptions;user-defined dictionaries -Oracle Open Office Impress : exchanging, see also replacing -Oracle Open Office Impress : executing SQL commands -Oracle Open Office Impress : exiting -Oracle Open Office Impress : exiting;by clicking objects -Oracle Open Office Impress : exiting;groups -Oracle Open Office Impress : exiting;Oracle Open Office -Oracle Open Office Impress : expanding -Oracle Open Office Impress : expanding;slides -Oracle Open Office Impress : expanding formatting (Calc) -Oracle Open Office Impress : explorer of data sources -Oracle Open Office Impress : export filters -Oracle Open Office Impress : exporting -Oracle Open Office Impress : exporting;animations to GIF format -Oracle Open Office Impress : exporting;bitmaps -Oracle Open Office Impress : exporting;HTML and text documents -Oracle Open Office Impress : exporting;Microsoft Office documents with VBA code -Oracle Open Office Impress : exporting;presentations to HTML -Oracle Open Office Impress : exporting;spreadsheets to text format -Oracle Open Office Impress : exporting;templates -Oracle Open Office Impress : exporting;to foreign formats -Oracle Open Office Impress : exporting;to HTML -Oracle Open Office Impress : exporting;to Macromedia Flash format -Oracle Open Office Impress : exporting;to Microsoft Office formats -Oracle Open Office Impress : exporting;to PDF -Oracle Open Office Impress : exporting;to PostScript format -Oracle Open Office Impress : exporting;to XML -Oracle Open Office Impress : exporting;XML files -Oracle Open Office Impress : extended tips in Help -Oracle Open Office Impress : extension mode in text -Oracle Open Office Impress : extensions -Oracle Open Office Impress : extensions;Extension Manager -Oracle Open Office Impress : extensions;file formats -Oracle Open Office Impress : external keys (Base) -Oracle Open Office Impress : extrusion objects -Oracle Open Office Impress : eyedropper tool -Oracle Open Office Impress : faster printing -Oracle Open Office Impress : faxes -Oracle Open Office Impress : faxes;configuring Oracle Open Office -Oracle Open Office Impress : faxes;fax programs/fax printers under UNIX -Oracle Open Office Impress : faxes;selecting a fax machine -Oracle Open Office Impress : faxes;sending -Oracle Open Office Impress : faxes;wizards -Oracle Open Office Impress : feedback -Oracle Open Office Impress : feedback;automatically -Oracle Open Office Impress : fields -Oracle Open Office Impress : fields;authors -Oracle Open Office Impress : fields;database tables -Oracle Open Office Impress : fields;dates (fixed) -Oracle Open Office Impress : fields;dates (variable) -Oracle Open Office Impress : fields;displaying field codes (Writer) -Oracle Open Office Impress : fields;editing -Oracle Open Office Impress : fields;file names -Oracle Open Office Impress : fields;formatted fields -Oracle Open Office Impress : fields;formatting -Oracle Open Office Impress : fields;in slides -Oracle Open Office Impress : fields;page numbers -Oracle Open Office Impress : fields;times (fixed) -Oracle Open Office Impress : fields;times (variable) -Oracle Open Office Impress : fields;updating automatically (Writer) -Oracle Open Office Impress : file associations for Microsoft Office -Oracle Open Office Impress : file filters -Oracle Open Office Impress : file filters;mobile devices -Oracle Open Office Impress : file filters;XML -Oracle Open Office Impress : file formats -Oracle Open Office Impress : file formats;changing Oracle Open Office defaults -Oracle Open Office Impress : file formats;OpenDocument/XML -Oracle Open Office Impress : file formats;saving always in other formats -Oracle Open Office Impress : file selection button -Oracle Open Office Impress : file sharing options for current document -Oracle Open Office Impress : files -Oracle Open Office Impress : files;filters and formats -Oracle Open Office Impress : files;importing -Oracle Open Office Impress : files;inserting -Oracle Open Office Impress : files;inserting pictures -Oracle Open Office Impress : files;opening -Oracle Open Office Impress : files;properties -Oracle Open Office Impress : files;saving -Oracle Open Office Impress : files;saving automatically -Oracle Open Office Impress : files;saving in other formats -Oracle Open Office Impress : files;sending as e-mail -Oracle Open Office Impress : files;version numbers -Oracle Open Office Impress : files and folders in Oracle Open Office -Oracle Open Office Impress : fill characters with tabulators -Oracle Open Office Impress : fill colors for areas -Oracle Open Office Impress : fill format mode -Oracle Open Office Impress : fill format mode;styles -Oracle Open Office Impress : fill patterns for areas -Oracle Open Office Impress : filter conditions -Oracle Open Office Impress : filter conditions;connecting -Oracle Open Office Impress : filter conditions;in queries (Base) -Oracle Open Office Impress : filtering -Oracle Open Office Impress : filtering;data in databases -Oracle Open Office Impress : filtering;data in forms -Oracle Open Office Impress : filters -Oracle Open Office Impress : filters;comparison operators -Oracle Open Office Impress : filters;for import and export -Oracle Open Office Impress : filters;Navigator -Oracle Open Office Impress : filters;pictures -Oracle Open Office Impress : filters;XML filter settings -Oracle Open Office Impress : Find tab in Help -Oracle Open Office Impress : finding -Oracle Open Office Impress : finding;in all sheets -Oracle Open Office Impress : finding;records in form documents -Oracle Open Office Impress : finding;selections -Oracle Open Office Impress : finding;similarity search -Oracle Open Office Impress : fitting to pages -Oracle Open Office Impress : fitting to pages;individual slides -Oracle Open Office Impress : fitting to pages;print settings in Math -Oracle Open Office Impress : fitting to pages;print settings in presentations -Oracle Open Office Impress : fixed text -Oracle Open Office Impress : fixed text;form functions -Oracle Open Office Impress : fixing toolbars -Oracle Open Office Impress : flipping around a flip line -Oracle Open Office Impress : flipping draw objects -Oracle Open Office Impress : floating frames in HTML documents -Oracle Open Office Impress : floating text -Oracle Open Office Impress : floating toolbars -Oracle Open Office Impress : flowcharts -Oracle Open Office Impress : focus of controls -Oracle Open Office Impress : folder creation -Oracle Open Office Impress : font lists -Oracle Open Office Impress : font name box -Oracle Open Office Impress : font sizes -Oracle Open Office Impress : font sizes;bullets -Oracle Open Office Impress : font sizes;relative changes -Oracle Open Office Impress : font sizes;scaling on screen -Oracle Open Office Impress : font sizes;text -Oracle Open Office Impress : fonts -Oracle Open Office Impress : fonts;adding under UNIX -Oracle Open Office Impress : fonts;changing in templates -Oracle Open Office Impress : fonts;colors -Oracle Open Office Impress : fonts;default settings -Oracle Open Office Impress : fonts;effects -Oracle Open Office Impress : fonts;for HTML and Basic -Oracle Open Office Impress : fonts;formats -Oracle Open Office Impress : fonts;outlines -Oracle Open Office Impress : fonts;positions in text -Oracle Open Office Impress : fonts;shadows -Oracle Open Office Impress : fonts;specifying several -Oracle Open Office Impress : fonts;strikethrough -Oracle Open Office Impress : fonts;styles -Oracle Open Office Impress : fonts;text objects -Oracle Open Office Impress : Fontwork icons -Oracle Open Office Impress : footers -Oracle Open Office Impress : footers;backgrounds -Oracle Open Office Impress : footers;slide masters -Oracle Open Office Impress : footers;slides -Oracle Open Office Impress : form controls -Oracle Open Office Impress : form controls;assigning macros -Oracle Open Office Impress : form controls;protecting -Oracle Open Office Impress : form controls;toolbars -Oracle Open Office Impress : form fields -Oracle Open Office Impress : form filters -Oracle Open Office Impress : Form Navigator -Oracle Open Office Impress : format codes -Oracle Open Office Impress : format codes;numbers -Oracle Open Office Impress : format filling printing in Oracle Open Office Math -Oracle Open Office Impress : Format Paintbrush -Oracle Open Office Impress : formats -Oracle Open Office Impress : formats;Asian layout -Oracle Open Office Impress : formats;fonts -Oracle Open Office Impress : formats;maximizing page formats -Oracle Open Office Impress : formats;number and currency formats -Oracle Open Office Impress : formats;of currencies/date/time -Oracle Open Office Impress : formats;on opening and saving -Oracle Open Office Impress : formats;pasting in special formats -Oracle Open Office Impress : formats;positions -Oracle Open Office Impress : formats;tabulators -Oracle Open Office Impress : formatted fields -Oracle Open Office Impress : formatted fields;form functions -Oracle Open Office Impress : formatted fields;properties -Oracle Open Office Impress : formatting -Oracle Open Office Impress : formatting;Asian typography -Oracle Open Office Impress : formatting;axes in charts -Oracle Open Office Impress : formatting;chart areas -Oracle Open Office Impress : formatting;chart floors -Oracle Open Office Impress : formatting;chart legends -Oracle Open Office Impress : formatting;chart titles -Oracle Open Office Impress : formatting;chart walls -Oracle Open Office Impress : formatting;copying -Oracle Open Office Impress : formatting;definition -Oracle Open Office Impress : formatting;expanding (Calc) -Oracle Open Office Impress : formatting;fields -Oracle Open Office Impress : formatting;font effects -Oracle Open Office Impress : formatting;hyperlinks -Oracle Open Office Impress : formatting;pages -Oracle Open Office Impress : formatting;printer metrics (Writer) -Oracle Open Office Impress : formatting;slides -Oracle Open Office Impress : formatting;slides headings -Oracle Open Office Impress : formatting;undoing -Oracle Open Office Impress : formatting;undoing when writing -Oracle Open Office Impress : forms -Oracle Open Office Impress : forms;browsing -Oracle Open Office Impress : forms;Combo Box/List Box Wizard -Oracle Open Office Impress : forms;creating -Oracle Open Office Impress : forms;data -Oracle Open Office Impress : forms;designing (Base) -Oracle Open Office Impress : forms;events -Oracle Open Office Impress : forms;filtering data -Oracle Open Office Impress : forms;finding records -Oracle Open Office Impress : forms;focus after opening -Oracle Open Office Impress : forms;general information (Base) -Oracle Open Office Impress : forms;grouping controls -Oracle Open Office Impress : forms;HTML filters -Oracle Open Office Impress : forms;inserting -Oracle Open Office Impress : forms;Navigator -Oracle Open Office Impress : forms;opening in design mode -Oracle Open Office Impress : forms;properties -Oracle Open Office Impress : forms;sorting data -Oracle Open Office Impress : forms;subforms -Oracle Open Office Impress : forms;wizards -Oracle Open Office Impress : forms;XForms -Oracle Open Office Impress : formula texts -Oracle Open Office Impress : formula texts;printing in Oracle Open Office Math -Oracle Open Office Impress : formulas -Oracle Open Office Impress : formulas;new -Oracle Open Office Impress : formulas;starting formula editor -Oracle Open Office Impress : formulas in reports -Oracle Open Office Impress : formulas in reports;editing -Oracle Open Office Impress : forums and support -Oracle Open Office Impress : frames -Oracle Open Office Impress : frames;around paragraphs -Oracle Open Office Impress : frames;around tables -Oracle Open Office Impress : frames;AutoCorrect function -Oracle Open Office Impress : frames;backgrounds -Oracle Open Office Impress : frames;captions (Writer) -Oracle Open Office Impress : frames;printing in Oracle Open Office Math -Oracle Open Office Impress : frames;protecting -Oracle Open Office Impress : frames;selection frames -Oracle Open Office Impress : frames;text fitting to frames -Oracle Open Office Impress : freeform lines -Oracle Open Office Impress : freeform lines;draw functions -Oracle Open Office Impress : freeform lines;drawing -Oracle Open Office Impress : FTP -Oracle Open Office Impress : FTP;opening documents -Oracle Open Office Impress : FTP;saving documents -Oracle Open Office Impress : full joins (Base) -Oracle Open Office Impress : full screen view -Oracle Open Office Impress : full-text search in Help -Oracle Open Office Impress : functions in reports -Oracle Open Office Impress : functions in reports;editing -Oracle Open Office Impress : Gallery -Oracle Open Office Impress : Gallery;adding pictures -Oracle Open Office Impress : Gallery;dragging pictures to draw objects -Oracle Open Office Impress : Gallery;hiding/showing -Oracle Open Office Impress : Gallery;inserting pictures from -Oracle Open Office Impress : geometric forms -Oracle Open Office Impress : get method for form transmissions -Oracle Open Office Impress : getting support -Oracle Open Office Impress : GIF format -Oracle Open Office Impress : GIF images -Oracle Open Office Impress : GIF images;animating -Oracle Open Office Impress : GIF images;replacing colors -Oracle Open Office Impress : glossaries -Oracle Open Office Impress : glossaries;common terms -Oracle Open Office Impress : glossaries;Internet terms -Oracle Open Office Impress : glue points -Oracle Open Office Impress : glue points;using -Oracle Open Office Impress : gradients -Oracle Open Office Impress : gradients;applying and defining -Oracle Open Office Impress : gradients;defining colors -Oracle Open Office Impress : gradients;loading lists -Oracle Open Office Impress : gradients;transparent -Oracle Open Office Impress : gradients off for faster printing -Oracle Open Office Impress : graphic objects, see draw objects -Oracle Open Office Impress : graphical text art -Oracle Open Office Impress : graphics -Oracle Open Office Impress : graphics;cache -Oracle Open Office Impress : graphics;protecting -Oracle Open Office Impress : graphics, see also pictures -Oracle Open Office Impress : grayscale display -Oracle Open Office Impress : grayscale printing -Oracle Open Office Impress : grid controls -Oracle Open Office Impress : grid controls;form functions -Oracle Open Office Impress : grids -Oracle Open Office Impress : grids;defaults (Writer/Calc) -Oracle Open Office Impress : grids;display options (Impress/Draw) -Oracle Open Office Impress : grids;displaying lines (Calc) -Oracle Open Office Impress : grids;formatting axes -Oracle Open Office Impress : grids;inserting in charts -Oracle Open Office Impress : group box creation -Oracle Open Office Impress : grouping -Oracle Open Office Impress : grouping;draw objects -Oracle Open Office Impress : groups -Oracle Open Office Impress : groups;entering/exiting/ungrouping -Oracle Open Office Impress : groups;naming -Oracle Open Office Impress : groups;of controls -Oracle Open Office Impress : guides -Oracle Open Office Impress : guides;display options (Impress/Draw) -Oracle Open Office Impress : guides;displaying when moving objects (Impress) -Oracle Open Office Impress : guides;editing -Oracle Open Office Impress : guides;inserting -Oracle Open Office Impress : guides;show snap lines icon -Oracle Open Office Impress : guides;showing (Calc) -Oracle Open Office Impress : guides;showing when moving frames (Writer) -Oracle Open Office Impress : gutter -Oracle Open Office Impress : half-spheres -Oracle Open Office Impress : hand icon for moving slides -Oracle Open Office Impress : handles -Oracle Open Office Impress : handles;displaying (Writer) -Oracle Open Office Impress : handles;large -Oracle Open Office Impress : handles;scaling -Oracle Open Office Impress : handles;showing simple/large handles (Calc) -Oracle Open Office Impress : handles;simple -Oracle Open Office Impress : handout printing -Oracle Open Office Impress : Hangul/Hanja -Oracle Open Office Impress : hatching -Oracle Open Office Impress : hatching -Oracle Open Office Impress : hatching;loading lists -Oracle Open Office Impress : headers -Oracle Open Office Impress : headers;backgrounds -Oracle Open Office Impress : headers and footers -Oracle Open Office Impress : headers and footers;master layouts -Oracle Open Office Impress : headers and footers;slide masters -Oracle Open Office Impress : headers and footers;slides -Oracle Open Office Impress : headings -Oracle Open Office Impress : headings;entering as text box -Oracle Open Office Impress : Hebrew -Oracle Open Office Impress : Hebrew;entering text -Oracle Open Office Impress : Hebrew;language settings -Oracle Open Office Impress : Help -Oracle Open Office Impress : Help;bookmarks -Oracle Open Office Impress : Help;extended tips on/off -Oracle Open Office Impress : Help;full-text search -Oracle Open Office Impress : Help;Help tips -Oracle Open Office Impress : Help;keywords -Oracle Open Office Impress : Help;navigation pane showing/hiding -Oracle Open Office Impress : Help;style sheets -Oracle Open Office Impress : Help;topics -Oracle Open Office Impress : Help Agent -Oracle Open Office Impress : Help Agent;help -Oracle Open Office Impress : Help Agent;options -Oracle Open Office Impress : Help tips -Oracle Open Office Impress : Help tips;hiding -Oracle Open Office Impress : hidden controls in Form Navigator -Oracle Open Office Impress : hidden fields display (Writer) -Oracle Open Office Impress : hidden pages -Oracle Open Office Impress : hidden pages;printing in presentations -Oracle Open Office Impress : hidden pages;showing -Oracle Open Office Impress : hidden text -Oracle Open Office Impress : hidden text;showing (Writer) -Oracle Open Office Impress : hiding -Oracle Open Office Impress : hiding;changes -Oracle Open Office Impress : hiding;chart legends -Oracle Open Office Impress : hiding;docked windows -Oracle Open Office Impress : hiding;layers -Oracle Open Office Impress : hiding;levels -Oracle Open Office Impress : hiding;navigation pane in Help window -Oracle Open Office Impress : hiding;slides -Oracle Open Office Impress : hiding;subpoints -Oracle Open Office Impress : high contrast mode -Oracle Open Office Impress : Hindi -Oracle Open Office Impress : Hindi;entering text -Oracle Open Office Impress : Hindi;language settings -Oracle Open Office Impress : horizontal scrollbars (Writer) -Oracle Open Office Impress : hot spots in flowcharts -Oracle Open Office Impress : hotspots -Oracle Open Office Impress : HowTos for charts -Oracle Open Office Impress : Howtos for Draw -Oracle Open Office Impress : HTML -Oracle Open Office Impress : HTML;definition -Oracle Open Office Impress : HTML;export character set -Oracle Open Office Impress : HTML;exporting from presentations -Oracle Open Office Impress : HTML;fonts for source display -Oracle Open Office Impress : HTML;importing into presentations -Oracle Open Office Impress : HTML;importing META tags -Oracle Open Office Impress : HTML;inserting files -Oracle Open Office Impress : HTML;live presentations -Oracle Open Office Impress : HTML documents -Oracle Open Office Impress : HTML documents;auto reloading -Oracle Open Office Impress : HTML documents;importing/exporting -Oracle Open Office Impress : HTML documents;META tags in -Oracle Open Office Impress : HTML documents;new -Oracle Open Office Impress : HTML documents;source text -Oracle Open Office Impress : hyperlinks -Oracle Open Office Impress : hyperlinks;assigning macros -Oracle Open Office Impress : hyperlinks;character formats -Oracle Open Office Impress : hyperlinks;definition -Oracle Open Office Impress : hyperlinks;deleting -Oracle Open Office Impress : hyperlinks;editing -Oracle Open Office Impress : hyperlinks;inserting -Oracle Open Office Impress : hyperlinks;relative and absolute -Oracle Open Office Impress : hyperlinks;turning off automatic recognition -Oracle Open Office Impress : hyperlinks, see also links -Oracle Open Office Impress : hyphenation -Oracle Open Office Impress : hyphenation;activating for a language -Oracle Open Office Impress : hyphenation;minimal number of characters -Oracle Open Office Impress : hyphens -Oracle Open Office Impress : hyphens;displaying custom (Writer) -Oracle Open Office Impress : hyphens;inserting custom -Oracle Open Office Impress : icon bars, see toolbars -Oracle Open Office Impress : icon sizes -Oracle Open Office Impress : ignore list for spellcheck -Oracle Open Office Impress : illumination -Oracle Open Office Impress : illumination;3D charts -Oracle Open Office Impress : illustrations, see pictures -Oracle Open Office Impress : image button creation -Oracle Open Office Impress : image control creation -Oracle Open Office Impress : ImageMap -Oracle Open Office Impress : ImageMap;definition -Oracle Open Office Impress : ImageMap;editor -Oracle Open Office Impress : images -Oracle Open Office Impress : images;ImageMap -Oracle Open Office Impress : images;inserting -Oracle Open Office Impress : images;inserting and editing bitmaps -Oracle Open Office Impress : images, see also pictures -Oracle Open Office Impress : IME -Oracle Open Office Impress : IME;definition -Oracle Open Office Impress : IME;showing/hiding -Oracle Open Office Impress : import filters -Oracle Open Office Impress : import restrictions for Microsoft Office -Oracle Open Office Impress : importing -Oracle Open Office Impress : importing;bitmaps -Oracle Open Office Impress : importing;compatibility settings for text import -Oracle Open Office Impress : importing;databases -Oracle Open Office Impress : importing;documents in other formats -Oracle Open Office Impress : importing;from XML -Oracle Open Office Impress : importing;HTML and text documents -Oracle Open Office Impress : importing;HTML with META tags -Oracle Open Office Impress : importing;Microsoft Office documents with VBA code -Oracle Open Office Impress : importing;presentations with HTML -Oracle Open Office Impress : importing;tables in text format -Oracle Open Office Impress : importing;templates -Oracle Open Office Impress : improvement program -Oracle Open Office Impress : in front of object command -Oracle Open Office Impress : inches -Oracle Open Office Impress : including spreadsheets -Oracle Open Office Impress : increasing sizes of views -Oracle Open Office Impress : Index tab in Help -Oracle Open Office Impress : indexes -Oracle Open Office Impress : indexes;backgrounds -Oracle Open Office Impress : indexes;showing/hiding Help index tab -Oracle Open Office Impress : indicator lines in text -Oracle Open Office Impress : inner joins (Base) -Oracle Open Office Impress : input method window -Oracle Open Office Impress : insert mode for entering text -Oracle Open Office Impress : inserting -Oracle Open Office Impress : inserting;3D objects -Oracle Open Office Impress : inserting;arrows -Oracle Open Office Impress : inserting;buttons in toolbars -Oracle Open Office Impress : inserting;callouts in presentations -Oracle Open Office Impress : inserting;cell ranges from spreadsheets -Oracle Open Office Impress : inserting;charts -Oracle Open Office Impress : inserting;clipboard options -Oracle Open Office Impress : inserting;columns -Oracle Open Office Impress : inserting;comments -Oracle Open Office Impress : inserting;data from text documents -Oracle Open Office Impress : inserting;datasource records in spreadsheets -Oracle Open Office Impress : inserting;drawings -Oracle Open Office Impress : inserting;ellipses -Oracle Open Office Impress : inserting;files -Oracle Open Office Impress : inserting;floating frames -Oracle Open Office Impress : inserting;Fontwork objects -Oracle Open Office Impress : inserting;form fields -Oracle Open Office Impress : inserting;headers/footers in all slides -Oracle Open Office Impress : inserting;hyperlinks -Oracle Open Office Impress : inserting;layers -Oracle Open Office Impress : inserting;line breaks in cells -Oracle Open Office Impress : inserting;lines -Oracle Open Office Impress : inserting;movies/sounds -Oracle Open Office Impress : inserting;new text tables defaults -Oracle Open Office Impress : inserting;objects from files -Oracle Open Office Impress : inserting;objects from Gallery -Oracle Open Office Impress : inserting;OLE objects -Oracle Open Office Impress : inserting;paragraph borders -Oracle Open Office Impress : inserting;paragraph bullets -Oracle Open Office Impress : inserting;pictures -Oracle Open Office Impress : inserting;pictures in Gallery -Oracle Open Office Impress : inserting;plug-ins -Oracle Open Office Impress : inserting;polygons -Oracle Open Office Impress : inserting;push buttons -Oracle Open Office Impress : inserting;rectangles -Oracle Open Office Impress : inserting;rows -Oracle Open Office Impress : inserting;slides -Oracle Open Office Impress : inserting;slides as links -Oracle Open Office Impress : inserting;slides from files -Oracle Open Office Impress : inserting;special characters -Oracle Open Office Impress : inserting;tab stops -Oracle Open Office Impress : inserting;text frames -Oracle Open Office Impress : inserting;text in presentations -Oracle Open Office Impress : inserting;textures on chart bars -Oracle Open Office Impress : installing -Oracle Open Office Impress : installing;ActiveX control -Oracle Open Office Impress : installing;mobile device filters -Oracle Open Office Impress : installing;UNO components -Oracle Open Office Impress : installing;XML filters -Oracle Open Office Impress : instructions -Oracle Open Office Impress : instructions;general -Oracle Open Office Impress : instructions;Oracle Open Office Draw -Oracle Open Office Impress : instructions;Oracle Open Office Impress -Oracle Open Office Impress : interactions -Oracle Open Office Impress : interactions;hot spots -Oracle Open Office Impress : interactions;objects in interactive presentations -Oracle Open Office Impress : interactions;preview -Oracle Open Office Impress : Internet -Oracle Open Office Impress : Internet;checking for updates -Oracle Open Office Impress : Internet;Internet Explorer for displaying Oracle Open Office documents -Oracle Open Office Impress : Internet;presentations -Oracle Open Office Impress : Internet;starting searches -Oracle Open Office Impress : Internet glossary -Oracle Open Office Impress : intersecting draw objects -Oracle Open Office Impress : invert filter -Oracle Open Office Impress : invisible areas -Oracle Open Office Impress : italic text -Oracle Open Office Impress : iterative references in spreadsheets -Oracle Open Office Impress : Java -Oracle Open Office Impress : Java;definition -Oracle Open Office Impress : Java;setting options -Oracle Open Office Impress : JDBC -Oracle Open Office Impress : JDBC;databases (Base) -Oracle Open Office Impress : JDBC;definition -Oracle Open Office Impress : joining -Oracle Open Office Impress : joining;3D objects -Oracle Open Office Impress : joining;paragraphs -Oracle Open Office Impress : joining;tables (Base) -Oracle Open Office Impress : joins in databases (Base) -Oracle Open Office Impress : justifying text -Oracle Open Office Impress : kerning -Oracle Open Office Impress : kerning;Asian texts -Oracle Open Office Impress : kerning;definition -Oracle Open Office Impress : kerning;in characters -Oracle Open Office Impress : key fields for relations (Base) -Oracle Open Office Impress : keyboard -Oracle Open Office Impress : keyboard;assigning/editing shortcut keys -Oracle Open Office Impress : keyboard;general commands -Oracle Open Office Impress : keyboard;removing numbering -Oracle Open Office Impress : keyboard;zooming -Oracle Open Office Impress : keys -Oracle Open Office Impress : keys;adding push buttons -Oracle Open Office Impress : keys;primary keys (Base) -Oracle Open Office Impress : kiosk export -Oracle Open Office Impress : labels -Oracle Open Office Impress : labels;creating and synchronizing -Oracle Open Office Impress : labels;for charts -Oracle Open Office Impress : labels;for draw objects -Oracle Open Office Impress : labels;form functions -Oracle Open Office Impress : labels;from databases -Oracle Open Office Impress : labels, see also names/callouts -Oracle Open Office Impress : languages -Oracle Open Office Impress : languages;activating modules -Oracle Open Office Impress : languages;Asian support -Oracle Open Office Impress : languages;complex text layout -Oracle Open Office Impress : languages;locale settings -Oracle Open Office Impress : languages;selecting for text -Oracle Open Office Impress : languages;setting options -Oracle Open Office Impress : languages;spellcheck -Oracle Open Office Impress : languages;spellchecking and formatting -Oracle Open Office Impress : large handles (Writer) -Oracle Open Office Impress : large icons -Oracle Open Office Impress : layer arrangement -Oracle Open Office Impress : layers -Oracle Open Office Impress : layers;definition -Oracle Open Office Impress : layers;deleting -Oracle Open Office Impress : layers;inserting and editing -Oracle Open Office Impress : layers;moving objects -Oracle Open Office Impress : layers;renaming -Oracle Open Office Impress : layers;working with -Oracle Open Office Impress : layout -Oracle Open Office Impress : layout;importing Word documents -Oracle Open Office Impress : layout;pages -Oracle Open Office Impress : layout;printing handouts -Oracle Open Office Impress : LDAP server -Oracle Open Office Impress : LDAP server;address books (Base) -Oracle Open Office Impress : LDAP server;sign on options -Oracle Open Office Impress : leading between paragraphs -Oracle Open Office Impress : left alignment of paragraphs -Oracle Open Office Impress : left joins (Base) -Oracle Open Office Impress : legends -Oracle Open Office Impress : legends;charts -Oracle Open Office Impress : legends;draw objects -Oracle Open Office Impress : legends;drawings -Oracle Open Office Impress : legends;rounding corners -Oracle Open Office Impress : Letter Wizard -Oracle Open Office Impress : levels -Oracle Open Office Impress : levels;depth stagger -Oracle Open Office Impress : levels;hiding -Oracle Open Office Impress : levels;macro security -Oracle Open Office Impress : levels;showing -Oracle Open Office Impress : limits of tables (Writer) -Oracle Open Office Impress : line breaks -Oracle Open Office Impress : line breaks;in cells -Oracle Open Office Impress : line charts -Oracle Open Office Impress : line spacing -Oracle Open Office Impress : line spacing;context menu in paragraphs -Oracle Open Office Impress : line spacing;paragraph -Oracle Open Office Impress : line styles -Oracle Open Office Impress : line styles;applying -Oracle Open Office Impress : line styles;defining -Oracle Open Office Impress : line styles;loading -Oracle Open Office Impress : lines -Oracle Open Office Impress : lines;about line ends -Oracle Open Office Impress : lines;connecting objects -Oracle Open Office Impress : lines;defining ends -Oracle Open Office Impress : lines;draw functions -Oracle Open Office Impress : lines;drawing -Oracle Open Office Impress : lines;drawing in text -Oracle Open Office Impress : lines;editing points -Oracle Open Office Impress : lines;inserting -Oracle Open Office Impress : lines;removing automatic lines -Oracle Open Office Impress : lines of text -Oracle Open Office Impress : lines of text;alignment -Oracle Open Office Impress : links -Oracle Open Office Impress : links;between cells and controls -Oracle Open Office Impress : links;by drag and drop -Oracle Open Office Impress : links;character formats -Oracle Open Office Impress : links;definition -Oracle Open Office Impress : links;editing hyperlinks -Oracle Open Office Impress : links;inserting -Oracle Open Office Impress : links;modifying -Oracle Open Office Impress : links;opening files with -Oracle Open Office Impress : links;relational databases (Base) -Oracle Open Office Impress : links;turning off automatic recognition -Oracle Open Office Impress : links;updating options (Writer) -Oracle Open Office Impress : links;updating specific links -Oracle Open Office Impress : list box creation -Oracle Open Office Impress : lists -Oracle Open Office Impress : lists;animations -Oracle Open Office Impress : lists;data assigned to controls -Oracle Open Office Impress : lists;registered databases (Base) -Oracle Open Office Impress : lists;regular expressions -Oracle Open Office Impress : live presentations on the Internet -Oracle Open Office Impress : loading -Oracle Open Office Impress : loading;arrow and line styles -Oracle Open Office Impress : loading;colors/gradients/hatchings -Oracle Open Office Impress : loading;documents -Oracle Open Office Impress : loading;documents from other formats -Oracle Open Office Impress : loading;HTML documents, automatically -Oracle Open Office Impress : loading;Microsoft Office documents with VBA code -Oracle Open Office Impress : loading;reloading -Oracle Open Office Impress : loading;XML files -Oracle Open Office Impress : locale settings -Oracle Open Office Impress : locking layers -Oracle Open Office Impress : logarithmic scaling along axes -Oracle Open Office Impress : lowercase letters -Oracle Open Office Impress : lowercase letters;font effects -Oracle Open Office Impress : Macro Wizard (Base) -Oracle Open Office Impress : Macromedia Flash export -Oracle Open Office Impress : macros -Oracle Open Office Impress : macros;assigning to events in forms -Oracle Open Office Impress : macros;attaching new (Base) -Oracle Open Office Impress : macros;in MS Office documents -Oracle Open Office Impress : macros;interrupting -Oracle Open Office Impress : macros;organizing -Oracle Open Office Impress : macros;recording -Oracle Open Office Impress : macros;running in presentations -Oracle Open Office Impress : macros;security -Oracle Open Office Impress : macros;security levels -Oracle Open Office Impress : macros;security warning dialog -Oracle Open Office Impress : macros;selecting security warnings -Oracle Open Office Impress : magnetic lines in presentations -Oracle Open Office Impress : magnifiers -Oracle Open Office Impress : margins -Oracle Open Office Impress : margins;pages -Oracle Open Office Impress : margins;setting with the mouse -Oracle Open Office Impress : margins;shadows -Oracle Open Office Impress : marking changes -Oracle Open Office Impress : marking, see selecting -Oracle Open Office Impress : master layouts with headers and footers -Oracle Open Office Impress : master pages, see slide masters -Oracle Open Office Impress : master views -Oracle Open Office Impress : Math formula editor -Oracle Open Office Impress : mean value lines in charts -Oracle Open Office Impress : measurement units -Oracle Open Office Impress : measurement units;changing on rulers -Oracle Open Office Impress : measurement units;converting -Oracle Open Office Impress : measurement units;selecting -Oracle Open Office Impress : Media Player window -Oracle Open Office Impress : menus -Oracle Open Office Impress : menus;activating context menus -Oracle Open Office Impress : menus;assigning macros -Oracle Open Office Impress : menus;customizing -Oracle Open Office Impress : merging -Oracle Open Office Impress : merging;documents -Oracle Open Office Impress : merging;draw objects -Oracle Open Office Impress : META tags -Oracle Open Office Impress : metafiles -Oracle Open Office Impress : metafiles;converting to -Oracle Open Office Impress : metafiles;replacing colors -Oracle Open Office Impress : metrics -Oracle Open Office Impress : metrics;converting -Oracle Open Office Impress : metrics;document formatting (Writer) -Oracle Open Office Impress : metrics;in sheets -Oracle Open Office Impress : Microsoft Office -Oracle Open Office Impress : Microsoft Office;Access databases (base) -Oracle Open Office Impress : Microsoft Office;as default file format -Oracle Open Office Impress : Microsoft Office;document import restrictions -Oracle Open Office Impress : Microsoft Office;feature comparisons -Oracle Open Office Impress : Microsoft Office;importing password protected files -Oracle Open Office Impress : Microsoft Office;importing Word documents -Oracle Open Office Impress : Microsoft Office;importing/exporting VBA code -Oracle Open Office Impress : Microsoft Office;new users information -Oracle Open Office Impress : Microsoft Office;opening Microsoft documents -Oracle Open Office Impress : Microsoft Office;reassigning document types -Oracle Open Office Impress : migrating macros (Base) -Oracle Open Office Impress : mirroring objects -Oracle Open Office Impress : mobile device filters -Oracle Open Office Impress : models in XForms -Oracle Open Office Impress : modifying, see changing -Oracle Open Office Impress : more controls -Oracle Open Office Impress : mosaic filter -Oracle Open Office Impress : motion paths -Oracle Open Office Impress : mouse -Oracle Open Office Impress : mouse;pointers when using drag and drop -Oracle Open Office Impress : mouse;positioning -Oracle Open Office Impress : movies -Oracle Open Office Impress : moving -Oracle Open Office Impress : moving;between layers -Oracle Open Office Impress : moving;objects in slides -Oracle Open Office Impress : moving;tab stops on ruler -Oracle Open Office Impress : moving;toolbars -Oracle Open Office Impress : moving;using guide lines in presentations -Oracle Open Office Impress : MS ADO interface (Base) -Oracle Open Office Impress : multi-line titles in forms -Oracle Open Office Impress : multiple documents -Oracle Open Office Impress : multiple documents;opening -Oracle Open Office Impress : multiple monitors -Oracle Open Office Impress : multiple selection -Oracle Open Office Impress : multiplying draw objects -Oracle Open Office Impress : music -Oracle Open Office Impress : My Documents folder -Oracle Open Office Impress : My Documents folder;changing work directory -Oracle Open Office Impress : My Documents folder;opening -Oracle Open Office Impress : MySQL databases (Base) -Oracle Open Office Impress : names -Oracle Open Office Impress : names;multi-line titles -Oracle Open Office Impress : names;objects -Oracle Open Office Impress : names, see also labels/callouts -Oracle Open Office Impress : namespace organization in XForms -Oracle Open Office Impress : native SQL (Base) -Oracle Open Office Impress : navigating -Oracle Open Office Impress : navigating;in documents -Oracle Open Office Impress : Navigation bar -Oracle Open Office Impress : Navigation bar;controls -Oracle Open Office Impress : Navigation bar;forms -Oracle Open Office Impress : Navigator -Oracle Open Office Impress : Navigator;comments -Oracle Open Office Impress : Navigator;contents as lists -Oracle Open Office Impress : Navigator;docking -Oracle Open Office Impress : Navigator;presentations -Oracle Open Office Impress : Navigator;working with -Oracle Open Office Impress : net charts -Oracle Open Office Impress : network identity options -Oracle Open Office Impress : new databases -Oracle Open Office Impress : new documents -Oracle Open Office Impress : new lines in cells -Oracle Open Office Impress : new windows -Oracle Open Office Impress : non-breaking dashes -Oracle Open Office Impress : non-breaking spaces (Writer) -Oracle Open Office Impress : non-printing characters (Writer) -Oracle Open Office Impress : normal view -Oracle Open Office Impress : normal view;backgrounds -Oracle Open Office Impress : normal view;presentations -Oracle Open Office Impress : notes -Oracle Open Office Impress : notes;adding to slides -Oracle Open Office Impress : notes;default formatting -Oracle Open Office Impress : notes;printing in presentations -Oracle Open Office Impress : number formats -Oracle Open Office Impress : number formats;codes -Oracle Open Office Impress : number formats;formats -Oracle Open Office Impress : number formats;recognition in text tables -Oracle Open Office Impress : number of pages -Oracle Open Office Impress : number of sheets -Oracle Open Office Impress : number of tables -Oracle Open Office Impress : numbering -Oracle Open Office Impress : numbering;options -Oracle Open Office Impress : numbering;turning off -Oracle Open Office Impress : numbering;using automatically -Oracle Open Office Impress : numbers -Oracle Open Office Impress : numbers;date, time and currency formats -Oracle Open Office Impress : numerical fields in forms -Oracle Open Office Impress : object bars -Oracle Open Office Impress : object bars;editing glue points -Oracle Open Office Impress : objects -Oracle Open Office Impress : objects;aligning -Oracle Open Office Impress : objects;always moveable (Impress/Draw) -Oracle Open Office Impress : objects;arranging within stacks -Oracle Open Office Impress : objects;behind object command -Oracle Open Office Impress : objects;breaking connections -Oracle Open Office Impress : objects;copying when moving in presentations -Oracle Open Office Impress : objects;definition -Oracle Open Office Impress : objects;displaying in spreadsheets -Oracle Open Office Impress : objects;displaying in text documents -Oracle Open Office Impress : objects;editing -Oracle Open Office Impress : objects;effects -Oracle Open Office Impress : objects;in front of object command -Oracle Open Office Impress : objects;inserting from files -Oracle Open Office Impress : objects;inserting from Gallery -Oracle Open Office Impress : objects;inserting OLE objects -Oracle Open Office Impress : objects;moving along paths -Oracle Open Office Impress : objects;moving and resizing with mouse -Oracle Open Office Impress : objects;moving in layers -Oracle Open Office Impress : objects;moving in slides -Oracle Open Office Impress : objects;naming -Oracle Open Office Impress : objects;opening -Oracle Open Office Impress : objects;properties of charts -Oracle Open Office Impress : objects;quickly moving to -Oracle Open Office Impress : objects;reversing -Oracle Open Office Impress : objects;selecting -Oracle Open Office Impress : objects;titles and descriptions -Oracle Open Office Impress : objects;with attributes -Oracle Open Office Impress : ODBC -Oracle Open Office Impress : ODBC;database (Base) -Oracle Open Office Impress : ODBC;definition -Oracle Open Office Impress : ODF file formats -Oracle Open Office Impress : Office -Oracle Open Office Impress : Office;Microsoft Office and Oracle Open Office -Oracle Open Office Impress : OLE -Oracle Open Office Impress : OLE;definition -Oracle Open Office Impress : OLE objects -Oracle Open Office Impress : OLE objects;arranging within stacks -Oracle Open Office Impress : OLE objects;captions (Writer) -Oracle Open Office Impress : OLE objects;inserting -Oracle Open Office Impress : OLE objects;number of -Oracle Open Office Impress : OLE objects;protecting -Oracle Open Office Impress : one and a half line spacing in text -Oracle Open Office Impress : online feedback options -Oracle Open Office Impress : online registration -Oracle Open Office Impress : online update options -Oracle Open Office Impress : online updates -Oracle Open Office Impress : online updates;checking automatically -Oracle Open Office Impress : online updates;checking manually -Oracle Open Office Impress : OpenDocument file formats -Oracle Open Office Impress : OpenGL -Oracle Open Office Impress : OpenGL;definition -Oracle Open Office Impress : opening -Oracle Open Office Impress : opening;context menus -Oracle Open Office Impress : opening;database files -Oracle Open Office Impress : opening;dialog settings -Oracle Open Office Impress : opening;documents -Oracle Open Office Impress : opening;documents from other formats -Oracle Open Office Impress : opening;documents on WebDAV server -Oracle Open Office Impress : opening;files with links -Oracle Open Office Impress : opening;files, with placeholders -Oracle Open Office Impress : opening;forms -Oracle Open Office Impress : opening;Microsoft Office files -Oracle Open Office Impress : opening;mobile device documents -Oracle Open Office Impress : opening;objects -Oracle Open Office Impress : opening;reports -Oracle Open Office Impress : opening;several files -Oracle Open Office Impress : opening;XForms -Oracle Open Office Impress : operators -Oracle Open Office Impress : operators;default filters -Oracle Open Office Impress : optional hyphens (Writer) -Oracle Open Office Impress : options -Oracle Open Office Impress : options;accessibility -Oracle Open Office Impress : options;appearance -Oracle Open Office Impress : options;compatibility (Writer) -Oracle Open Office Impress : options;improvement program -Oracle Open Office Impress : options;network identity -Oracle Open Office Impress : options;online update -Oracle Open Office Impress : options;tools -Oracle Open Office Impress : Oracle databases (base) -Oracle Open Office Impress : Oracle Open Office Base data sources -Oracle Open Office Impress : Oracle Open Office Basic scripts in HTML documents -Oracle Open Office Impress : Oracle Open Office documents -Oracle Open Office Impress : Oracle Open Office documents;mobile device filters -Oracle Open Office Impress : Oracle Open Office documents;viewing and editing in Internet Explorer -Oracle Open Office Impress : Oracle Open Office Impress instructions -Oracle Open Office Impress : Oracle Open Office Math start -Oracle Open Office Impress : order of chart data -Oracle Open Office Impress : ordering -Oracle Open Office Impress : ordering;objects -Oracle Open Office Impress : ordering;slides -Oracle Open Office Impress : ordinal numbers -Oracle Open Office Impress : ordinal numbers;replacing -Oracle Open Office Impress : organization charts -Oracle Open Office Impress : organizing -Oracle Open Office Impress : organizing;macros and scripts -Oracle Open Office Impress : organizing;namespaces in XForms -Oracle Open Office Impress : organizing;styles -Oracle Open Office Impress : organizing;templates -Oracle Open Office Impress : origin of rulers -Oracle Open Office Impress : original size -Oracle Open Office Impress : original size;printing in Oracle Open Office Math -Oracle Open Office Impress : original size;restoring after cropping -Oracle Open Office Impress : outline view -Oracle Open Office Impress : outlines -Oracle Open Office Impress : outlines;font effects -Oracle Open Office Impress : outlines;outline symbols -Oracle Open Office Impress : outlines;printing -Oracle Open Office Impress : outlines;sending to presentations -Oracle Open Office Impress : overwrite mode -Oracle Open Office Impress : packages, see extensions -Oracle Open Office Impress : page breaks -Oracle Open Office Impress : page breaks;displaying (Calc) -Oracle Open Office Impress : page formats -Oracle Open Office Impress : page formats;maximizing -Oracle Open Office Impress : page formats;restriction -Oracle Open Office Impress : page number field -Oracle Open Office Impress : page numbers on all slides -Oracle Open Office Impress : page styles -Oracle Open Office Impress : page styles;editing/applying with statusbar -Oracle Open Office Impress : pages -Oracle Open Office Impress : pages;backgrounds in all applications -Oracle Open Office Impress : pages;copying -Oracle Open Office Impress : pages;fitting to printed pages -Oracle Open Office Impress : pages;formatting and numbering -Oracle Open Office Impress : pages;printing page names in presentations -Oracle Open Office Impress : pages;scaling -Oracle Open Office Impress : pages;selecting one to print -Oracle Open Office Impress : paint box -Oracle Open Office Impress : paint can symbol -Oracle Open Office Impress : pair kerning -Oracle Open Office Impress : Palm file filters -Oracle Open Office Impress : paper formats -Oracle Open Office Impress : paper size warning -Oracle Open Office Impress : paper trays -Oracle Open Office Impress : paragraph marks -Oracle Open Office Impress : paragraph marks;displaying (Writer) -Oracle Open Office Impress : paragraph styles -Oracle Open Office Impress : paragraph styles;languages -Oracle Open Office Impress : paragraph styles;modifying basic fonts -Oracle Open Office Impress : paragraphs -Oracle Open Office Impress : paragraphs;alignment -Oracle Open Office Impress : paragraphs;Asian typography -Oracle Open Office Impress : paragraphs;defining borders -Oracle Open Office Impress : paragraphs;hidden paragraphs (Writer) -Oracle Open Office Impress : paragraphs;increasing indents of -Oracle Open Office Impress : paragraphs;indents, margins and columns -Oracle Open Office Impress : paragraphs;inserting bullets -Oracle Open Office Impress : paragraphs;joining -Oracle Open Office Impress : paragraphs;numbering automatically -Oracle Open Office Impress : paragraphs;removing blank ones -Oracle Open Office Impress : paragraphs;spacing -Oracle Open Office Impress : paragraphs;tab stops -Oracle Open Office Impress : parameters -Oracle Open Office Impress : parameters;command line -Oracle Open Office Impress : parameters;queries (Base) -Oracle Open Office Impress : passwords for protecting contents -Oracle Open Office Impress : pasting -Oracle Open Office Impress : pasting;cell ranges -Oracle Open Office Impress : pasting;cell ranges from spreadsheets -Oracle Open Office Impress : pasting;data from text documents -Oracle Open Office Impress : pasting;draw objects -Oracle Open Office Impress : pasting;draw objects from other documents -Oracle Open Office Impress : pasting;formatted/unformatted text -Oracle Open Office Impress : pasting;from data source view -Oracle Open Office Impress : pasting;from data sources to Oracle Open Office Calc -Oracle Open Office Impress : pasting;pictures from other documents -Oracle Open Office Impress : pasting;sheet areas in text documents -Oracle Open Office Impress : pasting;slides from other presentations -Oracle Open Office Impress : pasting;text from other documents -Oracle Open Office Impress : pasting;to Gallery -Oracle Open Office Impress : paths -Oracle Open Office Impress : paths;changing work directory -Oracle Open Office Impress : paths;defaults -Oracle Open Office Impress : paths;moving objects along -Oracle Open Office Impress : pattern editor -Oracle Open Office Impress : pattern fields -Oracle Open Office Impress : pattern fields;form functions -Oracle Open Office Impress : patterns for objects -Oracle Open Office Impress : PDF -Oracle Open Office Impress : PDF;export -Oracle Open Office Impress : PDF;PostScript to PDF converter, UNIX -Oracle Open Office Impress : personal data input -Oracle Open Office Impress : phonetic guide -Oracle Open Office Impress : picklist creation -Oracle Open Office Impress : pictures -Oracle Open Office Impress : pictures;adding to Gallery -Oracle Open Office Impress : pictures;arranging within stacks -Oracle Open Office Impress : pictures;assigning macros -Oracle Open Office Impress : pictures;backgrounds -Oracle Open Office Impress : pictures;captions (Writer) -Oracle Open Office Impress : pictures;changing paths -Oracle Open Office Impress : pictures;cropping and zooming -Oracle Open Office Impress : pictures;displaying in Calc -Oracle Open Office Impress : pictures;displaying in Writer (Writer) -Oracle Open Office Impress : pictures;drag and drop between documents -Oracle Open Office Impress : pictures;drawing -Oracle Open Office Impress : pictures;editing -Oracle Open Office Impress : pictures;filters -Oracle Open Office Impress : pictures;ImageMap -Oracle Open Office Impress : pictures;inserting -Oracle Open Office Impress : pictures;inserting automatically -Oracle Open Office Impress : pictures;inserting from Gallery -Oracle Open Office Impress : pictures;number of -Oracle Open Office Impress : pictures;printing -Oracle Open Office Impress : pictures;scaling/resizing -Oracle Open Office Impress : pie charts -Oracle Open Office Impress : pie charts;options -Oracle Open Office Impress : pie charts;types -Oracle Open Office Impress : pivot points of draw objects -Oracle Open Office Impress : pixel editor -Oracle Open Office Impress : pixel graphics -Oracle Open Office Impress : pixel graphics;inserting and editing -Oracle Open Office Impress : pixel patterns -Oracle Open Office Impress : placeholders -Oracle Open Office Impress : placeholders;in SQL queries -Oracle Open Office Impress : placeholders;on opening files -Oracle Open Office Impress : placing toolbars -Oracle Open Office Impress : playing movies and sound files -Oracle Open Office Impress : plotting data as charts -Oracle Open Office Impress : plug-ins -Oracle Open Office Impress : plug-ins;activating and deactivating -Oracle Open Office Impress : plug-ins;definition -Oracle Open Office Impress : plug-ins;inserting -Oracle Open Office Impress : pocket device appliances -Oracle Open Office Impress : Pocket PC file filters -Oracle Open Office Impress : points -Oracle Open Office Impress : points;adding/converting/deleting -Oracle Open Office Impress : points;reducing editing points when snapping (Impress/Draw) -Oracle Open Office Impress : polygon drawing -Oracle Open Office Impress : polygons -Oracle Open Office Impress : polygons;inserting -Oracle Open Office Impress : polygons;intersecting/subtracting/merging -Oracle Open Office Impress : pop-art filter -Oracle Open Office Impress : portable document format -Oracle Open Office Impress : positioning -Oracle Open Office Impress : positioning;axes -Oracle Open Office Impress : positioning;draw objects and controls -Oracle Open Office Impress : positioning;fonts -Oracle Open Office Impress : positioning;objects -Oracle Open Office Impress : positioning;toolbars -Oracle Open Office Impress : post method for form transmissions -Oracle Open Office Impress : posterizing filter -Oracle Open Office Impress : PostScript -Oracle Open Office Impress : PostScript;creating files -Oracle Open Office Impress : PostScript;PDF converter, UNIX -Oracle Open Office Impress : PowerPoint export -Oracle Open Office Impress : precision as shown (Calc) -Oracle Open Office Impress : predefining fonts -Oracle Open Office Impress : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion -Oracle Open Office Impress : presentations -Oracle Open Office Impress : presentations;arranging slides -Oracle Open Office Impress : presentations;creating/opening -Oracle Open Office Impress : presentations;exiting by interaction -Oracle Open Office Impress : presentations;exporting to HTML -Oracle Open Office Impress : presentations;importing HTML -Oracle Open Office Impress : presentations;inserting spreadsheet cells -Oracle Open Office Impress : presentations;inserting spreadsheets -Oracle Open Office Impress : presentations;live on the Internet -Oracle Open Office Impress : presentations;navigating -Oracle Open Office Impress : presentations;numbering slides in -Oracle Open Office Impress : presentations;ordering of effects -Oracle Open Office Impress : presentations;print menu -Oracle Open Office Impress : presentations;printing -Oracle Open Office Impress : presentations;rehearse timings -Oracle Open Office Impress : presentations;saving -Oracle Open Office Impress : presentations;saving automatically -Oracle Open Office Impress : presentations;saving in other formats -Oracle Open Office Impress : presentations;sending as e-mail -Oracle Open Office Impress : presentations;settings for -Oracle Open Office Impress : presentations;shortcut keys -Oracle Open Office Impress : presentations;starting -Oracle Open Office Impress : presentations;starting with wizard -Oracle Open Office Impress : presentations;window / full screen -Oracle Open Office Impress : presentations;wizards -Oracle Open Office Impress : Presenter Console shortcuts -Oracle Open Office Impress : press buttons, see push buttons -Oracle Open Office Impress : previews -Oracle Open Office Impress : previews;fonts lists -Oracle Open Office Impress : primary keys -Oracle Open Office Impress : primary keys;defining -Oracle Open Office Impress : primary keys;design view -Oracle Open Office Impress : primary keys;inserting (Base) -Oracle Open Office Impress : print area selection -Oracle Open Office Impress : printer metrics for document formatting (Writer) -Oracle Open Office Impress : printers -Oracle Open Office Impress : printers;adding, UNIX -Oracle Open Office Impress : printers;choosing -Oracle Open Office Impress : printers;default printer -Oracle Open Office Impress : printers;faxes under UNIX -Oracle Open Office Impress : printers;maximum page formats -Oracle Open Office Impress : printers;paper trays -Oracle Open Office Impress : printers;properties -Oracle Open Office Impress : printing -Oracle Open Office Impress : printing;black and white -Oracle Open Office Impress : printing;brochures -Oracle Open Office Impress : printing;colors in grayscale -Oracle Open Office Impress : printing;comments -Oracle Open Office Impress : printing;copies -Oracle Open Office Impress : printing;creating individual jobs -Oracle Open Office Impress : printing;dates in presentations -Oracle Open Office Impress : printing;directly -Oracle Open Office Impress : printing;documents -Oracle Open Office Impress : printing;drawings defaults -Oracle Open Office Impress : printing;elements in text documents -Oracle Open Office Impress : printing;faster -Oracle Open Office Impress : printing;fitting to pages in Oracle Open Office Math -Oracle Open Office Impress : printing;fitting to pages in presentations -Oracle Open Office Impress : printing;fitting to paper -Oracle Open Office Impress : printing;formulas in Oracle Open Office Math -Oracle Open Office Impress : printing;hidden pages of presentations -Oracle Open Office Impress : printing;in original size in Oracle Open Office Math -Oracle Open Office Impress : printing;left/right pages -Oracle Open Office Impress : printing;presentations -Oracle Open Office Impress : printing;queries (Base) -Oracle Open Office Impress : printing;scaling in Oracle Open Office Math -Oracle Open Office Impress : printing;selections -Oracle Open Office Impress : printing;text always in black -Oracle Open Office Impress : printing;text in reverse order -Oracle Open Office Impress : printing;tiling pages in presentations -Oracle Open Office Impress : printing;transparencies -Oracle Open Office Impress : printing;warnings -Oracle Open Office Impress : printing;without scaling in presentations -Oracle Open Office Impress : printing speed -Oracle Open Office Impress : programming -Oracle Open Office Impress : programming;Oracle Open Office -Oracle Open Office Impress : programming;scripting -Oracle Open Office Impress : programs run by mouse click in presentations -Oracle Open Office Impress : properties -Oracle Open Office Impress : properties;charts -Oracle Open Office Impress : properties;fields in databases -Oracle Open Office Impress : properties;files -Oracle Open Office Impress : properties;form controls -Oracle Open Office Impress : properties;forms -Oracle Open Office Impress : properties;printers -Oracle Open Office Impress : properties;smooth lines in line charts/XY charts -Oracle Open Office Impress : protected contents -Oracle Open Office Impress : protected dashes -Oracle Open Office Impress : protected database tables -Oracle Open Office Impress : protected documents -Oracle Open Office Impress : protected spaces -Oracle Open Office Impress : protected spaces;inserting -Oracle Open Office Impress : protected spaces;showing (Writer) -Oracle Open Office Impress : protecting -Oracle Open Office Impress : protecting;contents -Oracle Open Office Impress : protecting;recorded changes -Oracle Open Office Impress : proxy settings -Oracle Open Office Impress : push buttons -Oracle Open Office Impress : push buttons;adding to documents -Oracle Open Office Impress : push buttons;creating -Oracle Open Office Impress : pyramids -Oracle Open Office Impress : queries -Oracle Open Office Impress : queries;copying (Base) -Oracle Open Office Impress : queries;creating in design view (Base) -Oracle Open Office Impress : queries;creating in SQL view -Oracle Open Office Impress : queries;defining (Base) -Oracle Open Office Impress : queries;deleting table links (Base) -Oracle Open Office Impress : queries;editing in data source view -Oracle Open Office Impress : queries;formulating filter conditions (Base) -Oracle Open Office Impress : queries;joining tables (Base) -Oracle Open Office Impress : queries;missing elements (Base) -Oracle Open Office Impress : queries;overview (Base) -Oracle Open Office Impress : queries;parameter queries (Base) -Oracle Open Office Impress : queries;printing (Base) -Oracle Open Office Impress : Query Wizard (Base) -Oracle Open Office Impress : Quickstarter -Oracle Open Office Impress : quotes -Oracle Open Office Impress : quotes;custom -Oracle Open Office Impress : radar charts, see net charts -Oracle Open Office Impress : radio button creation -Oracle Open Office Impress : read-only documents -Oracle Open Office Impress : read-only documents;cursor -Oracle Open Office Impress : read-only documents;database tables on/off -Oracle Open Office Impress : read-only documents;editing -Oracle Open Office Impress : read-only documents;opening documents as -Oracle Open Office Impress : read-only items in Data Navigator -Oracle Open Office Impress : recognizing URLs automatically -Oracle Open Office Impress : recording -Oracle Open Office Impress : recording;changes -Oracle Open Office Impress : recording;display times for slides -Oracle Open Office Impress : recording;macros -Oracle Open Office Impress : records -Oracle Open Office Impress : records;inserting comments -Oracle Open Office Impress : records;protecting -Oracle Open Office Impress : records;saving -Oracle Open Office Impress : records;searching in databases -Oracle Open Office Impress : rectangles -Oracle Open Office Impress : rectangles with round corners -Oracle Open Office Impress : recursions in spreadsheets -Oracle Open Office Impress : redo command -Oracle Open Office Impress : reduced printing -Oracle Open Office Impress : reference lines -Oracle Open Office Impress : references -Oracle Open Office Impress : references;displaying in color (Calc) -Oracle Open Office Impress : references;expanding (Calc) -Oracle Open Office Impress : references;iterative (Calc) -Oracle Open Office Impress : register-true -Oracle Open Office Impress : register-true;definition -Oracle Open Office Impress : registering -Oracle Open Office Impress : registering;address books -Oracle Open Office Impress : registering;databases (Base) -Oracle Open Office Impress : registering;Oracle Open Office -Oracle Open Office Impress : regression curves in charts -Oracle Open Office Impress : regular expressions -Oracle Open Office Impress : regular expressions;list of -Oracle Open Office Impress : rehearse timings -Oracle Open Office Impress : relational databases (Base) -Oracle Open Office Impress : relations -Oracle Open Office Impress : relations;creating and deleting (Base) -Oracle Open Office Impress : relations;joining tables (Base) -Oracle Open Office Impress : relations;properties (Base) -Oracle Open Office Impress : relative hyperlinks -Oracle Open Office Impress : relative saving of URLs -Oracle Open Office Impress : reloading -Oracle Open Office Impress : reloading;documents -Oracle Open Office Impress : reloading;HTML documents, automatically -Oracle Open Office Impress : remarks, see also comments -Oracle Open Office Impress : remote configurations -Oracle Open Office Impress : remove noise filter -Oracle Open Office Impress : removing -Oracle Open Office Impress : removing;bullets and numbering -Oracle Open Office Impress : removing;form filters -Oracle Open Office Impress : removing, see also deleting -Oracle Open Office Impress : renaming layers -Oracle Open Office Impress : reorganizing charts -Oracle Open Office Impress : repeating -Oracle Open Office Impress : repeating;commands -Oracle Open Office Impress : replacement options -Oracle Open Office Impress : replacement table -Oracle Open Office Impress : replacing -Oracle Open Office Impress : replacing;AutoCorrect function -Oracle Open Office Impress : replacing;colors in bitmaps -Oracle Open Office Impress : replacing;dashes -Oracle Open Office Impress : replacing;ordinal numbers -Oracle Open Office Impress : replacing;tab stops (regular expressions) -Oracle Open Office Impress : Report Builder -Oracle Open Office Impress : reports -Oracle Open Office Impress : reports;creating -Oracle Open Office Impress : reports;error reports -Oracle Open Office Impress : reports;opening and editing -Oracle Open Office Impress : reports;templates -Oracle Open Office Impress : resetting -Oracle Open Office Impress : resetting;templates -Oracle Open Office Impress : resizing -Oracle Open Office Impress : resizing;objects, by mouse -Oracle Open Office Impress : resizing, see also scaling/zooming -Oracle Open Office Impress : resolution when printing bitmaps -Oracle Open Office Impress : restoring -Oracle Open Office Impress : restoring;default formatting -Oracle Open Office Impress : restoring;editing -Oracle Open Office Impress : reversing objects -Oracle Open Office Impress : reversing printing order -Oracle Open Office Impress : review function -Oracle Open Office Impress : review function;accepting or rejecting changes -Oracle Open Office Impress : review function;comparing documents -Oracle Open Office Impress : review function;protecting records -Oracle Open Office Impress : review function;recording changes example -Oracle Open Office Impress : rich text control -Oracle Open Office Impress : right alignment of paragraphs -Oracle Open Office Impress : right joins (Base) -Oracle Open Office Impress : right-to-left text -Oracle Open Office Impress : rotating -Oracle Open Office Impress : rotating;3D text -Oracle Open Office Impress : rotating;draw objects -Oracle Open Office Impress : rotation mode -Oracle Open Office Impress : round corners -Oracle Open Office Impress : rounding precision (Calc) -Oracle Open Office Impress : row headers -Oracle Open Office Impress : row headers;displaying (Calc) -Oracle Open Office Impress : row headers;highlighting (Calc) -Oracle Open Office Impress : rows -Oracle Open Office Impress : rows;inserting -Oracle Open Office Impress : rulers -Oracle Open Office Impress : rulers;default settings -Oracle Open Office Impress : rulers;in presentations -Oracle Open Office Impress : rulers;measurement units -Oracle Open Office Impress : rulers;visible in presentations -Oracle Open Office Impress : running macros/programs in presentations -Oracle Open Office Impress : running slide shows -Oracle Open Office Impress : samples and templates -Oracle Open Office Impress : saving -Oracle Open Office Impress : saving;as HTML -Oracle Open Office Impress : saving;default file formats -Oracle Open Office Impress : saving;dialog settings -Oracle Open Office Impress : saving;documents -Oracle Open Office Impress : saving;documents for mobile devices -Oracle Open Office Impress : saving;documents in other formats -Oracle Open Office Impress : saving;documents, automatically -Oracle Open Office Impress : saving;in Microsoft Office file format -Oracle Open Office Impress : saving;options -Oracle Open Office Impress : saving;templates -Oracle Open Office Impress : saving;to XML -Oracle Open Office Impress : saving;VBA code in Microsoft Office documents -Oracle Open Office Impress : saving;with password by default -Oracle Open Office Impress : saving as command -Oracle Open Office Impress : saving as command;precautions -Oracle Open Office Impress : scaling -Oracle Open Office Impress : scaling;axes -Oracle Open Office Impress : scaling;font sizes in user interface -Oracle Open Office Impress : scaling;objects -Oracle Open Office Impress : scaling;pictures -Oracle Open Office Impress : scaling;printing in Oracle Open Office Math -Oracle Open Office Impress : scaling;text in charts -Oracle Open Office Impress : scaling;when printing presentations -Oracle Open Office Impress : scaling, see also zooming -Oracle Open Office Impress : scatter charts -Oracle Open Office Impress : screen -Oracle Open Office Impress : screen;full screen views -Oracle Open Office Impress : screen;scaling -Oracle Open Office Impress : screen magnifiers -Oracle Open Office Impress : screen readers -Oracle Open Office Impress : script organization -Oracle Open Office Impress : scrollbars -Oracle Open Office Impress : scrollbars;controls -Oracle Open Office Impress : scrollbars;displaying (Calc) -Oracle Open Office Impress : scrollbars;horizontal and vertical (Writer) -Oracle Open Office Impress : search criteria for database functions in cells -Oracle Open Office Impress : search engines -Oracle Open Office Impress : search engines;definition -Oracle Open Office Impress : search engines;selecting -Oracle Open Office Impress : searching -Oracle Open Office Impress : searching;all sheets -Oracle Open Office Impress : searching;databases -Oracle Open Office Impress : searching;form filters -Oracle Open Office Impress : searching;Internet -Oracle Open Office Impress : searching;tables and forms -Oracle Open Office Impress : secondary axes in charts -Oracle Open Office Impress : sections -Oracle Open Office Impress : sections;backgrounds -Oracle Open Office Impress : sectors of circles/ellipses -Oracle Open Office Impress : security -Oracle Open Office Impress : security;digital signatures -Oracle Open Office Impress : security;options for documents with macros -Oracle Open Office Impress : security;protecting contents -Oracle Open Office Impress : security;security levels for macros -Oracle Open Office Impress : security;warning dialogs with macros -Oracle Open Office Impress : segments of circles/ellipses -Oracle Open Office Impress : selecting -Oracle Open Office Impress : selecting;controls -Oracle Open Office Impress : selecting;hidden objects -Oracle Open Office Impress : selecting;layers -Oracle Open Office Impress : selecting;measurement units -Oracle Open Office Impress : selecting;objects -Oracle Open Office Impress : selecting;print areas -Oracle Open Office Impress : selecting;several files -Oracle Open Office Impress : selection clipboard -Oracle Open Office Impress : selection frames -Oracle Open Office Impress : selection modes in text -Oracle Open Office Impress : sending -Oracle Open Office Impress : sending;AutoAbstract function in presentations -Oracle Open Office Impress : sending;documents as e-mail -Oracle Open Office Impress : sending;documents as faxes -Oracle Open Office Impress : separator lines -Oracle Open Office Impress : separator lines;defining -Oracle Open Office Impress : separators -Oracle Open Office Impress : separators;conditional -Oracle Open Office Impress : Server Side ImageMap -Oracle Open Office Impress : settings -Oracle Open Office Impress : settings;printers -Oracle Open Office Impress : settings;program configuration -Oracle Open Office Impress : settings;proxies -Oracle Open Office Impress : settings;tracking changes -Oracle Open Office Impress : settings;views -Oracle Open Office Impress : SGML -Oracle Open Office Impress : SGML;definition -Oracle Open Office Impress : shadows -Oracle Open Office Impress : shadows;areas -Oracle Open Office Impress : shadows;borders -Oracle Open Office Impress : shadows;characters -Oracle Open Office Impress : shadows;characters, using context menu -Oracle Open Office Impress : sharing documents -Oracle Open Office Impress : sharpening filter -Oracle Open Office Impress : shearing objects -Oracle Open Office Impress : sheet tabs -Oracle Open Office Impress : sheet tabs;displaying -Oracle Open Office Impress : sheets -Oracle Open Office Impress : sheets;searching all -Oracle Open Office Impress : shells -Oracle Open Office Impress : shortcut keys -Oracle Open Office Impress : shortcut keys;assigning macros -Oracle Open Office Impress : shortcut keys;charts -Oracle Open Office Impress : shortcut keys;general -Oracle Open Office Impress : shortcut keys;in databases -Oracle Open Office Impress : shortcut keys;in drawings -Oracle Open Office Impress : shortcut keys;in presentations -Oracle Open Office Impress : shortcut keys;Oracle Open Office accessibility -Oracle Open Office Impress : showing -Oracle Open Office Impress : showing;changes -Oracle Open Office Impress : showing;docked windows -Oracle Open Office Impress : showing;drawings and controls (Writer) -Oracle Open Office Impress : showing;guides -Oracle Open Office Impress : showing;hidden layers -Oracle Open Office Impress : showing;hidden slides -Oracle Open Office Impress : showing;levels -Oracle Open Office Impress : showing;live presentations on the Internet -Oracle Open Office Impress : showing;slide shows -Oracle Open Office Impress : showing;subpoints -Oracle Open Office Impress : showing;toolbars -Oracle Open Office Impress : sign conversion to curves -Oracle Open Office Impress : signing documents with digital signatures -Oracle Open Office Impress : similarity search -Oracle Open Office Impress : simple handles (Writer) -Oracle Open Office Impress : simplified Chinese -Oracle Open Office Impress : simplified Chinese;translating to traditional Chinese -Oracle Open Office Impress : single sign on options -Oracle Open Office Impress : single-line spacing in text -Oracle Open Office Impress : sizes -Oracle Open Office Impress : sizes;draw objects -Oracle Open Office Impress : sizes;pictures -Oracle Open Office Impress : skewing draw objects -Oracle Open Office Impress : slanting draw objects -Oracle Open Office Impress : slanting objects -Oracle Open Office Impress : slide designs -Oracle Open Office Impress : slide layouts -Oracle Open Office Impress : slide master view -Oracle Open Office Impress : slide masters -Oracle Open Office Impress : slide masters;changing backgrounds -Oracle Open Office Impress : slide masters;designing -Oracle Open Office Impress : slide masters;headers and footers -Oracle Open Office Impress : slide numbers -Oracle Open Office Impress : slide numbers on all slides -Oracle Open Office Impress : slide shows -Oracle Open Office Impress : slide shows;custom -Oracle Open Office Impress : slide shows;settings for -Oracle Open Office Impress : slide shows;starting -Oracle Open Office Impress : slide transitions -Oracle Open Office Impress : slide transitions;applying effects -Oracle Open Office Impress : slide transitions;automatic -Oracle Open Office Impress : slide transitions;manual -Oracle Open Office Impress : slide transitions;sounds -Oracle Open Office Impress : slides -Oracle Open Office Impress : slides;arranging -Oracle Open Office Impress : slides;backgrounds -Oracle Open Office Impress : slides;changing backgrounds -Oracle Open Office Impress : slides;copying between documents -Oracle Open Office Impress : slides;deleting -Oracle Open Office Impress : slides;expanding -Oracle Open Office Impress : slides;formatting -Oracle Open Office Impress : slides;headers and footers -Oracle Open Office Impress : slides;inserting -Oracle Open Office Impress : slides;inserting as links -Oracle Open Office Impress : slides;inserting speaker notes -Oracle Open Office Impress : slides;page numbers -Oracle Open Office Impress : slides;printing -Oracle Open Office Impress : small capitals -Oracle Open Office Impress : small icons -Oracle Open Office Impress : smart tag configuration -Oracle Open Office Impress : smooth scrolling (Writer) -Oracle Open Office Impress : smoothing filter -Oracle Open Office Impress : snap grid defaults (Writer/Calc) -Oracle Open Office Impress : snap lines, see also guides -Oracle Open Office Impress : snap points -Oracle Open Office Impress : snap points;editing -Oracle Open Office Impress : snap points;inserting -Oracle Open Office Impress : snapping in presentations and drawings -Oracle Open Office Impress : solarization filter -Oracle Open Office Impress : sort lists -Oracle Open Office Impress : sort lists;copying to in Calc -Oracle Open Office Impress : sorting -Oracle Open Office Impress : sorting;data in forms -Oracle Open Office Impress : sorting;databases -Oracle Open Office Impress : sound files -Oracle Open Office Impress : sounds -Oracle Open Office Impress : sounds;for effects -Oracle Open Office Impress : sounds;formats -Oracle Open Office Impress : sounds;on slide transitions -Oracle Open Office Impress : spaces -Oracle Open Office Impress : spaces;displaying (Writer) -Oracle Open Office Impress : spaces;ignoring double -Oracle Open Office Impress : spaces;inserting protected spaces -Oracle Open Office Impress : spaces;showing protected spaces (Writer) -Oracle Open Office Impress : spacing -Oracle Open Office Impress : spacing;between paragraphs in footnotes -Oracle Open Office Impress : spacing;font effects -Oracle Open Office Impress : spacing;lines and paragraphs -Oracle Open Office Impress : spacing;tab stops in text documents -Oracle Open Office Impress : spacing;tabs in presentations -Oracle Open Office Impress : spadmin -Oracle Open Office Impress : speaker notes -Oracle Open Office Impress : speaker notes;defaults -Oracle Open Office Impress : speaker notes;inserting -Oracle Open Office Impress : special characters -Oracle Open Office Impress : speech bubbles -Oracle Open Office Impress : speed of printing -Oracle Open Office Impress : spellcheck -Oracle Open Office Impress : spellcheck;activating for a language -Oracle Open Office Impress : spellcheck;context menus -Oracle Open Office Impress : spellcheck;default languages -Oracle Open Office Impress : spellcheck;dialog -Oracle Open Office Impress : spellcheck;dictionary of exceptions -Oracle Open Office Impress : spellcheck;ignore list -Oracle Open Office Impress : spheres -Oracle Open Office Impress : spin button creation -Oracle Open Office Impress : splitting -Oracle Open Office Impress : splitting;combinations -Oracle Open Office Impress : splitting;curves -Oracle Open Office Impress : spoolfiles with Xprinter -Oracle Open Office Impress : spreadsheets -Oracle Open Office Impress : spreadsheets;as databases (base) -Oracle Open Office Impress : spreadsheets;copying areas to text documents -Oracle Open Office Impress : spreadsheets;creating/opening -Oracle Open Office Impress : spreadsheets;in presentations -Oracle Open Office Impress : spreadsheets;inserting charts -Oracle Open Office Impress : spreadsheets;inserting database records -Oracle Open Office Impress : spreadsheets;printing -Oracle Open Office Impress : spreadsheets;saving -Oracle Open Office Impress : spreadsheets;saving automatically -Oracle Open Office Impress : spreadsheets;saving in other formats -Oracle Open Office Impress : spreadsheets;sending as e-mail -Oracle Open Office Impress : SQL -Oracle Open Office Impress : SQL;definition -Oracle Open Office Impress : SQL;DISTINCT parameter -Oracle Open Office Impress : SQL;executing SQL commands -Oracle Open Office Impress : SQL;executing SQL statements (Base) -Oracle Open Office Impress : SQL;queries (Base) -Oracle Open Office Impress : square drawings -Oracle Open Office Impress : standard bar on/off -Oracle Open Office Impress : standard deviation in charts -Oracle Open Office Impress : standard filters in databases -Oracle Open Office Impress : standard printer under UNIX -Oracle Open Office Impress : start center -Oracle Open Office Impress : start parameters -Oracle Open Office Impress : starting -Oracle Open Office Impress : starting;always with the current slide -Oracle Open Office Impress : starting;custom slide shows -Oracle Open Office Impress : starting;slide shows -Oracle Open Office Impress : statistics in charts -Oracle Open Office Impress : status bar on/off -Oracle Open Office Impress : stickers -Oracle Open Office Impress : stock charts -Oracle Open Office Impress : strikethrough -Oracle Open Office Impress : strikethrough;characters -Oracle Open Office Impress : strikethrough;font effects -Oracle Open Office Impress : styles -Oracle Open Office Impress : styles;'changed' message -Oracle Open Office Impress : styles;arrow and line styles -Oracle Open Office Impress : styles;copying between documents -Oracle Open Office Impress : styles;keyboard shortcuts -Oracle Open Office Impress : styles;organizing -Oracle Open Office Impress : styles;printing styles used in a document -Oracle Open Office Impress : styles;replacing automatically -Oracle Open Office Impress : Styles and Formatting window -Oracle Open Office Impress : Styles and Formatting window;docking -Oracle Open Office Impress : Styles and Formatting window;graphics documents -Oracle Open Office Impress : subforms -Oracle Open Office Impress : subforms;creating -Oracle Open Office Impress : subforms;description -Oracle Open Office Impress : submitting forms -Oracle Open Office Impress : subpoints -Oracle Open Office Impress : subpoints;hiding -Oracle Open Office Impress : subpoints;showing -Oracle Open Office Impress : subtracting polygons -Oracle Open Office Impress : suffixes in file formats -Oracle Open Office Impress : summary slide -Oracle Open Office Impress : support on the Web -Oracle Open Office Impress : synchronizing -Oracle Open Office Impress : synchronizing;labels and business cards -Oracle Open Office Impress : synchronizing;Pocket PC and Oracle Open Office formats -Oracle Open Office Impress : system address book registration -Oracle Open Office Impress : tab stops -Oracle Open Office Impress : tab stops;displaying (Writer) -Oracle Open Office Impress : tab stops;inserting and editing -Oracle Open Office Impress : tab stops;regular expressions -Oracle Open Office Impress : tab stops;setting in sheets -Oracle Open Office Impress : tab stops;settings -Oracle Open Office Impress : tab stops;spacing in presentations -Oracle Open Office Impress : tab stops;spacing in text documents -Oracle Open Office Impress : table controls -Oracle Open Office Impress : table controls;form functions -Oracle Open Office Impress : table controls;keyboard-only edit mode -Oracle Open Office Impress : table controls;properties -Oracle Open Office Impress : table views of databases -Oracle Open Office Impress : Table Wizard (Base) -Oracle Open Office Impress : tables -Oracle Open Office Impress : tables;inserting line breaks -Oracle Open Office Impress : tables in databases -Oracle Open Office Impress : tables in databases;access rights to (Base) -Oracle Open Office Impress : tables in databases;adding to queries -Oracle Open Office Impress : tables in databases;browsing and editing -Oracle Open Office Impress : tables in databases;copying database tables (Base) -Oracle Open Office Impress : tables in databases;creating -Oracle Open Office Impress : tables in databases;creating in design view (manually) -Oracle Open Office Impress : tables in databases;importing text formats (Base) -Oracle Open Office Impress : tables in databases;joining for queries (Base) -Oracle Open Office Impress : tables in databases;printing queries (Base) -Oracle Open Office Impress : tables in databases;relations (Base) -Oracle Open Office Impress : tables in databases;searching -Oracle Open Office Impress : tables in spreadsheets -Oracle Open Office Impress : tables in spreadsheets;copying data to other applications -Oracle Open Office Impress : tables in spreadsheets;defining borders -Oracle Open Office Impress : tables in spreadsheets;value highlighting -Oracle Open Office Impress : tables in text -Oracle Open Office Impress : tables in text;captions -Oracle Open Office Impress : tables in text;creating automatically -Oracle Open Office Impress : tables in text;default settings -Oracle Open Office Impress : tables in text;defining borders -Oracle Open Office Impress : tables in text;displaying -Oracle Open Office Impress : tables in text;printing -Oracle Open Office Impress : tabs -Oracle Open Office Impress : tabs;displaying sheet tabs -Oracle Open Office Impress : tags -Oracle Open Office Impress : tags;definition -Oracle Open Office Impress : tags;META tags -Oracle Open Office Impress : task pane -Oracle Open Office Impress : templates -Oracle Open Office Impress : templates;agendas -Oracle Open Office Impress : templates;changing basic fonts -Oracle Open Office Impress : templates;database reports -Oracle Open Office Impress : templates;deleting -Oracle Open Office Impress : templates;editing and saving -Oracle Open Office Impress : templates;faxes -Oracle Open Office Impress : templates;importing and exporting -Oracle Open Office Impress : templates;letters -Oracle Open Office Impress : templates;new documents from templates -Oracle Open Office Impress : templates;opening documents with -Oracle Open Office Impress : templates;organizing -Oracle Open Office Impress : terminology -Oracle Open Office Impress : terminology;general glossary -Oracle Open Office Impress : terminology;Internet glossary -Oracle Open Office Impress : testing XML filters -Oracle Open Office Impress : text -Oracle Open Office Impress : text;animating -Oracle Open Office Impress : text;Asian layout -Oracle Open Office Impress : text;bold -Oracle Open Office Impress : text;coloring -Oracle Open Office Impress : text;converting to curves -Oracle Open Office Impress : text;copying by drag and drop -Oracle Open Office Impress : text;CTL languages -Oracle Open Office Impress : text;double-clicking to edit -Oracle Open Office Impress : text;drawing pictures -Oracle Open Office Impress : text;font effects -Oracle Open Office Impress : text;font sizes -Oracle Open Office Impress : text;font styles -Oracle Open Office Impress : text;fonts and formats -Oracle Open Office Impress : text;Fontwork icons -Oracle Open Office Impress : text;hyperlinks -Oracle Open Office Impress : text;inserting special characters -Oracle Open Office Impress : text;italics -Oracle Open Office Impress : text;kerning -Oracle Open Office Impress : text;language selection -Oracle Open Office Impress : text;line spacing -Oracle Open Office Impress : text;overwriting or inserting -Oracle Open Office Impress : text;printing in black -Oracle Open Office Impress : text;replacing with format -Oracle Open Office Impress : text;selection modes -Oracle Open Office Impress : text;shadowed -Oracle Open Office Impress : text;text/draw objects -Oracle Open Office Impress : text;toolbar -Oracle Open Office Impress : text attributes -Oracle Open Office Impress : text attributes;hyperlinks -Oracle Open Office Impress : text attributes;undoing -Oracle Open Office Impress : text boxes -Oracle Open Office Impress : text boxes;form functions -Oracle Open Office Impress : text boxes;positioning -Oracle Open Office Impress : text breaks in cells -Oracle Open Office Impress : text colors for better accessibility -Oracle Open Office Impress : text databases (Base) -Oracle Open Office Impress : text documents -Oracle Open Office Impress : text documents;creating/opening -Oracle Open Office Impress : text documents;importing/exporting -Oracle Open Office Impress : text documents;inserting in slides -Oracle Open Office Impress : text documents;inserting spreadsheet cells -Oracle Open Office Impress : text documents;print settings -Oracle Open Office Impress : text documents;printing -Oracle Open Office Impress : text documents;saving -Oracle Open Office Impress : text documents;saving automatically -Oracle Open Office Impress : text documents;saving in other formats -Oracle Open Office Impress : text documents;sending as e-mail -Oracle Open Office Impress : text effects -Oracle Open Office Impress : text entry mode for draw objects -Oracle Open Office Impress : text flow -Oracle Open Office Impress : text flow;in cells -Oracle Open Office Impress : text formats -Oracle Open Office Impress : text formats;databases -Oracle Open Office Impress : text formats;pasting -Oracle Open Office Impress : text frames -Oracle Open Office Impress : text input fields -Oracle Open Office Impress : text layout for special languages -Oracle Open Office Impress : text objects -Oracle Open Office Impress : text objects;alignment -Oracle Open Office Impress : text objects;draw functions -Oracle Open Office Impress : text objects;fonts -Oracle Open Office Impress : text objects;in presentations and drawings -Oracle Open Office Impress : text overflow in spreadsheet cells -Oracle Open Office Impress : text scaling in charts -Oracle Open Office Impress : text, see also text documents, paragraphs and characters -Oracle Open Office Impress : TextArt, see Fontwork -Oracle Open Office Impress : textures -Oracle Open Office Impress : textures;inserting from Gallery -Oracle Open Office Impress : textures;on chart bars -Oracle Open Office Impress : Thai -Oracle Open Office Impress : Thai;entering text -Oracle Open Office Impress : Thai;language settings -Oracle Open Office Impress : thesaurus -Oracle Open Office Impress : thesaurus;activating for a language -Oracle Open Office Impress : ticker text -Oracle Open Office Impress : tiled printing of slides -Oracle Open Office Impress : time and date on all slides -Oracle Open Office Impress : time fields -Oracle Open Office Impress : time fields;form functions -Oracle Open Office Impress : times -Oracle Open Office Impress : times;fixed -Oracle Open Office Impress : times;inserting when printing presentations -Oracle Open Office Impress : times;variable -Oracle Open Office Impress : times, formats -Oracle Open Office Impress : timings -Oracle Open Office Impress : timings;rehearse timings -Oracle Open Office Impress : tips -Oracle Open Office Impress : tips;extended tips in Help -Oracle Open Office Impress : title rows -Oracle Open Office Impress : title rows;printing in Oracle Open Office Math -Oracle Open Office Impress : titles -Oracle Open Office Impress : titles;alignment (charts) -Oracle Open Office Impress : titles;changing -Oracle Open Office Impress : titles;editing in charts -Oracle Open Office Impress : titles;font effects -Oracle Open Office Impress : titles;formatting automatically -Oracle Open Office Impress : titles;formatting charts -Oracle Open Office Impress : titles;objects -Oracle Open Office Impress : toolbars -Oracle Open Office Impress : toolbars;3D objects -Oracle Open Office Impress : toolbars;adding buttons -Oracle Open Office Impress : toolbars;curves -Oracle Open Office Impress : toolbars;docking/undocking -Oracle Open Office Impress : toolbars;ellipses -Oracle Open Office Impress : toolbars;Form Navigation bar -Oracle Open Office Impress : toolbars;viewing/closing -Oracle Open Office Impress : tools bar -Oracle Open Office Impress : tooltips -Oracle Open Office Impress : tooltips;extended tips -Oracle Open Office Impress : tooltips;help -Oracle Open Office Impress : torus -Oracle Open Office Impress : traditional Chinese -Oracle Open Office Impress : traditional Chinese;translating to simplified chinese -Oracle Open Office Impress : transition effects -Oracle Open Office Impress : transparency -Oracle Open Office Impress : transparency;adjusting -Oracle Open Office Impress : transparency;areas -Oracle Open Office Impress : transparency;of objects -Oracle Open Office Impress : transparency;off for faster printing -Oracle Open Office Impress : transparency;saving -Oracle Open Office Impress : tree view of Help -Oracle Open Office Impress : trend lines in charts -Oracle Open Office Impress : typefaces -Oracle Open Office Impress : typefaces;adding under UNIX -Oracle Open Office Impress : typefaces;formats -Oracle Open Office Impress : typography -Oracle Open Office Impress : typography;Asian -Oracle Open Office Impress : underlining -Oracle Open Office Impress : underlining;AutoFormat function -Oracle Open Office Impress : underlining;characters -Oracle Open Office Impress : underlining;text -Oracle Open Office Impress : underlying objects -Oracle Open Office Impress : undocking windows -Oracle Open Office Impress : undoing -Oracle Open Office Impress : undoing;direct formatting -Oracle Open Office Impress : undoing;editing -Oracle Open Office Impress : undoing;number of steps -Oracle Open Office Impress : ungrouping groups -Oracle Open Office Impress : units -Oracle Open Office Impress : units;converting -Oracle Open Office Impress : units;measurement units -Oracle Open Office Impress : unlocking layers -Oracle Open Office Impress : UNO components -Oracle Open Office Impress : UNO components;Extension Manager -Oracle Open Office Impress : UNO components;integrating new -Oracle Open Office Impress : update options -Oracle Open Office Impress : updates -Oracle Open Office Impress : updates;checking automatically -Oracle Open Office Impress : updates;checking manually -Oracle Open Office Impress : updating -Oracle Open Office Impress : updating;fields and charts, automatically (Writer) -Oracle Open Office Impress : updating;links in text documents -Oracle Open Office Impress : updating;links, on opening -Oracle Open Office Impress : updating;templates -Oracle Open Office Impress : URL -Oracle Open Office Impress : URL;changing hyperlink URLs -Oracle Open Office Impress : URL;definition -Oracle Open Office Impress : URL;in pictures -Oracle Open Office Impress : URL;saving absolute/relative paths -Oracle Open Office Impress : URL;turning off URL recognition -Oracle Open Office Impress : user data -Oracle Open Office Impress : user data;input -Oracle Open Office Impress : user data;removing when saving -Oracle Open Office Impress : user feedback -Oracle Open Office Impress : user feedback;automatically -Oracle Open Office Impress : user-defined colors -Oracle Open Office Impress : user-defined dictionaries -Oracle Open Office Impress : user-defined dictionaries;creating -Oracle Open Office Impress : user-defined dictionaries;dictionary of exceptions -Oracle Open Office Impress : user-defined dictionaries;editing -Oracle Open Office Impress : user-defined styles -Oracle Open Office Impress : user-defined styles;automatically replacing -Oracle Open Office Impress : UTF-8/UCS2 support -Oracle Open Office Impress : values -Oracle Open Office Impress : values;rounded as shown (Calc) -Oracle Open Office Impress : variables -Oracle Open Office Impress : variables;for paths -Oracle Open Office Impress : variances in charts -Oracle Open Office Impress : VBA code -Oracle Open Office Impress : VBA code;loading/saving documents with VBA code -Oracle Open Office Impress : vector graphics -Oracle Open Office Impress : vector graphics;converting bitmaps -Oracle Open Office Impress : vectorizing bitmaps -Oracle Open Office Impress : version management -Oracle Open Office Impress : version numbers of documents -Oracle Open Office Impress : versions -Oracle Open Office Impress : versions;comparing documents -Oracle Open Office Impress : versions;file saving as, restriction -Oracle Open Office Impress : versions;merging document versions -Oracle Open Office Impress : versions;of a document -Oracle Open Office Impress : versions;Oracle Open Office -Oracle Open Office Impress : vertical callouts -Oracle Open Office Impress : vertical scrollbars (Writer) -Oracle Open Office Impress : vertical text boxes -Oracle Open Office Impress : videos -Oracle Open Office Impress : viewing -Oracle Open Office Impress : viewing;databases -Oracle Open Office Impress : viewing;file properties -Oracle Open Office Impress : viewing;Oracle Open Office documents in Internet Explorer -Oracle Open Office Impress : viewing;toolbars -Oracle Open Office Impress : views -Oracle Open Office Impress : views;black and white -Oracle Open Office Impress : views;creating database views (Base) -Oracle Open Office Impress : views;defaults -Oracle Open Office Impress : views;display sizes -Oracle Open Office Impress : views;full screen -Oracle Open Office Impress : views;icons -Oracle Open Office Impress : views;scaling -Oracle Open Office Impress : views;shift function -Oracle Open Office Impress : views;slide master view -Oracle Open Office Impress : Visual Basic for Applications -Oracle Open Office Impress : Visual Basic for Applications;loading/saving documents with VBA code -Oracle Open Office Impress : watermarks -Oracle Open Office Impress : web documents -Oracle Open Office Impress : web documents;XForms -Oracle Open Office Impress : Web support -Oracle Open Office Impress : WebCast export -Oracle Open Office Impress : WebDAV over HTTPS -Oracle Open Office Impress : windows -Oracle Open Office Impress : windows;docking -Oracle Open Office Impress : windows;docking definition -Oracle Open Office Impress : windows;hiding/showing/docking -Oracle Open Office Impress : windows;new -Oracle Open Office Impress : wizards -Oracle Open Office Impress : wizards;agendas -Oracle Open Office Impress : wizards;database queries -Oracle Open Office Impress : wizards;database tables (Base) -Oracle Open Office Impress : wizards;databases (Base) -Oracle Open Office Impress : wizards;document converter -Oracle Open Office Impress : wizards;Euro Converter -Oracle Open Office Impress : wizards;faxes -Oracle Open Office Impress : wizards;forms -Oracle Open Office Impress : wizards;letters -Oracle Open Office Impress : wizards;macros (Base) -Oracle Open Office Impress : wizards;overview -Oracle Open Office Impress : wizards;presentations -Oracle Open Office Impress : wizards;reports -Oracle Open Office Impress : Word documents -Oracle Open Office Impress : Word documents;compatibility -Oracle Open Office Impress : Word documents;saving as -Oracle Open Office Impress : WordArt, see Fontwork -Oracle Open Office Impress : words -Oracle Open Office Impress : words;automatically replacing -Oracle Open Office Impress : words;wrapping in cells -Oracle Open Office Impress : words;wrapping in CTL -Oracle Open Office Impress : working directory change -Oracle Open Office Impress : wrapping text -Oracle Open Office Impress : wrapping text;in cells -Oracle Open Office Impress : write protection on/off -Oracle Open Office Impress : writing aids options -Oracle Open Office Impress : WYSIWYG in fonts lists -Oracle Open Office Impress : X axes -Oracle Open Office Impress : X axes;grid formatting -Oracle Open Office Impress : X axes;positioning -Oracle Open Office Impress : X axes;scaling -Oracle Open Office Impress : X axes;showing -Oracle Open Office Impress : XForms -Oracle Open Office Impress : XForms;adding/editing/deleting/organizing namespaces -Oracle Open Office Impress : XForms;conditions -Oracle Open Office Impress : XForms;opening/editing -Oracle Open Office Impress : XML converters -Oracle Open Office Impress : XML file formats -Oracle Open Office Impress : XML filters -Oracle Open Office Impress : XML filters;creating/testing -Oracle Open Office Impress : XML filters;saving as package/installing/deleting -Oracle Open Office Impress : XML filters;settings -Oracle Open Office Impress : XML Forms, see XForms -Oracle Open Office Impress : XSLT filters, see also XML filters -Oracle Open Office Impress : XY charts -Oracle Open Office Impress : Y axes -Oracle Open Office Impress : Y axes;formatting -Oracle Open Office Impress : Y axes;grid formatting -Oracle Open Office Impress : Y axes;positioning -Oracle Open Office Impress : Y axes;scaling -Oracle Open Office Impress : Y axes;showing -Oracle Open Office Impress : years -Oracle Open Office Impress : years;2-digit options -Oracle Open Office Impress : Z axes -Oracle Open Office Impress : Z axes;grid formatting -Oracle Open Office Impress : Z axes;showing -Oracle Open Office Impress : zero values -Oracle Open Office Impress : zero values;displaying (Calc) -Oracle Open Office Impress : zooming -Oracle Open Office Impress : zooming;in presentations -Oracle Open Office Impress : zooming;keyboard -Oracle Open Office Impress : zooming;page views -Oracle Open Office Impress : zooming;pictures -Oracle Open Office Impress : zooming;shortcut keys -Oracle Open Office Impress : zooming;status bar +Oracle Open Office Calc : ### error message Oracle Open Office Calc : #N/A error Oracle Open Office Calc : #N/A error;assigning to a cell Oracle Open Office Calc : #N/A error;recognizing @@ -10856,15 +152,13 @@ Oracle Open Office Calc : AutoCorrect function;options Oracle Open Office Calc : AutoCorrect function;pictures and frames Oracle Open Office Calc : AutoCorrect function;quotes Oracle Open Office Calc : AutoCorrect function;replacement table -Oracle Open Office Calc : AutoCorrect function;switching on and off in Calc +Oracle Open Office Calc : AutoCorrect function;switching on and off Oracle Open Office Calc : AutoCorrect function;URL recognition Oracle Open Office Calc : AutoFill function Oracle Open Office Calc : AutoFilter function Oracle Open Office Calc : AutoFilter function;applying Oracle Open Office Calc : AutoFilter function;subtotals Oracle Open Office Calc : AutoFormat function -Oracle Open Office Calc : AutoFormat function;defining and applying formats -Oracle Open Office Calc : AutoFormat function;switching on and off Oracle Open Office Calc : AutoInput function on/off Oracle Open Office Calc : automatic addressing in tables Oracle Open Office Calc : automatic captions (Writer) @@ -10878,6 +172,7 @@ Oracle Open Office Calc : automatic line breaks Oracle Open Office Calc : automatic lines/borders in text Oracle Open Office Calc : automatic saving Oracle Open Office Calc : AutoPilots, see wizards +Oracle Open Office Calc : AutoSum button, see sum icon Oracle Open Office Calc : AutoValue (Base) Oracle Open Office Calc : AVEDEV function Oracle Open Office Calc : AVERAGE function @@ -11234,6 +529,7 @@ Oracle Open Office Calc : clipboard;pasting Oracle Open Office Calc : clipboard;pasting formatted/unformatted text Oracle Open Office Calc : clipboard;selection clipboard Oracle Open Office Calc : clipboard;Unix +Oracle Open Office Calc : Clippy, see Help Agent Oracle Open Office Calc : closing Oracle Open Office Calc : closing;documents Oracle Open Office Calc : closing;toolbars @@ -11246,9 +542,9 @@ Oracle Open Office Calc : colors;adding Oracle Open Office Calc : colors;appearance Oracle Open Office Calc : colors;backgrounds Oracle Open Office Calc : colors;charts -Oracle Open Office Calc : colors;fill format Oracle Open Office Calc : colors;fonts Oracle Open Office Calc : colors;grid lines and cells (Calc) +Oracle Open Office Calc : colors;ignored text color Oracle Open Office Calc : colors;models Oracle Open Office Calc : colors;negative numbers Oracle Open Office Calc : colors;not printing @@ -11296,11 +592,9 @@ Oracle Open Office Calc : commands Oracle Open Office Calc : commands;repeating Oracle Open Office Calc : commands;SQL Oracle Open Office Calc : comments -Oracle Open Office Calc : comments;displaying (Calc) Oracle Open Office Calc : comments;help text for cells Oracle Open Office Calc : comments;inserting/editing/deleting/printing Oracle Open Office Calc : comments;on cells -Oracle Open Office Calc : comments;on cells - Inserting and Editing Comments Oracle Open Office Calc : comments;on changes Oracle Open Office Calc : comments;printing Oracle Open Office Calc : comments;printing in text @@ -11311,7 +605,7 @@ Oracle Open Office Calc : common terms;Internet glossary Oracle Open Office Calc : comparisons Oracle Open Office Calc : comparisons;document versions Oracle Open Office Calc : comparisons;operators in Calc -Oracle Open Office Calc : comparisons;operators in default filter dialog +Oracle Open Office Calc : comparisons;operators in standard filter dialog Oracle Open Office Calc : compatibility settings for MS Word import Oracle Open Office Calc : complete screen view Oracle Open Office Calc : COMPLEX function @@ -11370,6 +664,7 @@ Oracle Open Office Calc : controls;showing (Writer) Oracle Open Office Calc : CONVERT function Oracle Open Office Calc : CONVERT_ADD function Oracle Open Office Calc : converters +Oracle Open Office Calc : converters;document converter Oracle Open Office Calc : converters;Euro converter Oracle Open Office Calc : converters;PostScript, UNIX Oracle Open Office Calc : converters;XML @@ -11458,6 +753,7 @@ Oracle Open Office Calc : CTL;complex text layout languages Oracle Open Office Calc : CTL;definition Oracle Open Office Calc : CTL;options Oracle Open Office Calc : CTL;right-to-left sheets +Oracle Open Office Calc : cube drawing Oracle Open Office Calc : CUMIPMT function Oracle Open Office Calc : CUMIPMT_ADD function Oracle Open Office Calc : CUMPRINC function @@ -11650,9 +946,7 @@ Oracle Open Office Calc : decimal system Oracle Open Office Calc : decimal system;converting to Oracle Open Office Calc : decimal tab stops Oracle Open Office Calc : default directories -Oracle Open Office Calc : default filters -Oracle Open Office Calc : default filters;comparison operators -Oracle Open Office Calc : default filters;databases +Oracle Open Office Calc : default filters, see standard filters Oracle Open Office Calc : default printer Oracle Open Office Calc : default printer;setting up Oracle Open Office Calc : default printer;UNIX @@ -11661,8 +955,8 @@ Oracle Open Office Calc : default templates;changing Oracle Open Office Calc : default templates;organizing Oracle Open Office Calc : defaults Oracle Open Office Calc : defaults;currency formats +Oracle Open Office Calc : defaults;document formats in file dialogs Oracle Open Office Calc : defaults;documents -Oracle Open Office Calc : defaults;file formats in file dialogs Oracle Open Office Calc : defaults;file formats in Oracle Open Office Oracle Open Office Calc : defaults;fonts Oracle Open Office Calc : defaults;grids (Writer/Calc) @@ -11729,6 +1023,7 @@ Oracle Open Office Calc : designing;database tables Oracle Open Office Calc : designing;fonts Oracle Open Office Calc : designing;queries (Base) Oracle Open Office Calc : detaching toolbars +Oracle Open Office Calc : Detective Oracle Open Office Calc : determinants Oracle Open Office Calc : determination coefficients Oracle Open Office Calc : DEVSQ function @@ -11753,7 +1048,7 @@ Oracle Open Office Calc : DISC function Oracle Open Office Calc : discounts Oracle Open Office Calc : display options in Data Pilot Oracle Open Office Calc : displaying -Oracle Open Office Calc : displaying;comments (Calc) +Oracle Open Office Calc : displaying;comments Oracle Open Office Calc : displaying;comments in text documents Oracle Open Office Calc : displaying;formulas at any position Oracle Open Office Calc : displaying;formulas instead of results @@ -11911,6 +1206,7 @@ Oracle Open Office Calc : effects Oracle Open Office Calc : effects;font positions Oracle Open Office Calc : effects;fonts Oracle Open Office Calc : effects;Fontwork icons +Oracle Open Office Calc : ellipse drawing Oracle Open Office Calc : empty cells Oracle Open Office Calc : empty cells;counting Oracle Open Office Calc : empty cells;handling of @@ -12046,6 +1342,7 @@ Oracle Open Office Calc : files;saving in other formats Oracle Open Office Calc : files;sending as e-mail Oracle Open Office Calc : files;version numbers Oracle Open Office Calc : files and folders in Oracle Open Office +Oracle Open Office Calc : files, see also documents Oracle Open Office Calc : fill characters with tabulators Oracle Open Office Calc : fill colors for areas Oracle Open Office Calc : fill patterns for areas @@ -12106,8 +1403,8 @@ Oracle Open Office Calc : font sizes;relative changes Oracle Open Office Calc : font sizes;scaling on screen Oracle Open Office Calc : font sizes;text Oracle Open Office Calc : fonts -Oracle Open Office Calc : fonts;adding under UNIX Oracle Open Office Calc : fonts;changing in templates +Oracle Open Office Calc : fonts;color ignored Oracle Open Office Calc : fonts;colors Oracle Open Office Calc : fonts;default settings Oracle Open Office Calc : fonts;effects @@ -12120,7 +1417,7 @@ Oracle Open Office Calc : fonts;specifying several Oracle Open Office Calc : fonts;strikethrough Oracle Open Office Calc : fonts;styles Oracle Open Office Calc : fonts;text objects -Oracle Open Office Calc : Fontwork icons +Oracle Open Office Calc : Fontwork Oracle Open Office Calc : footers Oracle Open Office Calc : footers;backgrounds Oracle Open Office Calc : footers;defining @@ -12210,6 +1507,7 @@ Oracle Open Office Calc : forms;sorting data Oracle Open Office Calc : forms;subforms Oracle Open Office Calc : forms;wizards Oracle Open Office Calc : forms;XForms +Oracle Open Office Calc : Formula Auditing,see Detective Oracle Open Office Calc : formula bar Oracle Open Office Calc : formula bar;accepting inputs Oracle Open Office Calc : formula bar;canceling inputs @@ -12438,16 +1736,20 @@ Oracle Open Office Calc : high contrast mode Oracle Open Office Calc : highlighting Oracle Open Office Calc : highlighting;negative numbers Oracle Open Office Calc : highlighting;values in sheets +Oracle Open Office Calc : highlighting changes Oracle Open Office Calc : Hindi Oracle Open Office Calc : Hindi;entering text Oracle Open Office Calc : Hindi;language settings Oracle Open Office Calc : HLOOKUP function Oracle Open Office Calc : horizontal scrollbars (Writer) Oracle Open Office Calc : hotspots +Oracle Open Office Calc : hotspots;adding to images +Oracle Open Office Calc : hotspots;properties Oracle Open Office Calc : HOUR function Oracle Open Office Calc : HowTos for Calc Oracle Open Office Calc : HowTos for charts Oracle Open Office Calc : HTML +Oracle Open Office Calc : HTML;compatibility settings Oracle Open Office Calc : HTML;definition Oracle Open Office Calc : HTML;export character set Oracle Open Office Calc : HTML;fonts for source display @@ -12487,6 +1789,7 @@ Oracle Open Office Calc : IDE Oracle Open Office Calc : IDE;Basic IDE Oracle Open Office Calc : IF function Oracle Open Office Calc : ignore list for spellcheck +Oracle Open Office Calc : ignored font colors Oracle Open Office Calc : illumination Oracle Open Office Calc : illumination;3D charts Oracle Open Office Calc : illustrations, see pictures @@ -12496,6 +1799,7 @@ Oracle Open Office Calc : image control creation Oracle Open Office Calc : ImageMap Oracle Open Office Calc : ImageMap;definition Oracle Open Office Calc : ImageMap;editor +Oracle Open Office Calc : ImageMap;hotspot properties Oracle Open Office Calc : images Oracle Open Office Calc : images;ImageMap Oracle Open Office Calc : images;inserting and editing bitmaps @@ -12533,6 +1837,7 @@ Oracle Open Office Calc : importing;templates Oracle Open Office Calc : IMPOWER function Oracle Open Office Calc : IMPRODUCT function Oracle Open Office Calc : improvement program +Oracle Open Office Calc : improvement program - Improvement Program Oracle Open Office Calc : IMREAL function Oracle Open Office Calc : IMSIN function Oracle Open Office Calc : IMSQRT function @@ -13102,7 +2407,7 @@ Oracle Open Office Calc : opening;dialog settings Oracle Open Office Calc : opening;documents Oracle Open Office Calc : opening;documents from other formats Oracle Open Office Calc : opening;documents on WebDAV server -Oracle Open Office Calc : opening;files with links +Oracle Open Office Calc : opening;documents with links Oracle Open Office Calc : opening;files, with placeholders Oracle Open Office Calc : opening;forms Oracle Open Office Calc : opening;Microsoft Office files @@ -13115,8 +2420,8 @@ Oracle Open Office Calc : opening;sheets in HTML Oracle Open Office Calc : opening;text csv files Oracle Open Office Calc : opening;XForms Oracle Open Office Calc : operators -Oracle Open Office Calc : operators;default filters Oracle Open Office Calc : operators;formula functions +Oracle Open Office Calc : operators;standard filters Oracle Open Office Calc : optimal column widths Oracle Open Office Calc : optimal row heights Oracle Open Office Calc : optional hyphens (Writer) @@ -13181,6 +2486,7 @@ Oracle Open Office Calc : pages;selecting one to print Oracle Open Office Calc : paint box Oracle Open Office Calc : paint can for applying styles Oracle Open Office Calc : paint can symbol +Oracle Open Office Calc : Paintbrush Oracle Open Office Calc : pair kerning Oracle Open Office Calc : Palm file filters Oracle Open Office Calc : paper formats @@ -13207,6 +2513,7 @@ Oracle Open Office Calc : paragraphs;tab stops Oracle Open Office Calc : parameters Oracle Open Office Calc : parameters;command line Oracle Open Office Calc : parameters;queries (Base) +Oracle Open Office Calc : password as document property Oracle Open Office Calc : passwords for protecting contents Oracle Open Office Calc : pasting Oracle Open Office Calc : pasting;cell ranges @@ -13330,7 +2637,6 @@ Oracle Open Office Calc : presentations;saving in other formats Oracle Open Office Calc : presentations;sending as e-mail Oracle Open Office Calc : presentations;starting with wizard Oracle Open Office Calc : presentations;wizards -Oracle Open Office Calc : Presenter Console shortcuts Oracle Open Office Calc : press buttons, see push buttons Oracle Open Office Calc : previews Oracle Open Office Calc : previews;fonts lists @@ -13411,6 +2717,7 @@ Oracle Open Office Calc : properties;fields in databases Oracle Open Office Calc : properties;files Oracle Open Office Calc : properties;form controls Oracle Open Office Calc : properties;forms +Oracle Open Office Calc : properties;hotspots Oracle Open Office Calc : properties;printers Oracle Open Office Calc : properties;smooth lines in line charts/XY charts Oracle Open Office Calc : protected contents @@ -13496,6 +2803,7 @@ Oracle Open Office Calc : records;inserting comments Oracle Open Office Calc : records;protecting Oracle Open Office Calc : records;saving Oracle Open Office Calc : records;searching in databases +Oracle Open Office Calc : rectangle drawing Oracle Open Office Calc : rectangles with round corners Oracle Open Office Calc : recursions in spreadsheets Oracle Open Office Calc : redo command @@ -13589,6 +2897,7 @@ Oracle Open Office Calc : review function;accepting or rejecting changes Oracle Open Office Calc : review function;comparing documents Oracle Open Office Calc : review function;protecting records Oracle Open Office Calc : review function;recording changes example +Oracle Open Office Calc : review function;tracking changes Oracle Open Office Calc : rich text control Oracle Open Office Calc : right alignment of paragraphs Oracle Open Office Calc : RIGHT function @@ -13754,7 +3063,6 @@ Oracle Open Office Calc : settings Oracle Open Office Calc : settings;printers Oracle Open Office Calc : settings;program configuration Oracle Open Office Calc : settings;proxies -Oracle Open Office Calc : settings;tracking changes Oracle Open Office Calc : settings;views Oracle Open Office Calc : SGML Oracle Open Office Calc : SGML;definition @@ -13763,6 +3071,7 @@ Oracle Open Office Calc : shadows;areas Oracle Open Office Calc : shadows;borders Oracle Open Office Calc : shadows;characters Oracle Open Office Calc : shadows;characters, using context menu +Oracle Open Office Calc : shapes Oracle Open Office Calc : shared libraries Oracle Open Office Calc : shared libraries;programming Oracle Open Office Calc : sharing documents @@ -13830,7 +3139,7 @@ Oracle Open Office Calc : signing documents with digital signatures Oracle Open Office Calc : similarity search Oracle Open Office Calc : simple handles (Writer) Oracle Open Office Calc : simplified Chinese -Oracle Open Office Calc : simplified Chinese;translating to traditional Chinese +Oracle Open Office Calc : simplified Chinese;conversion to traditional Chinese Oracle Open Office Calc : SIN function Oracle Open Office Calc : single sign on options Oracle Open Office Calc : single-line spacing in text @@ -13949,7 +3258,9 @@ Oracle Open Office Calc : standard deviations in statistics;based on a sample Oracle Open Office Calc : standard errors Oracle Open Office Calc : standard errors;array functions Oracle Open Office Calc : standard errors;statistical functions -Oracle Open Office Calc : standard filters in databases +Oracle Open Office Calc : standard filters +Oracle Open Office Calc : standard filters;comparison operators +Oracle Open Office Calc : standard filters;databases Oracle Open Office Calc : standard printer under UNIX Oracle Open Office Calc : STANDARDIZE function Oracle Open Office Calc : start center @@ -14232,8 +3543,9 @@ Oracle Open Office Calc : traces;precedents and dependents Oracle Open Office Calc : traces;precedents for multiple cells Oracle Open Office Calc : traces;refreshing Oracle Open Office Calc : tracing errors +Oracle Open Office Calc : Track Changes, see review function Oracle Open Office Calc : traditional Chinese -Oracle Open Office Calc : traditional Chinese;translating to simplified chinese +Oracle Open Office Calc : traditional Chinese;conversion to simplified Chinese Oracle Open Office Calc : transparency Oracle Open Office Calc : transparency;areas Oracle Open Office Calc : transparency;off for faster printing @@ -14247,6 +3559,7 @@ Oracle Open Office Calc : treasury bills;rates of return Oracle Open Office Calc : tree view of Help Oracle Open Office Calc : TREND function Oracle Open Office Calc : trend lines in charts +Oracle Open Office Calc : triangle drawing Oracle Open Office Calc : trigonometric functions Oracle Open Office Calc : TRIM function Oracle Open Office Calc : TRIMMEAN function @@ -14255,7 +3568,6 @@ Oracle Open Office Calc : TRUNC function Oracle Open Office Calc : TTEST function Oracle Open Office Calc : TYPE function Oracle Open Office Calc : typefaces -Oracle Open Office Calc : typefaces;adding under UNIX Oracle Open Office Calc : typefaces;formats Oracle Open Office Calc : typography Oracle Open Office Calc : typography;Asian @@ -14477,6 +3789,5080 @@ Oracle Open Office Calc : zooming;pictures Oracle Open Office Calc : zooming;reducing page views Oracle Open Office Calc : zooming;status bar Oracle Open Office Calc : ZTEST function +Oracle Open Office Impress : 3D charts +Oracle Open Office Impress : 3D objects +Oracle Open Office Impress : 3D objects;assembling +Oracle Open Office Impress : 3D objects;generating +Oracle Open Office Impress : 3D objects;inserting +Oracle Open Office Impress : 3D rotation objects +Oracle Open Office Impress : 3D rotation objects;converting to +Oracle Open Office Impress : 3D rotation objects;generating +Oracle Open Office Impress : 3D scenes +Oracle Open Office Impress : 3D scenes;creating +Oracle Open Office Impress : 3D text creation +Oracle Open Office Impress : abbreviation replacement +Oracle Open Office Impress : absolute hyperlinks +Oracle Open Office Impress : absolute saving of URLs +Oracle Open Office Impress : accents +Oracle Open Office Impress : Access databases (base) +Oracle Open Office Impress : access rights for database tables (Base) +Oracle Open Office Impress : accessibility +Oracle Open Office Impress : accessibility;general shortcuts +Oracle Open Office Impress : accessibility;options +Oracle Open Office Impress : accessibility;Oracle Open Office assistive technology +Oracle Open Office Impress : accessibility;Oracle Open Office Draw +Oracle Open Office Impress : accessibility;Oracle Open Office features +Oracle Open Office Impress : accessibility;Oracle Open Office Impress +Oracle Open Office Impress : activating +Oracle Open Office Impress : activating;context menus +Oracle Open Office Impress : activating;Error Report Tool +Oracle Open Office Impress : activating;extended help tips +Oracle Open Office Impress : activating;plug-ins +Oracle Open Office Impress : ActiveX control +Oracle Open Office Impress : Adabas D databases (base) +Oracle Open Office Impress : add-ons, see UNO components +Oracle Open Office Impress : additional selection mode +Oracle Open Office Impress : address books +Oracle Open Office Impress : address books;LDAP server (Base) +Oracle Open Office Impress : address books;registering +Oracle Open Office Impress : address labels from databases +Oracle Open Office Impress : ADO databases (Base) +Oracle Open Office Impress : Agenda Wizard +Oracle Open Office Impress : aging filter +Oracle Open Office Impress : aligning +Oracle Open Office Impress : aligning;2D charts +Oracle Open Office Impress : aligning;cells +Oracle Open Office Impress : aligning;draw objects +Oracle Open Office Impress : aligning;objects +Oracle Open Office Impress : aligning;paragraphs +Oracle Open Office Impress : aligning;tables in text +Oracle Open Office Impress : aligning;text objects +Oracle Open Office Impress : aligning;titles in charts +Oracle Open Office Impress : allowing +Oracle Open Office Impress : allowing;effects +Oracle Open Office Impress : allowing;interaction +Oracle Open Office Impress : alternative fonts +Oracle Open Office Impress : ampersand symbol, see also operators +Oracle Open Office Impress : anchors +Oracle Open Office Impress : anchors;changing +Oracle Open Office Impress : anchors;displaying (Calc) +Oracle Open Office Impress : anchors;types/positions for draw objects +Oracle Open Office Impress : animated GIFs +Oracle Open Office Impress : animated slide transitions +Oracle Open Office Impress : animation effects +Oracle Open Office Impress : animations +Oracle Open Office Impress : animations;accessibility options +Oracle Open Office Impress : animations;editing +Oracle Open Office Impress : animations;list of +Oracle Open Office Impress : animations;saving as GIFs +Oracle Open Office Impress : appearance options +Oracle Open Office Impress : Arabic +Oracle Open Office Impress : Arabic;entering text +Oracle Open Office Impress : Arabic;language settings +Oracle Open Office Impress : area charts +Oracle Open Office Impress : areas +Oracle Open Office Impress : areas;bitmap patterns +Oracle Open Office Impress : areas;from connected lines +Oracle Open Office Impress : areas;hatched/dotted +Oracle Open Office Impress : areas;shadows +Oracle Open Office Impress : areas;slanting +Oracle Open Office Impress : areas;styles +Oracle Open Office Impress : areas;transparency +Oracle Open Office Impress : arguments in command line +Oracle Open Office Impress : arranging +Oracle Open Office Impress : arranging;objects +Oracle Open Office Impress : arranging;objects (guide) +Oracle Open Office Impress : arranging;slides +Oracle Open Office Impress : arrows +Oracle Open Office Impress : arrows;defining arrow heads +Oracle Open Office Impress : arrows;defining arrow lines +Oracle Open Office Impress : arrows;drawing in text +Oracle Open Office Impress : arrows;inserting +Oracle Open Office Impress : arrows;loading arrow styles +Oracle Open Office Impress : ASCII +Oracle Open Office Impress : ASCII;definition +Oracle Open Office Impress : Asian languages +Oracle Open Office Impress : Asian languages;enabling +Oracle Open Office Impress : Asian Phonetic Guide +Oracle Open Office Impress : Asian typography +Oracle Open Office Impress : assembled objects in 3D +Oracle Open Office Impress : assigning scripts +Oracle Open Office Impress : assistive technology in Oracle Open Office +Oracle Open Office Impress : attaching toolbars +Oracle Open Office Impress : attachments in e-mails +Oracle Open Office Impress : attributes +Oracle Open Office Impress : attributes;objects with +Oracle Open Office Impress : audio +Oracle Open Office Impress : authors +Oracle Open Office Impress : auto reloading HTML documents +Oracle Open Office Impress : AutoAbstract function for sending text to presentations +Oracle Open Office Impress : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Impress : AutoComplete function in text and list boxes +Oracle Open Office Impress : AutoCorrect function +Oracle Open Office Impress : AutoCorrect function;context menu +Oracle Open Office Impress : AutoCorrect function;options +Oracle Open Office Impress : AutoCorrect function;pictures and frames +Oracle Open Office Impress : AutoCorrect function;quotes +Oracle Open Office Impress : AutoCorrect function;replacement table +Oracle Open Office Impress : AutoCorrect function;switching on and off +Oracle Open Office Impress : AutoCorrect function;URL recognition +Oracle Open Office Impress : automatic captions (Writer) +Oracle Open Office Impress : automatic control focus +Oracle Open Office Impress : automatic hyperlink formatting +Oracle Open Office Impress : automatic line breaks +Oracle Open Office Impress : automatic lines/borders in text +Oracle Open Office Impress : automatic saving +Oracle Open Office Impress : automatic slide changes +Oracle Open Office Impress : automatic slide changes;rehearse timings +Oracle Open Office Impress : automatic slide shows +Oracle Open Office Impress : automatic slide transition +Oracle Open Office Impress : AutoPilots, see wizards +Oracle Open Office Impress : AutoValue (Base) +Oracle Open Office Impress : averages in charts +Oracle Open Office Impress : axes +Oracle Open Office Impress : axes;better scaling +Oracle Open Office Impress : axes;formatting +Oracle Open Office Impress : axes;formatting grids +Oracle Open Office Impress : axes;inserting grids +Oracle Open Office Impress : axes;interval marks +Oracle Open Office Impress : axes;showing axes in charts +Oracle Open Office Impress : axes in charts +Oracle Open Office Impress : backgrounds +Oracle Open Office Impress : backgrounds;changing +Oracle Open Office Impress : backgrounds;defining colors/pictures +Oracle Open Office Impress : backgrounds;deleting unused +Oracle Open Office Impress : backgrounds;frames/sections/indexes +Oracle Open Office Impress : backgrounds;inserting from Gallery +Oracle Open Office Impress : backgrounds;normal view +Oracle Open Office Impress : backgrounds;notes +Oracle Open Office Impress : backgrounds;printing +Oracle Open Office Impress : backgrounds;slides +Oracle Open Office Impress : backing window +Oracle Open Office Impress : backups +Oracle Open Office Impress : backups;automatic +Oracle Open Office Impress : backups;documents +Oracle Open Office Impress : bar charts +Oracle Open Office Impress : Basic +Oracle Open Office Impress : Basic;fonts for source display +Oracle Open Office Impress : Basic;programming +Oracle Open Office Impress : Basic;recording macros +Oracle Open Office Impress : basic fonts +Oracle Open Office Impress : behind object command +Oracle Open Office Impress : Bézier curves +Oracle Open Office Impress : Bézier curves;control points in presentations +Oracle Open Office Impress : bi-directional writing +Oracle Open Office Impress : binding space +Oracle Open Office Impress : bitmaps +Oracle Open Office Impress : bitmaps;converting to +Oracle Open Office Impress : bitmaps;converting to vector graphics +Oracle Open Office Impress : bitmaps;inserting and editing +Oracle Open Office Impress : bitmaps;off for faster printing +Oracle Open Office Impress : bitmaps;patterns +Oracle Open Office Impress : bitmaps;replacing colors +Oracle Open Office Impress : black and white display +Oracle Open Office Impress : black and white printing +Oracle Open Office Impress : black and white view +Oracle Open Office Impress : black printing in Calc +Oracle Open Office Impress : block selection mode +Oracle Open Office Impress : bold +Oracle Open Office Impress : bold;AutoFormat function +Oracle Open Office Impress : bold;text +Oracle Open Office Impress : bookmarks +Oracle Open Office Impress : bookmarks;Help +Oracle Open Office Impress : borders +Oracle Open Office Impress : borders;arranging +Oracle Open Office Impress : borders;cells on screen (Calc) +Oracle Open Office Impress : borders;for paragraphs +Oracle Open Office Impress : borders;for tables +Oracle Open Office Impress : borders;shadows +Oracle Open Office Impress : borders;table boundaries (Writer) +Oracle Open Office Impress : borders, see also frames +Oracle Open Office Impress : bound fields +Oracle Open Office Impress : bound fields;controls +Oracle Open Office Impress : boundaries of tables (Writer) +Oracle Open Office Impress : break display (Writer) +Oracle Open Office Impress : breaking object connections +Oracle Open Office Impress : brochures +Oracle Open Office Impress : brochures;printing several +Oracle Open Office Impress : bubble charts +Oracle Open Office Impress : build numbers of Oracle Open Office +Oracle Open Office Impress : bullet lists +Oracle Open Office Impress : bullet lists;formatting options +Oracle Open Office Impress : bullets +Oracle Open Office Impress : bullets;paragraphs +Oracle Open Office Impress : bullets;replacing +Oracle Open Office Impress : bullets;turning off +Oracle Open Office Impress : business cards +Oracle Open Office Impress : business cards;creating and synchronizing +Oracle Open Office Impress : business cards;using templates +Oracle Open Office Impress : button bars, see toolbars +Oracle Open Office Impress : buttons +Oracle Open Office Impress : buttons;adding push buttons +Oracle Open Office Impress : buttons;big/small +Oracle Open Office Impress : buttons;editing hyperlink buttons +Oracle Open Office Impress : buttons;form functions +Oracle Open Office Impress : buttons;toolbars +Oracle Open Office Impress : cache for graphics +Oracle Open Office Impress : calculating +Oracle Open Office Impress : calculating;iterative references (Calc) +Oracle Open Office Impress : calculating;regression curves +Oracle Open Office Impress : callouts +Oracle Open Office Impress : callouts;drawings +Oracle Open Office Impress : callouts;inserting in presentations +Oracle Open Office Impress : capital letters +Oracle Open Office Impress : capital letters;AutoCorrect function +Oracle Open Office Impress : capital letters;font effects +Oracle Open Office Impress : captions +Oracle Open Office Impress : captions;automatic captions (Writer) +Oracle Open Office Impress : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Impress : captions, see also labels/callouts +Oracle Open Office Impress : cascading update (Base) +Oracle Open Office Impress : case sensitivity +Oracle Open Office Impress : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Impress : case sensitivity;searching +Oracle Open Office Impress : cells +Oracle Open Office Impress : cells;aligning +Oracle Open Office Impress : cells;coloring (Calc) +Oracle Open Office Impress : cells;cursor positions after input (Calc) +Oracle Open Office Impress : cells;formatting without effect (Calc) +Oracle Open Office Impress : cells;line breaks +Oracle Open Office Impress : cells;linked to controls +Oracle Open Office Impress : cells;number of +Oracle Open Office Impress : cells;pasting +Oracle Open Office Impress : cells;resetting formats +Oracle Open Office Impress : cells;showing grid lines (Calc) +Oracle Open Office Impress : centered text +Oracle Open Office Impress : centimeters +Oracle Open Office Impress : certificates +Oracle Open Office Impress : changes +Oracle Open Office Impress : changes;accepting or rejecting +Oracle Open Office Impress : changes;comparing to original +Oracle Open Office Impress : changes;protecting +Oracle Open Office Impress : changes;recording +Oracle Open Office Impress : changes;review function +Oracle Open Office Impress : changes;showing +Oracle Open Office Impress : changing +Oracle Open Office Impress : changing;document titles +Oracle Open Office Impress : changing;file associations in Setup program +Oracle Open Office Impress : changing;icon sizes +Oracle Open Office Impress : changing;layer properties +Oracle Open Office Impress : changing;layout for handouts +Oracle Open Office Impress : changing;links +Oracle Open Office Impress : changing;order of slides +Oracle Open Office Impress : changing;slide layouts +Oracle Open Office Impress : changing;work directory +Oracle Open Office Impress : changing, see also editing and replacing +Oracle Open Office Impress : character styles +Oracle Open Office Impress : character styles;language selection +Oracle Open Office Impress : characters +Oracle Open Office Impress : characters;alternative fonts +Oracle Open Office Impress : characters;Asian layout +Oracle Open Office Impress : characters;bold +Oracle Open Office Impress : characters;coloring +Oracle Open Office Impress : characters;converting to curves +Oracle Open Office Impress : characters;displaying only on screen (Writer) +Oracle Open Office Impress : characters;enabling CTL and Asian characters +Oracle Open Office Impress : characters;font effects +Oracle Open Office Impress : characters;fonts and formats +Oracle Open Office Impress : characters;hyperlinks +Oracle Open Office Impress : characters;italics +Oracle Open Office Impress : characters;language selection +Oracle Open Office Impress : characters;shadowed +Oracle Open Office Impress : characters;spacing +Oracle Open Office Impress : characters;special +Oracle Open Office Impress : characters;underlining +Oracle Open Office Impress : charcoal sketches filter +Oracle Open Office Impress : chart legends +Oracle Open Office Impress : chart legends;hiding +Oracle Open Office Impress : chart legends;showing icons with labels +Oracle Open Office Impress : chart types +Oracle Open Office Impress : chart types;area +Oracle Open Office Impress : chart types;bubble +Oracle Open Office Impress : chart types;column and bar +Oracle Open Office Impress : chart types;column and line +Oracle Open Office Impress : chart types;line +Oracle Open Office Impress : chart types;net +Oracle Open Office Impress : chart types;pie/donut +Oracle Open Office Impress : chart types;stock +Oracle Open Office Impress : chart types;XY (scatter) +Oracle Open Office Impress : charts +Oracle Open Office Impress : charts;3D views +Oracle Open Office Impress : charts;aligning +Oracle Open Office Impress : charts;arranging within stacks +Oracle Open Office Impress : charts;bars with textures +Oracle Open Office Impress : charts;choosing chart types +Oracle Open Office Impress : charts;colors +Oracle Open Office Impress : charts;copying with link to source cell range +Oracle Open Office Impress : charts;data labels +Oracle Open Office Impress : charts;displaying (Calc) +Oracle Open Office Impress : charts;editing axes +Oracle Open Office Impress : charts;editing data +Oracle Open Office Impress : charts;editing legends +Oracle Open Office Impress : charts;editing titles +Oracle Open Office Impress : charts;formatting areas +Oracle Open Office Impress : charts;formatting floors +Oracle Open Office Impress : charts;formatting walls +Oracle Open Office Impress : charts;inserting +Oracle Open Office Impress : charts;overview +Oracle Open Office Impress : charts;positioning axes +Oracle Open Office Impress : charts;properties +Oracle Open Office Impress : charts;reorganizing +Oracle Open Office Impress : charts;scaling axes +Oracle Open Office Impress : charts;scaling text +Oracle Open Office Impress : charts;shortcuts +Oracle Open Office Impress : charts;showing axes +Oracle Open Office Impress : charts;updating automatically (Writer) +Oracle Open Office Impress : check box creation +Oracle Open Office Impress : Chinese writing systems +Oracle Open Office Impress : choosing printers +Oracle Open Office Impress : circle drawings +Oracle Open Office Impress : circle segments +Oracle Open Office Impress : circles +Oracle Open Office Impress : circles;of objects +Oracle Open Office Impress : Client Side ImageMap +Oracle Open Office Impress : clipboard +Oracle Open Office Impress : clipboard;cutting +Oracle Open Office Impress : clipboard;pasting +Oracle Open Office Impress : clipboard;pasting formatted/unformatted text +Oracle Open Office Impress : clipboard;selection clipboard +Oracle Open Office Impress : clipboard;Unix +Oracle Open Office Impress : Clippy, see Help Agent +Oracle Open Office Impress : closing +Oracle Open Office Impress : closing;documents +Oracle Open Office Impress : closing;shapes +Oracle Open Office Impress : closing;toolbars +Oracle Open Office Impress : collaboration +Oracle Open Office Impress : color bar +Oracle Open Office Impress : colors +Oracle Open Office Impress : colors;adding +Oracle Open Office Impress : colors;appearance +Oracle Open Office Impress : colors;backgrounds +Oracle Open Office Impress : colors;charts +Oracle Open Office Impress : colors;default colors +Oracle Open Office Impress : colors;defining and saving +Oracle Open Office Impress : colors;defining gradients interactively +Oracle Open Office Impress : colors;displaying presentations +Oracle Open Office Impress : colors;fonts +Oracle Open Office Impress : colors;grid lines and cells (Calc) +Oracle Open Office Impress : colors;ignored text color +Oracle Open Office Impress : colors;loading lists +Oracle Open Office Impress : colors;models +Oracle Open Office Impress : colors;not printing +Oracle Open Office Impress : colors;printing in grayscale +Oracle Open Office Impress : colors;replacing +Oracle Open Office Impress : colors;restriction (Calc) +Oracle Open Office Impress : colors;selection +Oracle Open Office Impress : column and line charts +Oracle Open Office Impress : column charts +Oracle Open Office Impress : column headers +Oracle Open Office Impress : column headers;displaying (Calc) +Oracle Open Office Impress : column headers;highlighting (Calc) +Oracle Open Office Impress : columns +Oracle Open Office Impress : columns;inserting +Oracle Open Office Impress : columns;setting with the mouse +Oracle Open Office Impress : combination charts +Oracle Open Office Impress : combining +Oracle Open Office Impress : combining;3D objects +Oracle Open Office Impress : combining;draw objects +Oracle Open Office Impress : combining;undoing +Oracle Open Office Impress : combo box creation +Oracle Open Office Impress : command button creation +Oracle Open Office Impress : command buttons, see push buttons +Oracle Open Office Impress : command line parameters +Oracle Open Office Impress : commands +Oracle Open Office Impress : commands;repeating +Oracle Open Office Impress : commands;SQL +Oracle Open Office Impress : comments +Oracle Open Office Impress : comments;inserting/editing/deleting/printing +Oracle Open Office Impress : comments;on changes +Oracle Open Office Impress : comments;printing in text +Oracle Open Office Impress : common terms +Oracle Open Office Impress : common terms;Chinese dictionary +Oracle Open Office Impress : common terms;glossaries +Oracle Open Office Impress : common terms;Internet glossary +Oracle Open Office Impress : comparisons +Oracle Open Office Impress : comparisons;document versions +Oracle Open Office Impress : comparisons;operators in standard filter dialog +Oracle Open Office Impress : compatibility settings for MS Word import +Oracle Open Office Impress : complete screen view +Oracle Open Office Impress : complex text layout +Oracle Open Office Impress : complex text layout;definition +Oracle Open Office Impress : complex text layout;enabling +Oracle Open Office Impress : complex text layout, see CTL +Oracle Open Office Impress : compose key to insert special characters +Oracle Open Office Impress : concatenation, see ampersand symbol +Oracle Open Office Impress : conditional separators +Oracle Open Office Impress : conditions +Oracle Open Office Impress : conditions;in number formats +Oracle Open Office Impress : conditions;items in Data Navigator +Oracle Open Office Impress : cones +Oracle Open Office Impress : Configuration Manager +Oracle Open Office Impress : configuring +Oracle Open Office Impress : configuring;fax icon +Oracle Open Office Impress : configuring;Oracle Open Office +Oracle Open Office Impress : configuring;toolbars +Oracle Open Office Impress : connecting +Oracle Open Office Impress : connecting;draw objects +Oracle Open Office Impress : connecting;lines +Oracle Open Office Impress : connecting;paths and objects +Oracle Open Office Impress : connections to data sources (Base) +Oracle Open Office Impress : connectors +Oracle Open Office Impress : connectors;properties of +Oracle Open Office Impress : connectors;using +Oracle Open Office Impress : constructing shapes +Oracle Open Office Impress : contents protection +Oracle Open Office Impress : context menus +Oracle Open Office Impress : contours +Oracle Open Office Impress : contours;converting to +Oracle Open Office Impress : control point display in presentations +Oracle Open Office Impress : control points definition +Oracle Open Office Impress : controls +Oracle Open Office Impress : controls;activating in forms +Oracle Open Office Impress : controls;adding to documents +Oracle Open Office Impress : controls;arranging in forms +Oracle Open Office Impress : controls;arranging within stacks +Oracle Open Office Impress : controls;assigning data sources +Oracle Open Office Impress : controls;assigning macros (Basic) +Oracle Open Office Impress : controls;bound fields/list contents/linked cells +Oracle Open Office Impress : controls;events +Oracle Open Office Impress : controls;focus +Oracle Open Office Impress : controls;formatted fields +Oracle Open Office Impress : controls;grouping +Oracle Open Office Impress : controls;hidden +Oracle Open Office Impress : controls;inserting +Oracle Open Office Impress : controls;multi-line titles +Oracle Open Office Impress : controls;positions and sizes +Oracle Open Office Impress : controls;printing +Oracle Open Office Impress : controls;properties of form controls +Oracle Open Office Impress : controls;properties of table controls +Oracle Open Office Impress : controls;reference by SQL +Oracle Open Office Impress : controls;rich text control +Oracle Open Office Impress : controls;select mode +Oracle Open Office Impress : controls;showing (Writer) +Oracle Open Office Impress : converters +Oracle Open Office Impress : converters;document converter +Oracle Open Office Impress : converters;Euro converter +Oracle Open Office Impress : converters;PostScript, UNIX +Oracle Open Office Impress : converters;XML +Oracle Open Office Impress : converting +Oracle Open Office Impress : converting;bitmaps to polygons +Oracle Open Office Impress : converting;Hangul/Hanja +Oracle Open Office Impress : converting;metrics +Oracle Open Office Impress : converting;Microsoft documents +Oracle Open Office Impress : converting;Oracle Open Office documents +Oracle Open Office Impress : converting;Pocket PC formats +Oracle Open Office Impress : converting;points +Oracle Open Office Impress : converting;text to curves +Oracle Open Office Impress : converting;to bitmaps +Oracle Open Office Impress : converting;to contours +Oracle Open Office Impress : converting;to curves, polygons, 3D +Oracle Open Office Impress : converting;to metafile format (WMF) +Oracle Open Office Impress : copies +Oracle Open Office Impress : copies;printing +Oracle Open Office Impress : copying +Oracle Open Office Impress : copying;by drag and drop +Oracle Open Office Impress : copying;data from text documents +Oracle Open Office Impress : copying;datasource records in spreadsheets +Oracle Open Office Impress : copying;draw objects +Oracle Open Office Impress : copying;draw objects between documents +Oracle Open Office Impress : copying;formatting +Oracle Open Office Impress : copying;from data source view +Oracle Open Office Impress : copying;from Gallery +Oracle Open Office Impress : copying;in Unix +Oracle Open Office Impress : copying;pictures, between documents +Oracle Open Office Impress : copying;sheet areas, to text documents +Oracle Open Office Impress : copying;slides +Oracle Open Office Impress : copying;text from other documents +Oracle Open Office Impress : copying;to Gallery +Oracle Open Office Impress : copyright for Oracle Open Office +Oracle Open Office Impress : corner points +Oracle Open Office Impress : corner roundings +Oracle Open Office Impress : covered objects +Oracle Open Office Impress : crash reports +Oracle Open Office Impress : criteria of query design (Base) +Oracle Open Office Impress : cropping pictures +Oracle Open Office Impress : cross-fading +Oracle Open Office Impress : cross-fading;creating cross-fades +Oracle Open Office Impress : cross-fading;slides +Oracle Open Office Impress : cross-fading;two draw objects +Oracle Open Office Impress : CTL +Oracle Open Office Impress : CTL;(not) wrapping words +Oracle Open Office Impress : CTL;complex text layout languages +Oracle Open Office Impress : CTL;definition +Oracle Open Office Impress : CTL;options +Oracle Open Office Impress : cube drawing +Oracle Open Office Impress : cubes +Oracle Open Office Impress : currencies +Oracle Open Office Impress : currencies;converters +Oracle Open Office Impress : currencies;format codes +Oracle Open Office Impress : currency field creation +Oracle Open Office Impress : currency formats +Oracle Open Office Impress : cursor +Oracle Open Office Impress : cursor;allowing in protected areas (Writer) +Oracle Open Office Impress : cursor;in read-only text +Oracle Open Office Impress : cursor;quickly moving to an object +Oracle Open Office Impress : curves +Oracle Open Office Impress : curves;converting text to +Oracle Open Office Impress : curves;drawing +Oracle Open Office Impress : curves;editing +Oracle Open Office Impress : curves;editing points +Oracle Open Office Impress : curves;properties in line charts/XY charts +Oracle Open Office Impress : curves;toolbar +Oracle Open Office Impress : custom animation +Oracle Open Office Impress : custom colors +Oracle Open Office Impress : custom dictionaries +Oracle Open Office Impress : custom dictionaries;editing +Oracle Open Office Impress : custom gradients +Oracle Open Office Impress : custom hyphens (Writer) +Oracle Open Office Impress : custom quotes +Oracle Open Office Impress : custom slide shows +Oracle Open Office Impress : custom templates +Oracle Open Office Impress : customizing +Oracle Open Office Impress : customizing;events +Oracle Open Office Impress : customizing;keyboard +Oracle Open Office Impress : customizing;menus +Oracle Open Office Impress : customizing;Oracle Open Office +Oracle Open Office Impress : customizing;round corners +Oracle Open Office Impress : customizing;toolbars +Oracle Open Office Impress : cutting +Oracle Open Office Impress : cylinders +Oracle Open Office Impress : dashes +Oracle Open Office Impress : data +Oracle Open Office Impress : data;filtering in forms +Oracle Open Office Impress : data;forms and subforms +Oracle Open Office Impress : data;read-only +Oracle Open Office Impress : data;sorting in forms +Oracle Open Office Impress : data;user data +Oracle Open Office Impress : data binding change in XForms +Oracle Open Office Impress : data labels in charts +Oracle Open Office Impress : Data Navigator +Oracle Open Office Impress : Data Navigator;adding/editing items +Oracle Open Office Impress : Data Navigator;display options +Oracle Open Office Impress : data ranges in charts +Oracle Open Office Impress : data series +Oracle Open Office Impress : data source browser +Oracle Open Office Impress : data source explorer +Oracle Open Office Impress : data source view +Oracle Open Office Impress : data source view;drag and drop +Oracle Open Office Impress : data source view;overview +Oracle Open Office Impress : data source view;showing +Oracle Open Office Impress : data sources +Oracle Open Office Impress : data sources;as tables +Oracle Open Office Impress : data sources;connection settings (Base) +Oracle Open Office Impress : data sources;copying records to spreadsheets +Oracle Open Office Impress : data sources;displaying current +Oracle Open Office Impress : data sources;LDAP server (Base) +Oracle Open Office Impress : data sources;Oracle Open Office Base +Oracle Open Office Impress : data sources;registering address books +Oracle Open Office Impress : data sources;reports +Oracle Open Office Impress : data sources;setting for stock charts +Oracle Open Office Impress : data sources;viewing +Oracle Open Office Impress : data structure of XForms +Oracle Open Office Impress : data values in charts +Oracle Open Office Impress : data, see also values +Oracle Open Office Impress : database contents +Oracle Open Office Impress : database contents;inserting as tables +Oracle Open Office Impress : database contents;inserting as text +Oracle Open Office Impress : database reports +Oracle Open Office Impress : Database Wizard (Base) +Oracle Open Office Impress : databases +Oracle Open Office Impress : databases;administration through SQL (Base) +Oracle Open Office Impress : databases;ADO (Base) +Oracle Open Office Impress : databases;connecting (Base) +Oracle Open Office Impress : databases;creating +Oracle Open Office Impress : databases;creating labels +Oracle Open Office Impress : databases;creating queries +Oracle Open Office Impress : databases;creating reports +Oracle Open Office Impress : databases;creating tables +Oracle Open Office Impress : databases;deleting (Base) +Oracle Open Office Impress : databases;drag and drop (Base) +Oracle Open Office Impress : databases;editing tables +Oracle Open Office Impress : databases;form filters +Oracle Open Office Impress : databases;formats (Base) +Oracle Open Office Impress : databases;importing/exporting +Oracle Open Office Impress : databases;JDBC (Base) +Oracle Open Office Impress : databases;main page (Base) +Oracle Open Office Impress : databases;ODBC (Base) +Oracle Open Office Impress : databases;overview +Oracle Open Office Impress : databases;registering (Base) +Oracle Open Office Impress : databases;searching records +Oracle Open Office Impress : databases;shortcut keys +Oracle Open Office Impress : databases;sorting +Oracle Open Office Impress : databases;standard filters +Oracle Open Office Impress : databases;text formats +Oracle Open Office Impress : databases;viewing +Oracle Open Office Impress : date fields +Oracle Open Office Impress : date fields;creating +Oracle Open Office Impress : date fields;properties +Oracle Open Office Impress : date formats +Oracle Open Office Impress : date on all slides +Oracle Open Office Impress : dates +Oracle Open Office Impress : dates;default (Calc) +Oracle Open Office Impress : dates;fixed +Oracle Open Office Impress : dates;printing in presentations +Oracle Open Office Impress : dates;start 1900/01/01 (Calc) +Oracle Open Office Impress : dates;start 1904/01/01 (Calc) +Oracle Open Office Impress : dates;variable +Oracle Open Office Impress : dBASE +Oracle Open Office Impress : dBASE;database settings (Base) +Oracle Open Office Impress : DDE +Oracle Open Office Impress : DDE;definition +Oracle Open Office Impress : deactivating +Oracle Open Office Impress : deactivating;plug-ins +Oracle Open Office Impress : decimal places displayed (Calc) +Oracle Open Office Impress : decimal separator key +Oracle Open Office Impress : decimal tab stops +Oracle Open Office Impress : decreasing sizes of views +Oracle Open Office Impress : default directories +Oracle Open Office Impress : default filters, see standard filters +Oracle Open Office Impress : default printer +Oracle Open Office Impress : default printer;setting up +Oracle Open Office Impress : default printer;UNIX +Oracle Open Office Impress : default templates +Oracle Open Office Impress : default templates;changing +Oracle Open Office Impress : default templates;organizing +Oracle Open Office Impress : defaults +Oracle Open Office Impress : defaults;document formats in file dialogs +Oracle Open Office Impress : defaults;documents +Oracle Open Office Impress : defaults;file formats in Oracle Open Office +Oracle Open Office Impress : defaults;fonts +Oracle Open Office Impress : defaults;grids (Writer/Calc) +Oracle Open Office Impress : defaults;languages +Oracle Open Office Impress : defaults;number formats +Oracle Open Office Impress : defaults;of saving +Oracle Open Office Impress : defaults;program configuration +Oracle Open Office Impress : defaults;tab stops in text +Oracle Open Office Impress : defaults;views +Oracle Open Office Impress : defining +Oracle Open Office Impress : defining;arrowheads and other line ends +Oracle Open Office Impress : defining;colors +Oracle Open Office Impress : defining;gradients +Oracle Open Office Impress : defining;line styles +Oracle Open Office Impress : defining;paragraph borders +Oracle Open Office Impress : defining;queries (Base) +Oracle Open Office Impress : defining;table borders +Oracle Open Office Impress : deleting +Oracle Open Office Impress : deleting;all direct formatting +Oracle Open Office Impress : deleting;animation effects +Oracle Open Office Impress : deleting;comments +Oracle Open Office Impress : deleting;databases (Base) +Oracle Open Office Impress : deleting;hyperlinks +Oracle Open Office Impress : deleting;layers +Oracle Open Office Impress : deleting;lines in text +Oracle Open Office Impress : deleting;models/instances +Oracle Open Office Impress : deleting;namespaces in XForms +Oracle Open Office Impress : deleting;points +Oracle Open Office Impress : deleting;slide transition effects +Oracle Open Office Impress : deleting;slides +Oracle Open Office Impress : deleting;tab stops +Oracle Open Office Impress : deleting;templates +Oracle Open Office Impress : deleting;XML filters +Oracle Open Office Impress : depth stagger +Oracle Open Office Impress : descriptions for objects +Oracle Open Office Impress : design mode after saving +Oracle Open Office Impress : design view +Oracle Open Office Impress : design view;creating forms +Oracle Open Office Impress : design view;queries/views (Base) +Oracle Open Office Impress : designing +Oracle Open Office Impress : designing;database tables +Oracle Open Office Impress : designing;fonts +Oracle Open Office Impress : designing;queries (Base) +Oracle Open Office Impress : detaching toolbars +Oracle Open Office Impress : dictionaries +Oracle Open Office Impress : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Impress : dictionaries;creating +Oracle Open Office Impress : dictionaries;editing user-defined +Oracle Open Office Impress : dictionaries;spellcheck +Oracle Open Office Impress : dictionaries, see also languages +Oracle Open Office Impress : digital signatures +Oracle Open Office Impress : digital signatures;getting/managing/applying +Oracle Open Office Impress : digital signatures;overview +Oracle Open Office Impress : digital signatures;WebDAV over HTTPS +Oracle Open Office Impress : dimension lines +Oracle Open Office Impress : dimension lines;drawing +Oracle Open Office Impress : dimension lines;properties of +Oracle Open Office Impress : direct formatting +Oracle Open Office Impress : direct formatting;undoing all +Oracle Open Office Impress : directories +Oracle Open Office Impress : directories;creating new +Oracle Open Office Impress : directories;directory structure +Oracle Open Office Impress : disabled persons +Oracle Open Office Impress : display qualities of presentations +Oracle Open Office Impress : displaying +Oracle Open Office Impress : displaying;comments in text documents +Oracle Open Office Impress : displaying;non-printing characters (Writer) +Oracle Open Office Impress : displaying;pictures and objects (Writer) +Oracle Open Office Impress : displaying;tables (Writer) +Oracle Open Office Impress : displaying;zero values (Calc) +Oracle Open Office Impress : distances +Oracle Open Office Impress : distinct values in SQL queries +Oracle Open Office Impress : distorting in drawings +Oracle Open Office Impress : distorting objects +Oracle Open Office Impress : distributing draw objects +Oracle Open Office Impress : distributing XML filters +Oracle Open Office Impress : docking +Oracle Open Office Impress : docking;definition +Oracle Open Office Impress : docking;toolbars +Oracle Open Office Impress : docking;windows +Oracle Open Office Impress : Document Converter Wizard +Oracle Open Office Impress : Document Map, see Navigator +Oracle Open Office Impress : document types in Oracle Open Office +Oracle Open Office Impress : documents +Oracle Open Office Impress : documents;changing titles +Oracle Open Office Impress : documents;closing +Oracle Open Office Impress : documents;comparing +Oracle Open Office Impress : documents;contents as lists +Oracle Open Office Impress : documents;editing time +Oracle Open Office Impress : documents;exporting +Oracle Open Office Impress : documents;importing +Oracle Open Office Impress : documents;languages +Oracle Open Office Impress : documents;measurement units in +Oracle Open Office Impress : documents;merging +Oracle Open Office Impress : documents;number of pages/tables/sheets +Oracle Open Office Impress : documents;opening +Oracle Open Office Impress : documents;opening in design mode +Oracle Open Office Impress : documents;opening with templates +Oracle Open Office Impress : documents;organizing +Oracle Open Office Impress : documents;printing +Oracle Open Office Impress : documents;read-only +Oracle Open Office Impress : documents;reloading +Oracle Open Office Impress : documents;saving +Oracle Open Office Impress : documents;saving automatically +Oracle Open Office Impress : documents;saving in other formats +Oracle Open Office Impress : documents;sending as e-mail +Oracle Open Office Impress : documents;styles changed +Oracle Open Office Impress : documents;version management +Oracle Open Office Impress : documents;version numbers +Oracle Open Office Impress : donut charts +Oracle Open Office Impress : dotted areas +Oracle Open Office Impress : double-line spacing in paragraphs +Oracle Open Office Impress : double-line writing in Asian layout +Oracle Open Office Impress : doubling draw objects +Oracle Open Office Impress : drag and drop +Oracle Open Office Impress : drag and drop;copying and pasting text +Oracle Open Office Impress : drag and drop;data source view +Oracle Open Office Impress : drag and drop;from Gallery to draw objects +Oracle Open Office Impress : drag and drop;overview +Oracle Open Office Impress : drag and drop;pictures +Oracle Open Office Impress : drag and drop;to Gallery +Oracle Open Office Impress : Draw instructions +Oracle Open Office Impress : draw objects +Oracle Open Office Impress : draw objects;adding/editing/copying +Oracle Open Office Impress : draw objects;anchoring +Oracle Open Office Impress : draw objects;arranging within stacks +Oracle Open Office Impress : draw objects;combining +Oracle Open Office Impress : draw objects;connecting lines to +Oracle Open Office Impress : draw objects;converting text to +Oracle Open Office Impress : draw objects;copying between documents +Oracle Open Office Impress : draw objects;cross-fading two objects +Oracle Open Office Impress : draw objects;displaying (Calc) +Oracle Open Office Impress : draw objects;dropping Gallery pictures +Oracle Open Office Impress : draw objects;duplicating +Oracle Open Office Impress : draw objects;flipping +Oracle Open Office Impress : draw objects;grouping +Oracle Open Office Impress : draw objects;legends +Oracle Open Office Impress : draw objects;positioning and resizing +Oracle Open Office Impress : draw objects;protecting +Oracle Open Office Impress : draw objects;rotating +Oracle Open Office Impress : draw objects;slanting +Oracle Open Office Impress : draw objects;text entry mode +Oracle Open Office Impress : draw objects;text in +Oracle Open Office Impress : drawing +Oracle Open Office Impress : drawing;3D objects +Oracle Open Office Impress : drawing;freeform lines +Oracle Open Office Impress : drawing;lines +Oracle Open Office Impress : drawing;sectors and segments +Oracle Open Office Impress : Drawing bar +Oracle Open Office Impress : drawing lines in text +Oracle Open Office Impress : drawings +Oracle Open Office Impress : drawings;creating/opening +Oracle Open Office Impress : drawings;languages +Oracle Open Office Impress : drawings;printing +Oracle Open Office Impress : drawings;printing defaults +Oracle Open Office Impress : drawings;printing in text documents +Oracle Open Office Impress : drawings;saving +Oracle Open Office Impress : drawings;saving automatically +Oracle Open Office Impress : drawings;saving in other formats +Oracle Open Office Impress : drawings;sending as e-mail +Oracle Open Office Impress : drawings;shortcut keys +Oracle Open Office Impress : drawings;showing (Writer) +Oracle Open Office Impress : drawings;zoom function in +Oracle Open Office Impress : drawings, see also draw objects +Oracle Open Office Impress : drop-down lists in form functions +Oracle Open Office Impress : duplicating draw objects +Oracle Open Office Impress : e-mail attachments +Oracle Open Office Impress : Edit File icon +Oracle Open Office Impress : edit mode +Oracle Open Office Impress : edit mode;after opening +Oracle Open Office Impress : edit mode;through Enter key (Calc) +Oracle Open Office Impress : Edit Points bar +Oracle Open Office Impress : editing +Oracle Open Office Impress : editing;chart axes +Oracle Open Office Impress : editing;chart data +Oracle Open Office Impress : editing;chart legends +Oracle Open Office Impress : editing;chart titles +Oracle Open Office Impress : editing;comments +Oracle Open Office Impress : editing;curves +Oracle Open Office Impress : editing;data binding of XForms +Oracle Open Office Impress : editing;database tables and queries +Oracle Open Office Impress : editing;draw objects +Oracle Open Office Impress : editing;fields +Oracle Open Office Impress : editing;Fontwork objects +Oracle Open Office Impress : editing;gradients +Oracle Open Office Impress : editing;guides and snap points +Oracle Open Office Impress : editing;hyperlinks +Oracle Open Office Impress : editing;menus +Oracle Open Office Impress : editing;objects +Oracle Open Office Impress : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Impress : editing;pictures +Oracle Open Office Impress : editing;reports +Oracle Open Office Impress : editing;shortcut keys +Oracle Open Office Impress : editing;slide titles +Oracle Open Office Impress : editing;tab stops +Oracle Open Office Impress : editing;templates +Oracle Open Office Impress : editing;titles +Oracle Open Office Impress : editing;toolbars +Oracle Open Office Impress : editing;undoing +Oracle Open Office Impress : editing;XForms +Oracle Open Office Impress : editing time of documents +Oracle Open Office Impress : editors +Oracle Open Office Impress : editors;formula editor +Oracle Open Office Impress : editors;ImageMap editor +Oracle Open Office Impress : effects +Oracle Open Office Impress : effects;animated slide transitions +Oracle Open Office Impress : effects;applying to/removing from objects +Oracle Open Office Impress : effects;font positions +Oracle Open Office Impress : effects;fonts +Oracle Open Office Impress : effects;Fontwork icons +Oracle Open Office Impress : effects;preview +Oracle Open Office Impress : effects;sounds +Oracle Open Office Impress : ellipse drawing +Oracle Open Office Impress : ellipses +Oracle Open Office Impress : ellipses;segments +Oracle Open Office Impress : ellipses;toolbars +Oracle Open Office Impress : empty documents +Oracle Open Office Impress : empty paragraph removal +Oracle Open Office Impress : encryption of contents +Oracle Open Office Impress : entering groups +Oracle Open Office Impress : entering text from right to left +Oracle Open Office Impress : equal sign, see also operators +Oracle Open Office Impress : equations in formula editor +Oracle Open Office Impress : error bars in charts +Oracle Open Office Impress : error indicators in charts +Oracle Open Office Impress : Error Report Tool +Oracle Open Office Impress : Euro +Oracle Open Office Impress : Euro;currency formats +Oracle Open Office Impress : Euro;Euro Converter Wizard +Oracle Open Office Impress : even/odd pages +Oracle Open Office Impress : even/odd pages;printing +Oracle Open Office Impress : events +Oracle Open Office Impress : events;assigning scripts +Oracle Open Office Impress : events;controls +Oracle Open Office Impress : events;customizing +Oracle Open Office Impress : events;in forms +Oracle Open Office Impress : Excel +Oracle Open Office Impress : Excel;saving as +Oracle Open Office Impress : Excel;search criteria +Oracle Open Office Impress : exceptions +Oracle Open Office Impress : exceptions;user-defined dictionaries +Oracle Open Office Impress : exchanging, see also replacing +Oracle Open Office Impress : executing SQL commands +Oracle Open Office Impress : exiting +Oracle Open Office Impress : exiting;by clicking objects +Oracle Open Office Impress : exiting;groups +Oracle Open Office Impress : exiting;Oracle Open Office +Oracle Open Office Impress : expanding +Oracle Open Office Impress : expanding;slides +Oracle Open Office Impress : expanding formatting (Calc) +Oracle Open Office Impress : explorer of data sources +Oracle Open Office Impress : export filters +Oracle Open Office Impress : exporting +Oracle Open Office Impress : exporting;animations to GIF format +Oracle Open Office Impress : exporting;bitmaps +Oracle Open Office Impress : exporting;HTML and text documents +Oracle Open Office Impress : exporting;Microsoft Office documents with VBA code +Oracle Open Office Impress : exporting;presentations to HTML +Oracle Open Office Impress : exporting;spreadsheets to text format +Oracle Open Office Impress : exporting;templates +Oracle Open Office Impress : exporting;to foreign formats +Oracle Open Office Impress : exporting;to HTML +Oracle Open Office Impress : exporting;to Macromedia Flash format +Oracle Open Office Impress : exporting;to Microsoft Office formats +Oracle Open Office Impress : exporting;to PDF +Oracle Open Office Impress : exporting;to PostScript format +Oracle Open Office Impress : exporting;to XML +Oracle Open Office Impress : exporting;XML files +Oracle Open Office Impress : extended tips in Help +Oracle Open Office Impress : extension mode in text +Oracle Open Office Impress : extensions +Oracle Open Office Impress : extensions;Extension Manager +Oracle Open Office Impress : extensions;file formats +Oracle Open Office Impress : external keys (Base) +Oracle Open Office Impress : extrusion objects +Oracle Open Office Impress : eyedropper tool +Oracle Open Office Impress : faster printing +Oracle Open Office Impress : faxes +Oracle Open Office Impress : faxes;configuring Oracle Open Office +Oracle Open Office Impress : faxes;fax programs/fax printers under UNIX +Oracle Open Office Impress : faxes;selecting a fax machine +Oracle Open Office Impress : faxes;sending +Oracle Open Office Impress : faxes;wizards +Oracle Open Office Impress : feedback +Oracle Open Office Impress : feedback;automatically +Oracle Open Office Impress : fields +Oracle Open Office Impress : fields;authors +Oracle Open Office Impress : fields;database tables +Oracle Open Office Impress : fields;dates (fixed) +Oracle Open Office Impress : fields;dates (variable) +Oracle Open Office Impress : fields;displaying field codes (Writer) +Oracle Open Office Impress : fields;editing +Oracle Open Office Impress : fields;file names +Oracle Open Office Impress : fields;formatted fields +Oracle Open Office Impress : fields;formatting +Oracle Open Office Impress : fields;in slides +Oracle Open Office Impress : fields;page numbers +Oracle Open Office Impress : fields;times (fixed) +Oracle Open Office Impress : fields;times (variable) +Oracle Open Office Impress : fields;updating automatically (Writer) +Oracle Open Office Impress : file associations for Microsoft Office +Oracle Open Office Impress : file filters +Oracle Open Office Impress : file filters;mobile devices +Oracle Open Office Impress : file filters;XML +Oracle Open Office Impress : file formats +Oracle Open Office Impress : file formats;changing Oracle Open Office defaults +Oracle Open Office Impress : file formats;OpenDocument/XML +Oracle Open Office Impress : file formats;saving always in other formats +Oracle Open Office Impress : file selection button +Oracle Open Office Impress : file sharing options for current document +Oracle Open Office Impress : files +Oracle Open Office Impress : files;filters and formats +Oracle Open Office Impress : files;importing +Oracle Open Office Impress : files;inserting +Oracle Open Office Impress : files;inserting pictures +Oracle Open Office Impress : files;opening +Oracle Open Office Impress : files;properties +Oracle Open Office Impress : files;saving +Oracle Open Office Impress : files;saving automatically +Oracle Open Office Impress : files;saving in other formats +Oracle Open Office Impress : files;sending as e-mail +Oracle Open Office Impress : files;version numbers +Oracle Open Office Impress : files and folders in Oracle Open Office +Oracle Open Office Impress : files, see also documents +Oracle Open Office Impress : fill characters with tabulators +Oracle Open Office Impress : fill colors for areas +Oracle Open Office Impress : fill format mode +Oracle Open Office Impress : fill format mode;styles +Oracle Open Office Impress : fill patterns for areas +Oracle Open Office Impress : filter conditions +Oracle Open Office Impress : filter conditions;connecting +Oracle Open Office Impress : filter conditions;in queries (Base) +Oracle Open Office Impress : filtering +Oracle Open Office Impress : filtering;data in databases +Oracle Open Office Impress : filtering;data in forms +Oracle Open Office Impress : filters +Oracle Open Office Impress : filters;comparison operators +Oracle Open Office Impress : filters;for import and export +Oracle Open Office Impress : filters;Navigator +Oracle Open Office Impress : filters;pictures +Oracle Open Office Impress : filters;XML filter settings +Oracle Open Office Impress : Find tab in Help +Oracle Open Office Impress : finding +Oracle Open Office Impress : finding;in all sheets +Oracle Open Office Impress : finding;records in form documents +Oracle Open Office Impress : finding;selections +Oracle Open Office Impress : finding;similarity search +Oracle Open Office Impress : fitting to pages +Oracle Open Office Impress : fitting to pages;individual slides +Oracle Open Office Impress : fitting to pages;print settings in Math +Oracle Open Office Impress : fitting to pages;print settings in presentations +Oracle Open Office Impress : fixed text +Oracle Open Office Impress : fixed text;form functions +Oracle Open Office Impress : fixing toolbars +Oracle Open Office Impress : flipping around a flip line +Oracle Open Office Impress : flipping draw objects +Oracle Open Office Impress : floating frames in HTML documents +Oracle Open Office Impress : floating text +Oracle Open Office Impress : floating toolbars +Oracle Open Office Impress : flowcharts +Oracle Open Office Impress : focus of controls +Oracle Open Office Impress : folder creation +Oracle Open Office Impress : font lists +Oracle Open Office Impress : font name box +Oracle Open Office Impress : font sizes +Oracle Open Office Impress : font sizes;bullets +Oracle Open Office Impress : font sizes;relative changes +Oracle Open Office Impress : font sizes;scaling on screen +Oracle Open Office Impress : font sizes;text +Oracle Open Office Impress : fonts +Oracle Open Office Impress : fonts;changing in templates +Oracle Open Office Impress : fonts;color ignored +Oracle Open Office Impress : fonts;colors +Oracle Open Office Impress : fonts;default settings +Oracle Open Office Impress : fonts;effects +Oracle Open Office Impress : fonts;for HTML and Basic +Oracle Open Office Impress : fonts;formats +Oracle Open Office Impress : fonts;outlines +Oracle Open Office Impress : fonts;positions in text +Oracle Open Office Impress : fonts;shadows +Oracle Open Office Impress : fonts;specifying several +Oracle Open Office Impress : fonts;strikethrough +Oracle Open Office Impress : fonts;styles +Oracle Open Office Impress : fonts;text objects +Oracle Open Office Impress : Fontwork +Oracle Open Office Impress : footers +Oracle Open Office Impress : footers;backgrounds +Oracle Open Office Impress : footers;slide masters +Oracle Open Office Impress : footers;slides +Oracle Open Office Impress : form controls +Oracle Open Office Impress : form controls;assigning macros +Oracle Open Office Impress : form controls;protecting +Oracle Open Office Impress : form controls;toolbars +Oracle Open Office Impress : form fields +Oracle Open Office Impress : form filters +Oracle Open Office Impress : Form Navigator +Oracle Open Office Impress : format codes +Oracle Open Office Impress : format codes;numbers +Oracle Open Office Impress : format filling printing in Oracle Open Office Math +Oracle Open Office Impress : Format Paintbrush +Oracle Open Office Impress : formats +Oracle Open Office Impress : formats;Asian layout +Oracle Open Office Impress : formats;fonts +Oracle Open Office Impress : formats;maximizing page formats +Oracle Open Office Impress : formats;number and currency formats +Oracle Open Office Impress : formats;of currencies/date/time +Oracle Open Office Impress : formats;on opening and saving +Oracle Open Office Impress : formats;pasting in special formats +Oracle Open Office Impress : formats;positions +Oracle Open Office Impress : formats;tabulators +Oracle Open Office Impress : formatted fields +Oracle Open Office Impress : formatted fields;form functions +Oracle Open Office Impress : formatted fields;properties +Oracle Open Office Impress : formatting +Oracle Open Office Impress : formatting;Asian typography +Oracle Open Office Impress : formatting;axes in charts +Oracle Open Office Impress : formatting;chart areas +Oracle Open Office Impress : formatting;chart floors +Oracle Open Office Impress : formatting;chart legends +Oracle Open Office Impress : formatting;chart titles +Oracle Open Office Impress : formatting;chart walls +Oracle Open Office Impress : formatting;copying +Oracle Open Office Impress : formatting;definition +Oracle Open Office Impress : formatting;expanding (Calc) +Oracle Open Office Impress : formatting;fields +Oracle Open Office Impress : formatting;font effects +Oracle Open Office Impress : formatting;hyperlinks +Oracle Open Office Impress : formatting;pages +Oracle Open Office Impress : formatting;printer metrics (Writer) +Oracle Open Office Impress : formatting;slides +Oracle Open Office Impress : formatting;slides headings +Oracle Open Office Impress : formatting;undoing +Oracle Open Office Impress : formatting;undoing when writing +Oracle Open Office Impress : forms +Oracle Open Office Impress : forms;browsing +Oracle Open Office Impress : forms;Combo Box/List Box Wizard +Oracle Open Office Impress : forms;creating +Oracle Open Office Impress : forms;data +Oracle Open Office Impress : forms;designing (Base) +Oracle Open Office Impress : forms;events +Oracle Open Office Impress : forms;filtering data +Oracle Open Office Impress : forms;finding records +Oracle Open Office Impress : forms;focus after opening +Oracle Open Office Impress : forms;general information (Base) +Oracle Open Office Impress : forms;grouping controls +Oracle Open Office Impress : forms;HTML filters +Oracle Open Office Impress : forms;inserting +Oracle Open Office Impress : forms;Navigator +Oracle Open Office Impress : forms;opening in design mode +Oracle Open Office Impress : forms;properties +Oracle Open Office Impress : forms;sorting data +Oracle Open Office Impress : forms;subforms +Oracle Open Office Impress : forms;wizards +Oracle Open Office Impress : forms;XForms +Oracle Open Office Impress : formula texts +Oracle Open Office Impress : formula texts;printing in Oracle Open Office Math +Oracle Open Office Impress : formulas +Oracle Open Office Impress : formulas;new +Oracle Open Office Impress : formulas;starting formula editor +Oracle Open Office Impress : formulas in reports +Oracle Open Office Impress : formulas in reports;editing +Oracle Open Office Impress : forums and support +Oracle Open Office Impress : frames +Oracle Open Office Impress : frames;around paragraphs +Oracle Open Office Impress : frames;around tables +Oracle Open Office Impress : frames;AutoCorrect function +Oracle Open Office Impress : frames;backgrounds +Oracle Open Office Impress : frames;captions (Writer) +Oracle Open Office Impress : frames;printing in Oracle Open Office Math +Oracle Open Office Impress : frames;protecting +Oracle Open Office Impress : frames;selection frames +Oracle Open Office Impress : frames;text fitting to frames +Oracle Open Office Impress : freeform lines +Oracle Open Office Impress : freeform lines;draw functions +Oracle Open Office Impress : freeform lines;drawing +Oracle Open Office Impress : FTP +Oracle Open Office Impress : FTP;opening documents +Oracle Open Office Impress : FTP;saving documents +Oracle Open Office Impress : full joins (Base) +Oracle Open Office Impress : full screen view +Oracle Open Office Impress : full-text search in Help +Oracle Open Office Impress : functions in reports +Oracle Open Office Impress : functions in reports;editing +Oracle Open Office Impress : Gallery +Oracle Open Office Impress : Gallery;adding pictures +Oracle Open Office Impress : Gallery;dragging pictures to draw objects +Oracle Open Office Impress : Gallery;hiding/showing +Oracle Open Office Impress : Gallery;inserting pictures from +Oracle Open Office Impress : geometric forms +Oracle Open Office Impress : get method for form transmissions +Oracle Open Office Impress : getting support +Oracle Open Office Impress : GIF format +Oracle Open Office Impress : GIF images +Oracle Open Office Impress : GIF images;animating +Oracle Open Office Impress : GIF images;replacing colors +Oracle Open Office Impress : glossaries +Oracle Open Office Impress : glossaries;common terms +Oracle Open Office Impress : glossaries;Internet terms +Oracle Open Office Impress : glue points +Oracle Open Office Impress : glue points;using +Oracle Open Office Impress : gradients +Oracle Open Office Impress : gradients;applying and defining +Oracle Open Office Impress : gradients;defining colors +Oracle Open Office Impress : gradients;loading lists +Oracle Open Office Impress : gradients;transparent +Oracle Open Office Impress : gradients off for faster printing +Oracle Open Office Impress : graphic objects, see draw objects +Oracle Open Office Impress : graphical text art +Oracle Open Office Impress : graphics +Oracle Open Office Impress : graphics;cache +Oracle Open Office Impress : graphics;protecting +Oracle Open Office Impress : graphics, see also pictures +Oracle Open Office Impress : grayscale display +Oracle Open Office Impress : grayscale printing +Oracle Open Office Impress : grid controls +Oracle Open Office Impress : grid controls;form functions +Oracle Open Office Impress : grids +Oracle Open Office Impress : grids;defaults (Writer/Calc) +Oracle Open Office Impress : grids;display options (Impress/Draw) +Oracle Open Office Impress : grids;displaying lines (Calc) +Oracle Open Office Impress : grids;formatting axes +Oracle Open Office Impress : grids;inserting in charts +Oracle Open Office Impress : group box creation +Oracle Open Office Impress : grouping +Oracle Open Office Impress : grouping;draw objects +Oracle Open Office Impress : groups +Oracle Open Office Impress : groups;entering/exiting/ungrouping +Oracle Open Office Impress : groups;naming +Oracle Open Office Impress : groups;of controls +Oracle Open Office Impress : guides +Oracle Open Office Impress : guides;display options (Impress/Draw) +Oracle Open Office Impress : guides;displaying when moving objects (Impress) +Oracle Open Office Impress : guides;editing +Oracle Open Office Impress : guides;inserting +Oracle Open Office Impress : guides;show snap lines icon +Oracle Open Office Impress : guides;showing (Calc) +Oracle Open Office Impress : guides;showing when moving frames (Writer) +Oracle Open Office Impress : gutter +Oracle Open Office Impress : half-spheres +Oracle Open Office Impress : hand icon for moving slides +Oracle Open Office Impress : handles +Oracle Open Office Impress : handles;displaying (Writer) +Oracle Open Office Impress : handles;large +Oracle Open Office Impress : handles;scaling +Oracle Open Office Impress : handles;showing simple/large handles (Calc) +Oracle Open Office Impress : handles;simple +Oracle Open Office Impress : handout printing +Oracle Open Office Impress : Hangul/Hanja +Oracle Open Office Impress : hatching +Oracle Open Office Impress : hatching +Oracle Open Office Impress : hatching;loading lists +Oracle Open Office Impress : headers +Oracle Open Office Impress : headers;backgrounds +Oracle Open Office Impress : headers and footers +Oracle Open Office Impress : headers and footers;master layouts +Oracle Open Office Impress : headers and footers;slide masters +Oracle Open Office Impress : headers and footers;slides +Oracle Open Office Impress : headings +Oracle Open Office Impress : headings;entering as text box +Oracle Open Office Impress : Hebrew +Oracle Open Office Impress : Hebrew;entering text +Oracle Open Office Impress : Hebrew;language settings +Oracle Open Office Impress : Help +Oracle Open Office Impress : Help;bookmarks +Oracle Open Office Impress : Help;extended tips on/off +Oracle Open Office Impress : Help;full-text search +Oracle Open Office Impress : Help;Help tips +Oracle Open Office Impress : Help;keywords +Oracle Open Office Impress : Help;navigation pane showing/hiding +Oracle Open Office Impress : Help;style sheets +Oracle Open Office Impress : Help;topics +Oracle Open Office Impress : Help Agent +Oracle Open Office Impress : Help Agent;help +Oracle Open Office Impress : Help Agent;options +Oracle Open Office Impress : Help tips +Oracle Open Office Impress : Help tips;hiding +Oracle Open Office Impress : hidden controls in Form Navigator +Oracle Open Office Impress : hidden fields display (Writer) +Oracle Open Office Impress : hidden pages +Oracle Open Office Impress : hidden pages;printing in presentations +Oracle Open Office Impress : hidden pages;showing +Oracle Open Office Impress : hidden text +Oracle Open Office Impress : hidden text;showing (Writer) +Oracle Open Office Impress : hiding +Oracle Open Office Impress : hiding;changes +Oracle Open Office Impress : hiding;chart legends +Oracle Open Office Impress : hiding;docked windows +Oracle Open Office Impress : hiding;layers +Oracle Open Office Impress : hiding;levels +Oracle Open Office Impress : hiding;navigation pane in Help window +Oracle Open Office Impress : hiding;slides +Oracle Open Office Impress : hiding;subpoints +Oracle Open Office Impress : high contrast mode +Oracle Open Office Impress : highlighting changes +Oracle Open Office Impress : Hindi +Oracle Open Office Impress : Hindi;entering text +Oracle Open Office Impress : Hindi;language settings +Oracle Open Office Impress : horizontal scrollbars (Writer) +Oracle Open Office Impress : hot spots in flowcharts +Oracle Open Office Impress : hotspots +Oracle Open Office Impress : hotspots;adding to images +Oracle Open Office Impress : hotspots;properties +Oracle Open Office Impress : HowTos for charts +Oracle Open Office Impress : Howtos for Draw +Oracle Open Office Impress : HTML +Oracle Open Office Impress : HTML;compatibility settings +Oracle Open Office Impress : HTML;definition +Oracle Open Office Impress : HTML;export character set +Oracle Open Office Impress : HTML;exporting from presentations +Oracle Open Office Impress : HTML;fonts for source display +Oracle Open Office Impress : HTML;importing into presentations +Oracle Open Office Impress : HTML;importing META tags +Oracle Open Office Impress : HTML;inserting files +Oracle Open Office Impress : HTML;live presentations +Oracle Open Office Impress : HTML documents +Oracle Open Office Impress : HTML documents;auto reloading +Oracle Open Office Impress : HTML documents;importing/exporting +Oracle Open Office Impress : HTML documents;META tags in +Oracle Open Office Impress : HTML documents;new +Oracle Open Office Impress : HTML documents;source text +Oracle Open Office Impress : hyperlinks +Oracle Open Office Impress : hyperlinks;assigning macros +Oracle Open Office Impress : hyperlinks;character formats +Oracle Open Office Impress : hyperlinks;definition +Oracle Open Office Impress : hyperlinks;deleting +Oracle Open Office Impress : hyperlinks;editing +Oracle Open Office Impress : hyperlinks;inserting +Oracle Open Office Impress : hyperlinks;relative and absolute +Oracle Open Office Impress : hyperlinks;turning off automatic recognition +Oracle Open Office Impress : hyperlinks, see also links +Oracle Open Office Impress : hyphenation +Oracle Open Office Impress : hyphenation;activating for a language +Oracle Open Office Impress : hyphenation;minimal number of characters +Oracle Open Office Impress : hyphens +Oracle Open Office Impress : hyphens;displaying custom (Writer) +Oracle Open Office Impress : hyphens;inserting custom +Oracle Open Office Impress : icon bars, see toolbars +Oracle Open Office Impress : icon sizes +Oracle Open Office Impress : ignore list for spellcheck +Oracle Open Office Impress : ignored font colors +Oracle Open Office Impress : illumination +Oracle Open Office Impress : illumination;3D charts +Oracle Open Office Impress : illustrations, see pictures +Oracle Open Office Impress : image button creation +Oracle Open Office Impress : image control creation +Oracle Open Office Impress : ImageMap +Oracle Open Office Impress : ImageMap;definition +Oracle Open Office Impress : ImageMap;editor +Oracle Open Office Impress : ImageMap;hotspot properties +Oracle Open Office Impress : images +Oracle Open Office Impress : images;ImageMap +Oracle Open Office Impress : images;inserting +Oracle Open Office Impress : images;inserting and editing bitmaps +Oracle Open Office Impress : images, see also pictures +Oracle Open Office Impress : IME +Oracle Open Office Impress : IME;definition +Oracle Open Office Impress : IME;showing/hiding +Oracle Open Office Impress : import filters +Oracle Open Office Impress : import restrictions for Microsoft Office +Oracle Open Office Impress : importing +Oracle Open Office Impress : importing;bitmaps +Oracle Open Office Impress : importing;compatibility settings for text import +Oracle Open Office Impress : importing;databases +Oracle Open Office Impress : importing;documents in other formats +Oracle Open Office Impress : importing;from XML +Oracle Open Office Impress : importing;HTML and text documents +Oracle Open Office Impress : importing;HTML with META tags +Oracle Open Office Impress : importing;Microsoft Office documents with VBA code +Oracle Open Office Impress : importing;presentations with HTML +Oracle Open Office Impress : importing;tables in text format +Oracle Open Office Impress : importing;templates +Oracle Open Office Impress : improvement program +Oracle Open Office Impress : improvement program - Improvement Program +Oracle Open Office Impress : in front of object command +Oracle Open Office Impress : inches +Oracle Open Office Impress : including spreadsheets +Oracle Open Office Impress : increasing sizes of views +Oracle Open Office Impress : Index tab in Help +Oracle Open Office Impress : indexes +Oracle Open Office Impress : indexes;backgrounds +Oracle Open Office Impress : indexes;showing/hiding Help index tab +Oracle Open Office Impress : indicator lines in text +Oracle Open Office Impress : inner joins (Base) +Oracle Open Office Impress : input method window +Oracle Open Office Impress : insert mode for entering text +Oracle Open Office Impress : inserting +Oracle Open Office Impress : inserting;3D objects +Oracle Open Office Impress : inserting;arrows +Oracle Open Office Impress : inserting;buttons in toolbars +Oracle Open Office Impress : inserting;callouts in presentations +Oracle Open Office Impress : inserting;cell ranges from spreadsheets +Oracle Open Office Impress : inserting;charts +Oracle Open Office Impress : inserting;clipboard options +Oracle Open Office Impress : inserting;columns +Oracle Open Office Impress : inserting;comments +Oracle Open Office Impress : inserting;data from text documents +Oracle Open Office Impress : inserting;datasource records in spreadsheets +Oracle Open Office Impress : inserting;drawings +Oracle Open Office Impress : inserting;ellipses +Oracle Open Office Impress : inserting;files +Oracle Open Office Impress : inserting;floating frames +Oracle Open Office Impress : inserting;Fontwork objects +Oracle Open Office Impress : inserting;form fields +Oracle Open Office Impress : inserting;headers/footers in all slides +Oracle Open Office Impress : inserting;hyperlinks +Oracle Open Office Impress : inserting;layers +Oracle Open Office Impress : inserting;line breaks in cells +Oracle Open Office Impress : inserting;lines +Oracle Open Office Impress : inserting;movies/sounds +Oracle Open Office Impress : inserting;new text tables defaults +Oracle Open Office Impress : inserting;objects from files +Oracle Open Office Impress : inserting;objects from Gallery +Oracle Open Office Impress : inserting;OLE objects +Oracle Open Office Impress : inserting;paragraph borders +Oracle Open Office Impress : inserting;paragraph bullets +Oracle Open Office Impress : inserting;pictures +Oracle Open Office Impress : inserting;pictures in Gallery +Oracle Open Office Impress : inserting;plug-ins +Oracle Open Office Impress : inserting;polygons +Oracle Open Office Impress : inserting;push buttons +Oracle Open Office Impress : inserting;rectangles +Oracle Open Office Impress : inserting;rows +Oracle Open Office Impress : inserting;slides +Oracle Open Office Impress : inserting;slides as links +Oracle Open Office Impress : inserting;slides from files +Oracle Open Office Impress : inserting;special characters +Oracle Open Office Impress : inserting;tab stops +Oracle Open Office Impress : inserting;text frames +Oracle Open Office Impress : inserting;text in presentations +Oracle Open Office Impress : inserting;textures on chart bars +Oracle Open Office Impress : installing +Oracle Open Office Impress : installing;ActiveX control +Oracle Open Office Impress : installing;mobile device filters +Oracle Open Office Impress : installing;UNO components +Oracle Open Office Impress : installing;XML filters +Oracle Open Office Impress : instructions +Oracle Open Office Impress : instructions;general +Oracle Open Office Impress : instructions;Oracle Open Office Draw +Oracle Open Office Impress : instructions;Oracle Open Office Impress +Oracle Open Office Impress : interactions +Oracle Open Office Impress : interactions;hot spots +Oracle Open Office Impress : interactions;objects in interactive presentations +Oracle Open Office Impress : interactions;preview +Oracle Open Office Impress : Internet +Oracle Open Office Impress : Internet;checking for updates +Oracle Open Office Impress : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Impress : Internet;presentations +Oracle Open Office Impress : Internet;starting searches +Oracle Open Office Impress : Internet glossary +Oracle Open Office Impress : intersecting draw objects +Oracle Open Office Impress : invert filter +Oracle Open Office Impress : invisible areas +Oracle Open Office Impress : italic text +Oracle Open Office Impress : iterative references in spreadsheets +Oracle Open Office Impress : Java +Oracle Open Office Impress : Java;definition +Oracle Open Office Impress : Java;setting options +Oracle Open Office Impress : JDBC +Oracle Open Office Impress : JDBC;databases (Base) +Oracle Open Office Impress : JDBC;definition +Oracle Open Office Impress : joining +Oracle Open Office Impress : joining;3D objects +Oracle Open Office Impress : joining;paragraphs +Oracle Open Office Impress : joining;tables (Base) +Oracle Open Office Impress : joins in databases (Base) +Oracle Open Office Impress : justifying text +Oracle Open Office Impress : kerning +Oracle Open Office Impress : kerning;Asian texts +Oracle Open Office Impress : kerning;definition +Oracle Open Office Impress : kerning;in characters +Oracle Open Office Impress : key fields for relations (Base) +Oracle Open Office Impress : keyboard +Oracle Open Office Impress : keyboard;assigning/editing shortcut keys +Oracle Open Office Impress : keyboard;general commands +Oracle Open Office Impress : keyboard;removing numbering +Oracle Open Office Impress : keyboard;zooming +Oracle Open Office Impress : keys +Oracle Open Office Impress : keys;adding push buttons +Oracle Open Office Impress : keys;primary keys (Base) +Oracle Open Office Impress : kiosk export +Oracle Open Office Impress : labels +Oracle Open Office Impress : labels;creating and synchronizing +Oracle Open Office Impress : labels;for charts +Oracle Open Office Impress : labels;for draw objects +Oracle Open Office Impress : labels;form functions +Oracle Open Office Impress : labels;from databases +Oracle Open Office Impress : labels, see also names/callouts +Oracle Open Office Impress : languages +Oracle Open Office Impress : languages;activating modules +Oracle Open Office Impress : languages;Asian support +Oracle Open Office Impress : languages;complex text layout +Oracle Open Office Impress : languages;locale settings +Oracle Open Office Impress : languages;selecting for text +Oracle Open Office Impress : languages;setting options +Oracle Open Office Impress : languages;spellcheck +Oracle Open Office Impress : languages;spellchecking and formatting +Oracle Open Office Impress : large handles (Writer) +Oracle Open Office Impress : large icons +Oracle Open Office Impress : layer arrangement +Oracle Open Office Impress : layers +Oracle Open Office Impress : layers;definition +Oracle Open Office Impress : layers;deleting +Oracle Open Office Impress : layers;inserting and editing +Oracle Open Office Impress : layers;moving objects +Oracle Open Office Impress : layers;renaming +Oracle Open Office Impress : layers;working with +Oracle Open Office Impress : layout +Oracle Open Office Impress : layout;importing Word documents +Oracle Open Office Impress : layout;pages +Oracle Open Office Impress : layout;printing handouts +Oracle Open Office Impress : LDAP server +Oracle Open Office Impress : LDAP server;address books (Base) +Oracle Open Office Impress : LDAP server;sign on options +Oracle Open Office Impress : leading between paragraphs +Oracle Open Office Impress : left alignment of paragraphs +Oracle Open Office Impress : left joins (Base) +Oracle Open Office Impress : legends +Oracle Open Office Impress : legends;charts +Oracle Open Office Impress : legends;draw objects +Oracle Open Office Impress : legends;drawings +Oracle Open Office Impress : legends;rounding corners +Oracle Open Office Impress : Letter Wizard +Oracle Open Office Impress : levels +Oracle Open Office Impress : levels;depth stagger +Oracle Open Office Impress : levels;hiding +Oracle Open Office Impress : levels;macro security +Oracle Open Office Impress : levels;showing +Oracle Open Office Impress : limits of tables (Writer) +Oracle Open Office Impress : line breaks +Oracle Open Office Impress : line breaks;in cells +Oracle Open Office Impress : line charts +Oracle Open Office Impress : line spacing +Oracle Open Office Impress : line spacing;context menu in paragraphs +Oracle Open Office Impress : line spacing;paragraph +Oracle Open Office Impress : line styles +Oracle Open Office Impress : line styles;applying +Oracle Open Office Impress : line styles;defining +Oracle Open Office Impress : line styles;loading +Oracle Open Office Impress : lines +Oracle Open Office Impress : lines;about line ends +Oracle Open Office Impress : lines;connecting objects +Oracle Open Office Impress : lines;defining ends +Oracle Open Office Impress : lines;draw functions +Oracle Open Office Impress : lines;drawing +Oracle Open Office Impress : lines;drawing in text +Oracle Open Office Impress : lines;editing points +Oracle Open Office Impress : lines;inserting +Oracle Open Office Impress : lines;removing automatic lines +Oracle Open Office Impress : lines of text +Oracle Open Office Impress : lines of text;alignment +Oracle Open Office Impress : links +Oracle Open Office Impress : links;between cells and controls +Oracle Open Office Impress : links;by drag and drop +Oracle Open Office Impress : links;character formats +Oracle Open Office Impress : links;definition +Oracle Open Office Impress : links;editing hyperlinks +Oracle Open Office Impress : links;inserting +Oracle Open Office Impress : links;modifying +Oracle Open Office Impress : links;opening files with +Oracle Open Office Impress : links;relational databases (Base) +Oracle Open Office Impress : links;turning off automatic recognition +Oracle Open Office Impress : links;updating options (Writer) +Oracle Open Office Impress : links;updating specific links +Oracle Open Office Impress : list box creation +Oracle Open Office Impress : lists +Oracle Open Office Impress : lists;animations +Oracle Open Office Impress : lists;data assigned to controls +Oracle Open Office Impress : lists;registered databases (Base) +Oracle Open Office Impress : lists;regular expressions +Oracle Open Office Impress : live presentations on the Internet +Oracle Open Office Impress : loading +Oracle Open Office Impress : loading;arrow and line styles +Oracle Open Office Impress : loading;colors/gradients/hatchings +Oracle Open Office Impress : loading;documents +Oracle Open Office Impress : loading;documents from other formats +Oracle Open Office Impress : loading;HTML documents, automatically +Oracle Open Office Impress : loading;Microsoft Office documents with VBA code +Oracle Open Office Impress : loading;reloading +Oracle Open Office Impress : loading;XML files +Oracle Open Office Impress : locale settings +Oracle Open Office Impress : locking layers +Oracle Open Office Impress : logarithmic scaling along axes +Oracle Open Office Impress : lowercase letters +Oracle Open Office Impress : lowercase letters;font effects +Oracle Open Office Impress : Macro Wizard (Base) +Oracle Open Office Impress : Macromedia Flash export +Oracle Open Office Impress : macros +Oracle Open Office Impress : macros;assigning to events in forms +Oracle Open Office Impress : macros;attaching new (Base) +Oracle Open Office Impress : macros;in MS Office documents +Oracle Open Office Impress : macros;interrupting +Oracle Open Office Impress : macros;organizing +Oracle Open Office Impress : macros;recording +Oracle Open Office Impress : macros;running in presentations +Oracle Open Office Impress : macros;security +Oracle Open Office Impress : macros;security levels +Oracle Open Office Impress : macros;security warning dialog +Oracle Open Office Impress : macros;selecting security warnings +Oracle Open Office Impress : magnetic lines in presentations +Oracle Open Office Impress : magnifiers +Oracle Open Office Impress : margins +Oracle Open Office Impress : margins;pages +Oracle Open Office Impress : margins;setting with the mouse +Oracle Open Office Impress : margins;shadows +Oracle Open Office Impress : marking changes +Oracle Open Office Impress : marking, see selecting +Oracle Open Office Impress : master layouts with headers and footers +Oracle Open Office Impress : master pages, see slide masters +Oracle Open Office Impress : master views +Oracle Open Office Impress : Math formula editor +Oracle Open Office Impress : mean value lines in charts +Oracle Open Office Impress : measurement units +Oracle Open Office Impress : measurement units;changing on rulers +Oracle Open Office Impress : measurement units;converting +Oracle Open Office Impress : measurement units;selecting +Oracle Open Office Impress : Media Player window +Oracle Open Office Impress : menus +Oracle Open Office Impress : menus;activating context menus +Oracle Open Office Impress : menus;assigning macros +Oracle Open Office Impress : menus;customizing +Oracle Open Office Impress : merging +Oracle Open Office Impress : merging;documents +Oracle Open Office Impress : merging;draw objects +Oracle Open Office Impress : META tags +Oracle Open Office Impress : metafiles +Oracle Open Office Impress : metafiles;converting to +Oracle Open Office Impress : metafiles;replacing colors +Oracle Open Office Impress : metrics +Oracle Open Office Impress : metrics;converting +Oracle Open Office Impress : metrics;document formatting (Writer) +Oracle Open Office Impress : metrics;in sheets +Oracle Open Office Impress : Microsoft Office +Oracle Open Office Impress : Microsoft Office;Access databases (base) +Oracle Open Office Impress : Microsoft Office;as default file format +Oracle Open Office Impress : Microsoft Office;document import restrictions +Oracle Open Office Impress : Microsoft Office;feature comparisons +Oracle Open Office Impress : Microsoft Office;importing password protected files +Oracle Open Office Impress : Microsoft Office;importing Word documents +Oracle Open Office Impress : Microsoft Office;importing/exporting VBA code +Oracle Open Office Impress : Microsoft Office;new users information +Oracle Open Office Impress : Microsoft Office;opening Microsoft documents +Oracle Open Office Impress : Microsoft Office;reassigning document types +Oracle Open Office Impress : migrating macros (Base) +Oracle Open Office Impress : mirroring objects +Oracle Open Office Impress : mobile device filters +Oracle Open Office Impress : models in XForms +Oracle Open Office Impress : modifying, see changing +Oracle Open Office Impress : more controls +Oracle Open Office Impress : mosaic filter +Oracle Open Office Impress : motion paths +Oracle Open Office Impress : mouse +Oracle Open Office Impress : mouse;pointers when using drag and drop +Oracle Open Office Impress : mouse;positioning +Oracle Open Office Impress : movies +Oracle Open Office Impress : moving +Oracle Open Office Impress : moving;between layers +Oracle Open Office Impress : moving;objects in slides +Oracle Open Office Impress : moving;tab stops on ruler +Oracle Open Office Impress : moving;toolbars +Oracle Open Office Impress : moving;using guide lines in presentations +Oracle Open Office Impress : MS ADO interface (Base) +Oracle Open Office Impress : multi-line titles in forms +Oracle Open Office Impress : multiple documents +Oracle Open Office Impress : multiple documents;opening +Oracle Open Office Impress : multiple monitors +Oracle Open Office Impress : multiple selection +Oracle Open Office Impress : multiplying draw objects +Oracle Open Office Impress : music +Oracle Open Office Impress : My Documents folder +Oracle Open Office Impress : My Documents folder;changing work directory +Oracle Open Office Impress : My Documents folder;opening +Oracle Open Office Impress : MySQL databases (Base) +Oracle Open Office Impress : names +Oracle Open Office Impress : names;multi-line titles +Oracle Open Office Impress : names;objects +Oracle Open Office Impress : names, see also labels/callouts +Oracle Open Office Impress : namespace organization in XForms +Oracle Open Office Impress : native SQL (Base) +Oracle Open Office Impress : navigating +Oracle Open Office Impress : navigating;in documents +Oracle Open Office Impress : Navigation bar +Oracle Open Office Impress : Navigation bar;controls +Oracle Open Office Impress : Navigation bar;forms +Oracle Open Office Impress : Navigator +Oracle Open Office Impress : Navigator;comments +Oracle Open Office Impress : Navigator;contents as lists +Oracle Open Office Impress : Navigator;docking +Oracle Open Office Impress : Navigator;presentations +Oracle Open Office Impress : Navigator;working with +Oracle Open Office Impress : net charts +Oracle Open Office Impress : network identity options +Oracle Open Office Impress : new databases +Oracle Open Office Impress : new documents +Oracle Open Office Impress : new lines in cells +Oracle Open Office Impress : new windows +Oracle Open Office Impress : non-breaking dashes +Oracle Open Office Impress : non-breaking spaces (Writer) +Oracle Open Office Impress : non-printing characters (Writer) +Oracle Open Office Impress : normal view +Oracle Open Office Impress : normal view;backgrounds +Oracle Open Office Impress : normal view;presentations +Oracle Open Office Impress : notes +Oracle Open Office Impress : notes;adding to slides +Oracle Open Office Impress : notes;default formatting +Oracle Open Office Impress : notes;printing in presentations +Oracle Open Office Impress : number formats +Oracle Open Office Impress : number formats;codes +Oracle Open Office Impress : number formats;formats +Oracle Open Office Impress : number formats;recognition in text tables +Oracle Open Office Impress : number of pages +Oracle Open Office Impress : number of sheets +Oracle Open Office Impress : number of tables +Oracle Open Office Impress : numbering +Oracle Open Office Impress : numbering;options +Oracle Open Office Impress : numbering;turning off +Oracle Open Office Impress : numbering;using automatically +Oracle Open Office Impress : numbers +Oracle Open Office Impress : numbers;date, time and currency formats +Oracle Open Office Impress : numerical fields in forms +Oracle Open Office Impress : object bars +Oracle Open Office Impress : object bars;editing glue points +Oracle Open Office Impress : objects +Oracle Open Office Impress : objects;aligning +Oracle Open Office Impress : objects;always moveable (Impress/Draw) +Oracle Open Office Impress : objects;arranging within stacks +Oracle Open Office Impress : objects;behind object command +Oracle Open Office Impress : objects;breaking connections +Oracle Open Office Impress : objects;copying when moving in presentations +Oracle Open Office Impress : objects;definition +Oracle Open Office Impress : objects;displaying in spreadsheets +Oracle Open Office Impress : objects;displaying in text documents +Oracle Open Office Impress : objects;editing +Oracle Open Office Impress : objects;effects +Oracle Open Office Impress : objects;in front of object command +Oracle Open Office Impress : objects;inserting from files +Oracle Open Office Impress : objects;inserting from Gallery +Oracle Open Office Impress : objects;inserting OLE objects +Oracle Open Office Impress : objects;moving along paths +Oracle Open Office Impress : objects;moving and resizing with mouse +Oracle Open Office Impress : objects;moving in layers +Oracle Open Office Impress : objects;moving in slides +Oracle Open Office Impress : objects;naming +Oracle Open Office Impress : objects;opening +Oracle Open Office Impress : objects;properties of charts +Oracle Open Office Impress : objects;quickly moving to +Oracle Open Office Impress : objects;reversing +Oracle Open Office Impress : objects;selecting +Oracle Open Office Impress : objects;titles and descriptions +Oracle Open Office Impress : objects;with attributes +Oracle Open Office Impress : ODBC +Oracle Open Office Impress : ODBC;database (Base) +Oracle Open Office Impress : ODBC;definition +Oracle Open Office Impress : ODF file formats +Oracle Open Office Impress : Office +Oracle Open Office Impress : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Impress : OLE +Oracle Open Office Impress : OLE;definition +Oracle Open Office Impress : OLE objects +Oracle Open Office Impress : OLE objects;arranging within stacks +Oracle Open Office Impress : OLE objects;captions (Writer) +Oracle Open Office Impress : OLE objects;inserting +Oracle Open Office Impress : OLE objects;number of +Oracle Open Office Impress : OLE objects;protecting +Oracle Open Office Impress : one and a half line spacing in text +Oracle Open Office Impress : online feedback options +Oracle Open Office Impress : online registration +Oracle Open Office Impress : online update options +Oracle Open Office Impress : online updates +Oracle Open Office Impress : online updates;checking automatically +Oracle Open Office Impress : online updates;checking manually +Oracle Open Office Impress : OpenDocument file formats +Oracle Open Office Impress : OpenGL +Oracle Open Office Impress : OpenGL;definition +Oracle Open Office Impress : opening +Oracle Open Office Impress : opening;context menus +Oracle Open Office Impress : opening;database files +Oracle Open Office Impress : opening;dialog settings +Oracle Open Office Impress : opening;documents +Oracle Open Office Impress : opening;documents from other formats +Oracle Open Office Impress : opening;documents on WebDAV server +Oracle Open Office Impress : opening;documents with links +Oracle Open Office Impress : opening;files, with placeholders +Oracle Open Office Impress : opening;forms +Oracle Open Office Impress : opening;Microsoft Office files +Oracle Open Office Impress : opening;mobile device documents +Oracle Open Office Impress : opening;objects +Oracle Open Office Impress : opening;reports +Oracle Open Office Impress : opening;several files +Oracle Open Office Impress : opening;XForms +Oracle Open Office Impress : operators +Oracle Open Office Impress : operators;standard filters +Oracle Open Office Impress : optional hyphens (Writer) +Oracle Open Office Impress : options +Oracle Open Office Impress : options;accessibility +Oracle Open Office Impress : options;appearance +Oracle Open Office Impress : options;compatibility (Writer) +Oracle Open Office Impress : options;improvement program +Oracle Open Office Impress : options;network identity +Oracle Open Office Impress : options;online update +Oracle Open Office Impress : options;tools +Oracle Open Office Impress : Oracle databases (base) +Oracle Open Office Impress : Oracle Open Office Base data sources +Oracle Open Office Impress : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Impress : Oracle Open Office documents +Oracle Open Office Impress : Oracle Open Office documents;mobile device filters +Oracle Open Office Impress : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Impress : Oracle Open Office Impress instructions +Oracle Open Office Impress : Oracle Open Office Math start +Oracle Open Office Impress : order of chart data +Oracle Open Office Impress : ordering +Oracle Open Office Impress : ordering;objects +Oracle Open Office Impress : ordering;slides +Oracle Open Office Impress : ordinal numbers +Oracle Open Office Impress : ordinal numbers;replacing +Oracle Open Office Impress : organization charts +Oracle Open Office Impress : organizing +Oracle Open Office Impress : organizing;macros and scripts +Oracle Open Office Impress : organizing;namespaces in XForms +Oracle Open Office Impress : organizing;styles +Oracle Open Office Impress : organizing;templates +Oracle Open Office Impress : origin of rulers +Oracle Open Office Impress : original size +Oracle Open Office Impress : original size;printing in Oracle Open Office Math +Oracle Open Office Impress : original size;restoring after cropping +Oracle Open Office Impress : outline view +Oracle Open Office Impress : outlines +Oracle Open Office Impress : outlines;font effects +Oracle Open Office Impress : outlines;outline symbols +Oracle Open Office Impress : outlines;printing +Oracle Open Office Impress : outlines;sending to presentations +Oracle Open Office Impress : overwrite mode +Oracle Open Office Impress : packages, see extensions +Oracle Open Office Impress : page breaks +Oracle Open Office Impress : page breaks;displaying (Calc) +Oracle Open Office Impress : page formats +Oracle Open Office Impress : page formats;maximizing +Oracle Open Office Impress : page formats;restriction +Oracle Open Office Impress : page number field +Oracle Open Office Impress : page numbers on all slides +Oracle Open Office Impress : page styles +Oracle Open Office Impress : page styles;editing/applying with statusbar +Oracle Open Office Impress : pages +Oracle Open Office Impress : pages;backgrounds in all applications +Oracle Open Office Impress : pages;copying +Oracle Open Office Impress : pages;fitting to printed pages +Oracle Open Office Impress : pages;formatting and numbering +Oracle Open Office Impress : pages;printing page names in presentations +Oracle Open Office Impress : pages;scaling +Oracle Open Office Impress : pages;selecting one to print +Oracle Open Office Impress : paint box +Oracle Open Office Impress : paint can symbol +Oracle Open Office Impress : Paintbrush +Oracle Open Office Impress : pair kerning +Oracle Open Office Impress : Palm file filters +Oracle Open Office Impress : paper formats +Oracle Open Office Impress : paper size warning +Oracle Open Office Impress : paper trays +Oracle Open Office Impress : paragraph marks +Oracle Open Office Impress : paragraph marks;displaying (Writer) +Oracle Open Office Impress : paragraph styles +Oracle Open Office Impress : paragraph styles;languages +Oracle Open Office Impress : paragraph styles;modifying basic fonts +Oracle Open Office Impress : paragraphs +Oracle Open Office Impress : paragraphs;alignment +Oracle Open Office Impress : paragraphs;Asian typography +Oracle Open Office Impress : paragraphs;defining borders +Oracle Open Office Impress : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Impress : paragraphs;increasing indents of +Oracle Open Office Impress : paragraphs;indents, margins and columns +Oracle Open Office Impress : paragraphs;inserting bullets +Oracle Open Office Impress : paragraphs;joining +Oracle Open Office Impress : paragraphs;numbering automatically +Oracle Open Office Impress : paragraphs;removing blank ones +Oracle Open Office Impress : paragraphs;spacing +Oracle Open Office Impress : paragraphs;tab stops +Oracle Open Office Impress : parameters +Oracle Open Office Impress : parameters;command line +Oracle Open Office Impress : parameters;queries (Base) +Oracle Open Office Impress : password as document property +Oracle Open Office Impress : passwords for protecting contents +Oracle Open Office Impress : pasting +Oracle Open Office Impress : pasting;cell ranges +Oracle Open Office Impress : pasting;cell ranges from spreadsheets +Oracle Open Office Impress : pasting;data from text documents +Oracle Open Office Impress : pasting;draw objects +Oracle Open Office Impress : pasting;draw objects from other documents +Oracle Open Office Impress : pasting;formatted/unformatted text +Oracle Open Office Impress : pasting;from data source view +Oracle Open Office Impress : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Impress : pasting;pictures from other documents +Oracle Open Office Impress : pasting;sheet areas in text documents +Oracle Open Office Impress : pasting;slides from other presentations +Oracle Open Office Impress : pasting;text from other documents +Oracle Open Office Impress : pasting;to Gallery +Oracle Open Office Impress : paths +Oracle Open Office Impress : paths;changing work directory +Oracle Open Office Impress : paths;defaults +Oracle Open Office Impress : paths;moving objects along +Oracle Open Office Impress : pattern editor +Oracle Open Office Impress : pattern fields +Oracle Open Office Impress : pattern fields;form functions +Oracle Open Office Impress : patterns for objects +Oracle Open Office Impress : PDF +Oracle Open Office Impress : PDF;export +Oracle Open Office Impress : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Impress : personal data input +Oracle Open Office Impress : phonetic guide +Oracle Open Office Impress : picklist creation +Oracle Open Office Impress : pictures +Oracle Open Office Impress : pictures;adding to Gallery +Oracle Open Office Impress : pictures;arranging within stacks +Oracle Open Office Impress : pictures;assigning macros +Oracle Open Office Impress : pictures;backgrounds +Oracle Open Office Impress : pictures;captions (Writer) +Oracle Open Office Impress : pictures;changing paths +Oracle Open Office Impress : pictures;cropping and zooming +Oracle Open Office Impress : pictures;displaying in Calc +Oracle Open Office Impress : pictures;displaying in Writer (Writer) +Oracle Open Office Impress : pictures;drag and drop between documents +Oracle Open Office Impress : pictures;drawing +Oracle Open Office Impress : pictures;editing +Oracle Open Office Impress : pictures;filters +Oracle Open Office Impress : pictures;ImageMap +Oracle Open Office Impress : pictures;inserting +Oracle Open Office Impress : pictures;inserting automatically +Oracle Open Office Impress : pictures;inserting from Gallery +Oracle Open Office Impress : pictures;number of +Oracle Open Office Impress : pictures;printing +Oracle Open Office Impress : pictures;scaling/resizing +Oracle Open Office Impress : pie charts +Oracle Open Office Impress : pie charts;options +Oracle Open Office Impress : pie charts;types +Oracle Open Office Impress : pivot points of draw objects +Oracle Open Office Impress : pixel editor +Oracle Open Office Impress : pixel graphics +Oracle Open Office Impress : pixel graphics;inserting and editing +Oracle Open Office Impress : pixel patterns +Oracle Open Office Impress : placeholders +Oracle Open Office Impress : placeholders;in SQL queries +Oracle Open Office Impress : placeholders;on opening files +Oracle Open Office Impress : placing toolbars +Oracle Open Office Impress : playing movies and sound files +Oracle Open Office Impress : plotting data as charts +Oracle Open Office Impress : plug-ins +Oracle Open Office Impress : plug-ins;activating and deactivating +Oracle Open Office Impress : plug-ins;definition +Oracle Open Office Impress : plug-ins;inserting +Oracle Open Office Impress : pocket device appliances +Oracle Open Office Impress : Pocket PC file filters +Oracle Open Office Impress : points +Oracle Open Office Impress : points;adding/converting/deleting +Oracle Open Office Impress : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Impress : polygon drawing +Oracle Open Office Impress : polygons +Oracle Open Office Impress : polygons;inserting +Oracle Open Office Impress : polygons;intersecting/subtracting/merging +Oracle Open Office Impress : pop-art filter +Oracle Open Office Impress : portable document format +Oracle Open Office Impress : positioning +Oracle Open Office Impress : positioning;axes +Oracle Open Office Impress : positioning;draw objects and controls +Oracle Open Office Impress : positioning;fonts +Oracle Open Office Impress : positioning;objects +Oracle Open Office Impress : positioning;toolbars +Oracle Open Office Impress : post method for form transmissions +Oracle Open Office Impress : posterizing filter +Oracle Open Office Impress : PostScript +Oracle Open Office Impress : PostScript;creating files +Oracle Open Office Impress : PostScript;PDF converter, UNIX +Oracle Open Office Impress : PowerPoint export +Oracle Open Office Impress : precision as shown (Calc) +Oracle Open Office Impress : predefining fonts +Oracle Open Office Impress : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Impress : presentations +Oracle Open Office Impress : presentations;arranging slides +Oracle Open Office Impress : presentations;creating/opening +Oracle Open Office Impress : presentations;exiting by interaction +Oracle Open Office Impress : presentations;exporting to HTML +Oracle Open Office Impress : presentations;importing HTML +Oracle Open Office Impress : presentations;inserting spreadsheet cells +Oracle Open Office Impress : presentations;inserting spreadsheets +Oracle Open Office Impress : presentations;live on the Internet +Oracle Open Office Impress : presentations;navigating +Oracle Open Office Impress : presentations;numbering slides in +Oracle Open Office Impress : presentations;ordering of effects +Oracle Open Office Impress : presentations;print menu +Oracle Open Office Impress : presentations;printing +Oracle Open Office Impress : presentations;rehearse timings +Oracle Open Office Impress : presentations;saving +Oracle Open Office Impress : presentations;saving automatically +Oracle Open Office Impress : presentations;saving in other formats +Oracle Open Office Impress : presentations;sending as e-mail +Oracle Open Office Impress : presentations;settings for +Oracle Open Office Impress : presentations;shortcut keys +Oracle Open Office Impress : presentations;starting +Oracle Open Office Impress : presentations;starting with wizard +Oracle Open Office Impress : presentations;window / full screen +Oracle Open Office Impress : presentations;wizards +Oracle Open Office Impress : press buttons, see push buttons +Oracle Open Office Impress : previews +Oracle Open Office Impress : previews;fonts lists +Oracle Open Office Impress : primary keys +Oracle Open Office Impress : primary keys;defining +Oracle Open Office Impress : primary keys;design view +Oracle Open Office Impress : primary keys;inserting (Base) +Oracle Open Office Impress : print area selection +Oracle Open Office Impress : printer metrics for document formatting (Writer) +Oracle Open Office Impress : printers +Oracle Open Office Impress : printers;adding, UNIX +Oracle Open Office Impress : printers;choosing +Oracle Open Office Impress : printers;default printer +Oracle Open Office Impress : printers;faxes under UNIX +Oracle Open Office Impress : printers;maximum page formats +Oracle Open Office Impress : printers;paper trays +Oracle Open Office Impress : printers;properties +Oracle Open Office Impress : printing +Oracle Open Office Impress : printing;black and white +Oracle Open Office Impress : printing;brochures +Oracle Open Office Impress : printing;colors in grayscale +Oracle Open Office Impress : printing;comments +Oracle Open Office Impress : printing;copies +Oracle Open Office Impress : printing;creating individual jobs +Oracle Open Office Impress : printing;dates in presentations +Oracle Open Office Impress : printing;directly +Oracle Open Office Impress : printing;documents +Oracle Open Office Impress : printing;drawings defaults +Oracle Open Office Impress : printing;elements in text documents +Oracle Open Office Impress : printing;faster +Oracle Open Office Impress : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Impress : printing;fitting to pages in presentations +Oracle Open Office Impress : printing;fitting to paper +Oracle Open Office Impress : printing;formulas in Oracle Open Office Math +Oracle Open Office Impress : printing;hidden pages of presentations +Oracle Open Office Impress : printing;in original size in Oracle Open Office Math +Oracle Open Office Impress : printing;left/right pages +Oracle Open Office Impress : printing;presentations +Oracle Open Office Impress : printing;queries (Base) +Oracle Open Office Impress : printing;scaling in Oracle Open Office Math +Oracle Open Office Impress : printing;selections +Oracle Open Office Impress : printing;text always in black +Oracle Open Office Impress : printing;text in reverse order +Oracle Open Office Impress : printing;tiling pages in presentations +Oracle Open Office Impress : printing;transparencies +Oracle Open Office Impress : printing;warnings +Oracle Open Office Impress : printing;without scaling in presentations +Oracle Open Office Impress : printing speed +Oracle Open Office Impress : programming +Oracle Open Office Impress : programming;Oracle Open Office +Oracle Open Office Impress : programming;scripting +Oracle Open Office Impress : programs run by mouse click in presentations +Oracle Open Office Impress : properties +Oracle Open Office Impress : properties;charts +Oracle Open Office Impress : properties;fields in databases +Oracle Open Office Impress : properties;files +Oracle Open Office Impress : properties;form controls +Oracle Open Office Impress : properties;forms +Oracle Open Office Impress : properties;hotspots +Oracle Open Office Impress : properties;printers +Oracle Open Office Impress : properties;smooth lines in line charts/XY charts +Oracle Open Office Impress : protected contents +Oracle Open Office Impress : protected dashes +Oracle Open Office Impress : protected database tables +Oracle Open Office Impress : protected documents +Oracle Open Office Impress : protected spaces +Oracle Open Office Impress : protected spaces;inserting +Oracle Open Office Impress : protected spaces;showing (Writer) +Oracle Open Office Impress : protecting +Oracle Open Office Impress : protecting;contents +Oracle Open Office Impress : protecting;recorded changes +Oracle Open Office Impress : proxy settings +Oracle Open Office Impress : push buttons +Oracle Open Office Impress : push buttons;adding to documents +Oracle Open Office Impress : push buttons;creating +Oracle Open Office Impress : pyramids +Oracle Open Office Impress : queries +Oracle Open Office Impress : queries;copying (Base) +Oracle Open Office Impress : queries;creating in design view (Base) +Oracle Open Office Impress : queries;creating in SQL view +Oracle Open Office Impress : queries;defining (Base) +Oracle Open Office Impress : queries;deleting table links (Base) +Oracle Open Office Impress : queries;editing in data source view +Oracle Open Office Impress : queries;formulating filter conditions (Base) +Oracle Open Office Impress : queries;joining tables (Base) +Oracle Open Office Impress : queries;missing elements (Base) +Oracle Open Office Impress : queries;overview (Base) +Oracle Open Office Impress : queries;parameter queries (Base) +Oracle Open Office Impress : queries;printing (Base) +Oracle Open Office Impress : Query Wizard (Base) +Oracle Open Office Impress : Quickstarter +Oracle Open Office Impress : quotes +Oracle Open Office Impress : quotes;custom +Oracle Open Office Impress : radar charts, see net charts +Oracle Open Office Impress : radio button creation +Oracle Open Office Impress : read-only documents +Oracle Open Office Impress : read-only documents;cursor +Oracle Open Office Impress : read-only documents;database tables on/off +Oracle Open Office Impress : read-only documents;editing +Oracle Open Office Impress : read-only documents;opening documents as +Oracle Open Office Impress : read-only items in Data Navigator +Oracle Open Office Impress : recognizing URLs automatically +Oracle Open Office Impress : recording +Oracle Open Office Impress : recording;changes +Oracle Open Office Impress : recording;display times for slides +Oracle Open Office Impress : recording;macros +Oracle Open Office Impress : records +Oracle Open Office Impress : records;inserting comments +Oracle Open Office Impress : records;protecting +Oracle Open Office Impress : records;saving +Oracle Open Office Impress : records;searching in databases +Oracle Open Office Impress : rectangle drawing +Oracle Open Office Impress : rectangles +Oracle Open Office Impress : rectangles with round corners +Oracle Open Office Impress : recursions in spreadsheets +Oracle Open Office Impress : redo command +Oracle Open Office Impress : reduced printing +Oracle Open Office Impress : reference lines +Oracle Open Office Impress : references +Oracle Open Office Impress : references;displaying in color (Calc) +Oracle Open Office Impress : references;expanding (Calc) +Oracle Open Office Impress : references;iterative (Calc) +Oracle Open Office Impress : register-true +Oracle Open Office Impress : register-true;definition +Oracle Open Office Impress : registering +Oracle Open Office Impress : registering;address books +Oracle Open Office Impress : registering;databases (Base) +Oracle Open Office Impress : registering;Oracle Open Office +Oracle Open Office Impress : regression curves in charts +Oracle Open Office Impress : regular expressions +Oracle Open Office Impress : regular expressions;list of +Oracle Open Office Impress : rehearse timings +Oracle Open Office Impress : relational databases (Base) +Oracle Open Office Impress : relations +Oracle Open Office Impress : relations;creating and deleting (Base) +Oracle Open Office Impress : relations;joining tables (Base) +Oracle Open Office Impress : relations;properties (Base) +Oracle Open Office Impress : relative hyperlinks +Oracle Open Office Impress : relative saving of URLs +Oracle Open Office Impress : reloading +Oracle Open Office Impress : reloading;documents +Oracle Open Office Impress : reloading;HTML documents, automatically +Oracle Open Office Impress : remarks, see also comments +Oracle Open Office Impress : remote configurations +Oracle Open Office Impress : remove noise filter +Oracle Open Office Impress : removing +Oracle Open Office Impress : removing;bullets and numbering +Oracle Open Office Impress : removing;form filters +Oracle Open Office Impress : removing, see also deleting +Oracle Open Office Impress : renaming layers +Oracle Open Office Impress : reorganizing charts +Oracle Open Office Impress : repeating +Oracle Open Office Impress : repeating;commands +Oracle Open Office Impress : replacement options +Oracle Open Office Impress : replacement table +Oracle Open Office Impress : replacing +Oracle Open Office Impress : replacing;AutoCorrect function +Oracle Open Office Impress : replacing;colors in bitmaps +Oracle Open Office Impress : replacing;dashes +Oracle Open Office Impress : replacing;ordinal numbers +Oracle Open Office Impress : replacing;tab stops (regular expressions) +Oracle Open Office Impress : Report Builder +Oracle Open Office Impress : reports +Oracle Open Office Impress : reports;creating +Oracle Open Office Impress : reports;error reports +Oracle Open Office Impress : reports;opening and editing +Oracle Open Office Impress : reports;templates +Oracle Open Office Impress : resetting +Oracle Open Office Impress : resetting;templates +Oracle Open Office Impress : resizing +Oracle Open Office Impress : resizing;objects, by mouse +Oracle Open Office Impress : resizing, see also scaling/zooming +Oracle Open Office Impress : resolution when printing bitmaps +Oracle Open Office Impress : restoring +Oracle Open Office Impress : restoring;default formatting +Oracle Open Office Impress : restoring;editing +Oracle Open Office Impress : reversing objects +Oracle Open Office Impress : reversing printing order +Oracle Open Office Impress : review function +Oracle Open Office Impress : review function;accepting or rejecting changes +Oracle Open Office Impress : review function;comparing documents +Oracle Open Office Impress : review function;protecting records +Oracle Open Office Impress : review function;recording changes example +Oracle Open Office Impress : review function;tracking changes +Oracle Open Office Impress : rich text control +Oracle Open Office Impress : right alignment of paragraphs +Oracle Open Office Impress : right joins (Base) +Oracle Open Office Impress : right-to-left text +Oracle Open Office Impress : rotating +Oracle Open Office Impress : rotating;3D text +Oracle Open Office Impress : rotating;draw objects +Oracle Open Office Impress : rotation mode +Oracle Open Office Impress : round corners +Oracle Open Office Impress : rounding precision (Calc) +Oracle Open Office Impress : row headers +Oracle Open Office Impress : row headers;displaying (Calc) +Oracle Open Office Impress : row headers;highlighting (Calc) +Oracle Open Office Impress : rows +Oracle Open Office Impress : rows;inserting +Oracle Open Office Impress : rulers +Oracle Open Office Impress : rulers;default settings +Oracle Open Office Impress : rulers;in presentations +Oracle Open Office Impress : rulers;measurement units +Oracle Open Office Impress : rulers;visible in presentations +Oracle Open Office Impress : running macros/programs in presentations +Oracle Open Office Impress : running slide shows +Oracle Open Office Impress : samples and templates +Oracle Open Office Impress : saving +Oracle Open Office Impress : saving;as HTML +Oracle Open Office Impress : saving;default file formats +Oracle Open Office Impress : saving;dialog settings +Oracle Open Office Impress : saving;documents +Oracle Open Office Impress : saving;documents for mobile devices +Oracle Open Office Impress : saving;documents in other formats +Oracle Open Office Impress : saving;documents, automatically +Oracle Open Office Impress : saving;in Microsoft Office file format +Oracle Open Office Impress : saving;options +Oracle Open Office Impress : saving;templates +Oracle Open Office Impress : saving;to XML +Oracle Open Office Impress : saving;VBA code in Microsoft Office documents +Oracle Open Office Impress : saving;with password by default +Oracle Open Office Impress : saving as command +Oracle Open Office Impress : saving as command;precautions +Oracle Open Office Impress : scaling +Oracle Open Office Impress : scaling;axes +Oracle Open Office Impress : scaling;font sizes in user interface +Oracle Open Office Impress : scaling;objects +Oracle Open Office Impress : scaling;pictures +Oracle Open Office Impress : scaling;printing in Oracle Open Office Math +Oracle Open Office Impress : scaling;text in charts +Oracle Open Office Impress : scaling;when printing presentations +Oracle Open Office Impress : scaling, see also zooming +Oracle Open Office Impress : scatter charts +Oracle Open Office Impress : screen +Oracle Open Office Impress : screen;full screen views +Oracle Open Office Impress : screen;scaling +Oracle Open Office Impress : screen magnifiers +Oracle Open Office Impress : screen readers +Oracle Open Office Impress : script organization +Oracle Open Office Impress : scrollbars +Oracle Open Office Impress : scrollbars;controls +Oracle Open Office Impress : scrollbars;displaying (Calc) +Oracle Open Office Impress : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Impress : search criteria for database functions in cells +Oracle Open Office Impress : search engines +Oracle Open Office Impress : search engines;definition +Oracle Open Office Impress : search engines;selecting +Oracle Open Office Impress : searching +Oracle Open Office Impress : searching;all sheets +Oracle Open Office Impress : searching;databases +Oracle Open Office Impress : searching;form filters +Oracle Open Office Impress : searching;Internet +Oracle Open Office Impress : searching;tables and forms +Oracle Open Office Impress : secondary axes in charts +Oracle Open Office Impress : sections +Oracle Open Office Impress : sections;backgrounds +Oracle Open Office Impress : sectors of circles/ellipses +Oracle Open Office Impress : security +Oracle Open Office Impress : security;digital signatures +Oracle Open Office Impress : security;options for documents with macros +Oracle Open Office Impress : security;protecting contents +Oracle Open Office Impress : security;security levels for macros +Oracle Open Office Impress : security;warning dialogs with macros +Oracle Open Office Impress : segments of circles/ellipses +Oracle Open Office Impress : selecting +Oracle Open Office Impress : selecting;controls +Oracle Open Office Impress : selecting;hidden objects +Oracle Open Office Impress : selecting;layers +Oracle Open Office Impress : selecting;measurement units +Oracle Open Office Impress : selecting;objects +Oracle Open Office Impress : selecting;print areas +Oracle Open Office Impress : selecting;several files +Oracle Open Office Impress : selection clipboard +Oracle Open Office Impress : selection frames +Oracle Open Office Impress : selection modes in text +Oracle Open Office Impress : sending +Oracle Open Office Impress : sending;AutoAbstract function in presentations +Oracle Open Office Impress : sending;documents as e-mail +Oracle Open Office Impress : sending;documents as faxes +Oracle Open Office Impress : separator lines +Oracle Open Office Impress : separator lines;defining +Oracle Open Office Impress : separators +Oracle Open Office Impress : separators;conditional +Oracle Open Office Impress : Server Side ImageMap +Oracle Open Office Impress : settings +Oracle Open Office Impress : settings;printers +Oracle Open Office Impress : settings;program configuration +Oracle Open Office Impress : settings;proxies +Oracle Open Office Impress : settings;views +Oracle Open Office Impress : SGML +Oracle Open Office Impress : SGML;definition +Oracle Open Office Impress : shadows +Oracle Open Office Impress : shadows;areas +Oracle Open Office Impress : shadows;borders +Oracle Open Office Impress : shadows;characters +Oracle Open Office Impress : shadows;characters, using context menu +Oracle Open Office Impress : shapes +Oracle Open Office Impress : sharing documents +Oracle Open Office Impress : sharpening filter +Oracle Open Office Impress : shearing objects +Oracle Open Office Impress : sheet tabs +Oracle Open Office Impress : sheet tabs;displaying +Oracle Open Office Impress : sheets +Oracle Open Office Impress : sheets;searching all +Oracle Open Office Impress : shells +Oracle Open Office Impress : shortcut keys +Oracle Open Office Impress : shortcut keys;assigning macros +Oracle Open Office Impress : shortcut keys;charts +Oracle Open Office Impress : shortcut keys;general +Oracle Open Office Impress : shortcut keys;in databases +Oracle Open Office Impress : shortcut keys;in drawings +Oracle Open Office Impress : shortcut keys;in presentations +Oracle Open Office Impress : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Impress : showing +Oracle Open Office Impress : showing;changes +Oracle Open Office Impress : showing;docked windows +Oracle Open Office Impress : showing;drawings and controls (Writer) +Oracle Open Office Impress : showing;guides +Oracle Open Office Impress : showing;hidden layers +Oracle Open Office Impress : showing;hidden slides +Oracle Open Office Impress : showing;levels +Oracle Open Office Impress : showing;live presentations on the Internet +Oracle Open Office Impress : showing;slide shows +Oracle Open Office Impress : showing;subpoints +Oracle Open Office Impress : showing;toolbars +Oracle Open Office Impress : sign conversion to curves +Oracle Open Office Impress : signing documents with digital signatures +Oracle Open Office Impress : similarity search +Oracle Open Office Impress : simple handles (Writer) +Oracle Open Office Impress : simplified Chinese +Oracle Open Office Impress : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Impress : single sign on options +Oracle Open Office Impress : single-line spacing in text +Oracle Open Office Impress : sizes +Oracle Open Office Impress : sizes;draw objects +Oracle Open Office Impress : sizes;pictures +Oracle Open Office Impress : skewing draw objects +Oracle Open Office Impress : slanting draw objects +Oracle Open Office Impress : slanting objects +Oracle Open Office Impress : slide designs +Oracle Open Office Impress : slide layouts +Oracle Open Office Impress : slide master view +Oracle Open Office Impress : slide masters +Oracle Open Office Impress : slide masters;changing backgrounds +Oracle Open Office Impress : slide masters;designing +Oracle Open Office Impress : slide masters;headers and footers +Oracle Open Office Impress : slide numbers +Oracle Open Office Impress : slide numbers on all slides +Oracle Open Office Impress : slide shows +Oracle Open Office Impress : slide shows;custom +Oracle Open Office Impress : slide shows;settings for +Oracle Open Office Impress : slide shows;starting +Oracle Open Office Impress : slide transitions +Oracle Open Office Impress : slide transitions;applying effects +Oracle Open Office Impress : slide transitions;automatic +Oracle Open Office Impress : slide transitions;manual +Oracle Open Office Impress : slide transitions;sounds +Oracle Open Office Impress : slides +Oracle Open Office Impress : slides;arranging +Oracle Open Office Impress : slides;backgrounds +Oracle Open Office Impress : slides;changing backgrounds +Oracle Open Office Impress : slides;copying between documents +Oracle Open Office Impress : slides;deleting +Oracle Open Office Impress : slides;expanding +Oracle Open Office Impress : slides;formatting +Oracle Open Office Impress : slides;headers and footers +Oracle Open Office Impress : slides;inserting +Oracle Open Office Impress : slides;inserting as links +Oracle Open Office Impress : slides;inserting speaker notes +Oracle Open Office Impress : slides;page numbers +Oracle Open Office Impress : slides;printing +Oracle Open Office Impress : small capitals +Oracle Open Office Impress : small icons +Oracle Open Office Impress : smart tag configuration +Oracle Open Office Impress : smooth scrolling (Writer) +Oracle Open Office Impress : smoothing filter +Oracle Open Office Impress : snap grid defaults (Writer/Calc) +Oracle Open Office Impress : snap lines, see also guides +Oracle Open Office Impress : snap points +Oracle Open Office Impress : snap points;editing +Oracle Open Office Impress : snap points;inserting +Oracle Open Office Impress : snapping in presentations and drawings +Oracle Open Office Impress : solarization filter +Oracle Open Office Impress : sort lists +Oracle Open Office Impress : sort lists;copying to in Calc +Oracle Open Office Impress : sorting +Oracle Open Office Impress : sorting;data in forms +Oracle Open Office Impress : sorting;databases +Oracle Open Office Impress : sound files +Oracle Open Office Impress : sounds +Oracle Open Office Impress : sounds;for effects +Oracle Open Office Impress : sounds;formats +Oracle Open Office Impress : sounds;on slide transitions +Oracle Open Office Impress : spaces +Oracle Open Office Impress : spaces;displaying (Writer) +Oracle Open Office Impress : spaces;ignoring double +Oracle Open Office Impress : spaces;inserting protected spaces +Oracle Open Office Impress : spaces;showing protected spaces (Writer) +Oracle Open Office Impress : spacing +Oracle Open Office Impress : spacing;between paragraphs in footnotes +Oracle Open Office Impress : spacing;font effects +Oracle Open Office Impress : spacing;lines and paragraphs +Oracle Open Office Impress : spacing;tab stops in text documents +Oracle Open Office Impress : spacing;tabs in presentations +Oracle Open Office Impress : spadmin +Oracle Open Office Impress : speaker notes +Oracle Open Office Impress : speaker notes;defaults +Oracle Open Office Impress : speaker notes;inserting +Oracle Open Office Impress : special characters +Oracle Open Office Impress : speech bubbles +Oracle Open Office Impress : speed of printing +Oracle Open Office Impress : spellcheck +Oracle Open Office Impress : spellcheck;activating for a language +Oracle Open Office Impress : spellcheck;context menus +Oracle Open Office Impress : spellcheck;default languages +Oracle Open Office Impress : spellcheck;dialog +Oracle Open Office Impress : spellcheck;dictionary of exceptions +Oracle Open Office Impress : spellcheck;ignore list +Oracle Open Office Impress : spheres +Oracle Open Office Impress : spin button creation +Oracle Open Office Impress : splitting +Oracle Open Office Impress : splitting;combinations +Oracle Open Office Impress : splitting;curves +Oracle Open Office Impress : spoolfiles with Xprinter +Oracle Open Office Impress : spreadsheets +Oracle Open Office Impress : spreadsheets;as databases (base) +Oracle Open Office Impress : spreadsheets;copying areas to text documents +Oracle Open Office Impress : spreadsheets;creating/opening +Oracle Open Office Impress : spreadsheets;in presentations +Oracle Open Office Impress : spreadsheets;inserting charts +Oracle Open Office Impress : spreadsheets;inserting database records +Oracle Open Office Impress : spreadsheets;printing +Oracle Open Office Impress : spreadsheets;saving +Oracle Open Office Impress : spreadsheets;saving automatically +Oracle Open Office Impress : spreadsheets;saving in other formats +Oracle Open Office Impress : spreadsheets;sending as e-mail +Oracle Open Office Impress : SQL +Oracle Open Office Impress : SQL;definition +Oracle Open Office Impress : SQL;DISTINCT parameter +Oracle Open Office Impress : SQL;executing SQL commands +Oracle Open Office Impress : SQL;executing SQL statements (Base) +Oracle Open Office Impress : SQL;queries (Base) +Oracle Open Office Impress : square drawings +Oracle Open Office Impress : standard bar on/off +Oracle Open Office Impress : standard deviation in charts +Oracle Open Office Impress : standard filters +Oracle Open Office Impress : standard filters;comparison operators +Oracle Open Office Impress : standard filters;databases +Oracle Open Office Impress : standard printer under UNIX +Oracle Open Office Impress : start center +Oracle Open Office Impress : start parameters +Oracle Open Office Impress : starting +Oracle Open Office Impress : starting;always with the current slide +Oracle Open Office Impress : starting;custom slide shows +Oracle Open Office Impress : starting;slide shows +Oracle Open Office Impress : statistics in charts +Oracle Open Office Impress : status bar on/off +Oracle Open Office Impress : stickers +Oracle Open Office Impress : stock charts +Oracle Open Office Impress : strikethrough +Oracle Open Office Impress : strikethrough;characters +Oracle Open Office Impress : strikethrough;font effects +Oracle Open Office Impress : styles +Oracle Open Office Impress : styles;'changed' message +Oracle Open Office Impress : styles;arrow and line styles +Oracle Open Office Impress : styles;copying between documents +Oracle Open Office Impress : styles;keyboard shortcuts +Oracle Open Office Impress : styles;organizing +Oracle Open Office Impress : styles;printing styles used in a document +Oracle Open Office Impress : styles;replacing automatically +Oracle Open Office Impress : Styles and Formatting window +Oracle Open Office Impress : Styles and Formatting window;docking +Oracle Open Office Impress : Styles and Formatting window;graphics documents +Oracle Open Office Impress : subforms +Oracle Open Office Impress : subforms;creating +Oracle Open Office Impress : subforms;description +Oracle Open Office Impress : submitting forms +Oracle Open Office Impress : subpoints +Oracle Open Office Impress : subpoints;hiding +Oracle Open Office Impress : subpoints;showing +Oracle Open Office Impress : subtracting polygons +Oracle Open Office Impress : suffixes in file formats +Oracle Open Office Impress : summary slide +Oracle Open Office Impress : support on the Web +Oracle Open Office Impress : synchronizing +Oracle Open Office Impress : synchronizing;labels and business cards +Oracle Open Office Impress : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Impress : system address book registration +Oracle Open Office Impress : tab stops +Oracle Open Office Impress : tab stops;displaying (Writer) +Oracle Open Office Impress : tab stops;inserting and editing +Oracle Open Office Impress : tab stops;regular expressions +Oracle Open Office Impress : tab stops;setting in sheets +Oracle Open Office Impress : tab stops;settings +Oracle Open Office Impress : tab stops;spacing in presentations +Oracle Open Office Impress : tab stops;spacing in text documents +Oracle Open Office Impress : table controls +Oracle Open Office Impress : table controls;form functions +Oracle Open Office Impress : table controls;keyboard-only edit mode +Oracle Open Office Impress : table controls;properties +Oracle Open Office Impress : table views of databases +Oracle Open Office Impress : Table Wizard (Base) +Oracle Open Office Impress : tables +Oracle Open Office Impress : tables;inserting line breaks +Oracle Open Office Impress : tables in databases +Oracle Open Office Impress : tables in databases;access rights to (Base) +Oracle Open Office Impress : tables in databases;adding to queries +Oracle Open Office Impress : tables in databases;browsing and editing +Oracle Open Office Impress : tables in databases;copying database tables (Base) +Oracle Open Office Impress : tables in databases;creating +Oracle Open Office Impress : tables in databases;creating in design view (manually) +Oracle Open Office Impress : tables in databases;importing text formats (Base) +Oracle Open Office Impress : tables in databases;joining for queries (Base) +Oracle Open Office Impress : tables in databases;printing queries (Base) +Oracle Open Office Impress : tables in databases;relations (Base) +Oracle Open Office Impress : tables in databases;searching +Oracle Open Office Impress : tables in spreadsheets +Oracle Open Office Impress : tables in spreadsheets;copying data to other applications +Oracle Open Office Impress : tables in spreadsheets;defining borders +Oracle Open Office Impress : tables in spreadsheets;value highlighting +Oracle Open Office Impress : tables in text +Oracle Open Office Impress : tables in text;captions +Oracle Open Office Impress : tables in text;creating automatically +Oracle Open Office Impress : tables in text;default settings +Oracle Open Office Impress : tables in text;defining borders +Oracle Open Office Impress : tables in text;displaying +Oracle Open Office Impress : tables in text;printing +Oracle Open Office Impress : tabs +Oracle Open Office Impress : tabs;displaying sheet tabs +Oracle Open Office Impress : tags +Oracle Open Office Impress : tags;definition +Oracle Open Office Impress : tags;META tags +Oracle Open Office Impress : task pane +Oracle Open Office Impress : templates +Oracle Open Office Impress : templates;agendas +Oracle Open Office Impress : templates;changing basic fonts +Oracle Open Office Impress : templates;database reports +Oracle Open Office Impress : templates;deleting +Oracle Open Office Impress : templates;editing and saving +Oracle Open Office Impress : templates;faxes +Oracle Open Office Impress : templates;importing and exporting +Oracle Open Office Impress : templates;letters +Oracle Open Office Impress : templates;new documents from templates +Oracle Open Office Impress : templates;opening documents with +Oracle Open Office Impress : templates;organizing +Oracle Open Office Impress : terminology +Oracle Open Office Impress : terminology;general glossary +Oracle Open Office Impress : terminology;Internet glossary +Oracle Open Office Impress : testing XML filters +Oracle Open Office Impress : text +Oracle Open Office Impress : text;animating +Oracle Open Office Impress : text;Asian layout +Oracle Open Office Impress : text;bold +Oracle Open Office Impress : text;coloring +Oracle Open Office Impress : text;converting to curves +Oracle Open Office Impress : text;copying by drag and drop +Oracle Open Office Impress : text;CTL languages +Oracle Open Office Impress : text;double-clicking to edit +Oracle Open Office Impress : text;drawing pictures +Oracle Open Office Impress : text;font effects +Oracle Open Office Impress : text;font sizes +Oracle Open Office Impress : text;font styles +Oracle Open Office Impress : text;fonts and formats +Oracle Open Office Impress : text;Fontwork icons +Oracle Open Office Impress : text;hyperlinks +Oracle Open Office Impress : text;inserting special characters +Oracle Open Office Impress : text;italics +Oracle Open Office Impress : text;kerning +Oracle Open Office Impress : text;language selection +Oracle Open Office Impress : text;line spacing +Oracle Open Office Impress : text;overwriting or inserting +Oracle Open Office Impress : text;printing in black +Oracle Open Office Impress : text;replacing with format +Oracle Open Office Impress : text;selection modes +Oracle Open Office Impress : text;shadowed +Oracle Open Office Impress : text;text/draw objects +Oracle Open Office Impress : text;toolbar +Oracle Open Office Impress : text attributes +Oracle Open Office Impress : text attributes;hyperlinks +Oracle Open Office Impress : text attributes;undoing +Oracle Open Office Impress : text boxes +Oracle Open Office Impress : text boxes;form functions +Oracle Open Office Impress : text boxes;positioning +Oracle Open Office Impress : text breaks in cells +Oracle Open Office Impress : text colors for better accessibility +Oracle Open Office Impress : text databases (Base) +Oracle Open Office Impress : text documents +Oracle Open Office Impress : text documents;creating/opening +Oracle Open Office Impress : text documents;importing/exporting +Oracle Open Office Impress : text documents;inserting in slides +Oracle Open Office Impress : text documents;inserting spreadsheet cells +Oracle Open Office Impress : text documents;print settings +Oracle Open Office Impress : text documents;printing +Oracle Open Office Impress : text documents;saving +Oracle Open Office Impress : text documents;saving automatically +Oracle Open Office Impress : text documents;saving in other formats +Oracle Open Office Impress : text documents;sending as e-mail +Oracle Open Office Impress : text effects +Oracle Open Office Impress : text entry mode for draw objects +Oracle Open Office Impress : text flow +Oracle Open Office Impress : text flow;in cells +Oracle Open Office Impress : text formats +Oracle Open Office Impress : text formats;databases +Oracle Open Office Impress : text formats;pasting +Oracle Open Office Impress : text frames +Oracle Open Office Impress : text input fields +Oracle Open Office Impress : text layout for special languages +Oracle Open Office Impress : text objects +Oracle Open Office Impress : text objects;alignment +Oracle Open Office Impress : text objects;draw functions +Oracle Open Office Impress : text objects;fonts +Oracle Open Office Impress : text objects;in presentations and drawings +Oracle Open Office Impress : text overflow in spreadsheet cells +Oracle Open Office Impress : text scaling in charts +Oracle Open Office Impress : text, see also text documents, paragraphs and characters +Oracle Open Office Impress : TextArt, see Fontwork +Oracle Open Office Impress : textures +Oracle Open Office Impress : textures;inserting from Gallery +Oracle Open Office Impress : textures;on chart bars +Oracle Open Office Impress : Thai +Oracle Open Office Impress : Thai;entering text +Oracle Open Office Impress : Thai;language settings +Oracle Open Office Impress : thesaurus +Oracle Open Office Impress : thesaurus;activating for a language +Oracle Open Office Impress : ticker text +Oracle Open Office Impress : tiled printing of slides +Oracle Open Office Impress : time and date on all slides +Oracle Open Office Impress : time fields +Oracle Open Office Impress : time fields;form functions +Oracle Open Office Impress : times +Oracle Open Office Impress : times;fixed +Oracle Open Office Impress : times;inserting when printing presentations +Oracle Open Office Impress : times;variable +Oracle Open Office Impress : times, formats +Oracle Open Office Impress : timings +Oracle Open Office Impress : timings;rehearse timings +Oracle Open Office Impress : tips +Oracle Open Office Impress : tips;extended tips in Help +Oracle Open Office Impress : title rows +Oracle Open Office Impress : title rows;printing in Oracle Open Office Math +Oracle Open Office Impress : titles +Oracle Open Office Impress : titles;alignment (charts) +Oracle Open Office Impress : titles;changing +Oracle Open Office Impress : titles;editing in charts +Oracle Open Office Impress : titles;font effects +Oracle Open Office Impress : titles;formatting automatically +Oracle Open Office Impress : titles;formatting charts +Oracle Open Office Impress : titles;objects +Oracle Open Office Impress : toolbars +Oracle Open Office Impress : toolbars;3D objects +Oracle Open Office Impress : toolbars;adding buttons +Oracle Open Office Impress : toolbars;curves +Oracle Open Office Impress : toolbars;docking/undocking +Oracle Open Office Impress : toolbars;ellipses +Oracle Open Office Impress : toolbars;Form Navigation bar +Oracle Open Office Impress : toolbars;viewing/closing +Oracle Open Office Impress : tools bar +Oracle Open Office Impress : tooltips +Oracle Open Office Impress : tooltips;extended tips +Oracle Open Office Impress : tooltips;help +Oracle Open Office Impress : torus +Oracle Open Office Impress : Track Changes, see review function +Oracle Open Office Impress : traditional Chinese +Oracle Open Office Impress : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Impress : transition effects +Oracle Open Office Impress : transparency +Oracle Open Office Impress : transparency;adjusting +Oracle Open Office Impress : transparency;areas +Oracle Open Office Impress : transparency;of objects +Oracle Open Office Impress : transparency;off for faster printing +Oracle Open Office Impress : transparency;saving +Oracle Open Office Impress : tree view of Help +Oracle Open Office Impress : trend lines in charts +Oracle Open Office Impress : triangle drawing +Oracle Open Office Impress : typefaces +Oracle Open Office Impress : typefaces;formats +Oracle Open Office Impress : typography +Oracle Open Office Impress : typography;Asian +Oracle Open Office Impress : underlining +Oracle Open Office Impress : underlining;AutoFormat function +Oracle Open Office Impress : underlining;characters +Oracle Open Office Impress : underlining;text +Oracle Open Office Impress : underlying objects +Oracle Open Office Impress : undocking windows +Oracle Open Office Impress : undoing +Oracle Open Office Impress : undoing;direct formatting +Oracle Open Office Impress : undoing;editing +Oracle Open Office Impress : undoing;number of steps +Oracle Open Office Impress : ungrouping groups +Oracle Open Office Impress : units +Oracle Open Office Impress : units;converting +Oracle Open Office Impress : units;measurement units +Oracle Open Office Impress : unlocking layers +Oracle Open Office Impress : UNO components +Oracle Open Office Impress : UNO components;Extension Manager +Oracle Open Office Impress : UNO components;integrating new +Oracle Open Office Impress : update options +Oracle Open Office Impress : updates +Oracle Open Office Impress : updates;checking automatically +Oracle Open Office Impress : updates;checking manually +Oracle Open Office Impress : updating +Oracle Open Office Impress : updating;fields and charts, automatically (Writer) +Oracle Open Office Impress : updating;links in text documents +Oracle Open Office Impress : updating;links, on opening +Oracle Open Office Impress : updating;templates +Oracle Open Office Impress : URL +Oracle Open Office Impress : URL;changing hyperlink URLs +Oracle Open Office Impress : URL;definition +Oracle Open Office Impress : URL;in pictures +Oracle Open Office Impress : URL;saving absolute/relative paths +Oracle Open Office Impress : URL;turning off URL recognition +Oracle Open Office Impress : user data +Oracle Open Office Impress : user data;input +Oracle Open Office Impress : user data;removing when saving +Oracle Open Office Impress : user feedback +Oracle Open Office Impress : user feedback;automatically +Oracle Open Office Impress : user-defined colors +Oracle Open Office Impress : user-defined dictionaries +Oracle Open Office Impress : user-defined dictionaries;creating +Oracle Open Office Impress : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Impress : user-defined dictionaries;editing +Oracle Open Office Impress : user-defined styles +Oracle Open Office Impress : user-defined styles;automatically replacing +Oracle Open Office Impress : UTF-8/UCS2 support +Oracle Open Office Impress : values +Oracle Open Office Impress : values;rounded as shown (Calc) +Oracle Open Office Impress : variables +Oracle Open Office Impress : variables;for paths +Oracle Open Office Impress : variances in charts +Oracle Open Office Impress : VBA code +Oracle Open Office Impress : VBA code;loading/saving documents with VBA code +Oracle Open Office Impress : vector graphics +Oracle Open Office Impress : vector graphics;converting bitmaps +Oracle Open Office Impress : vectorizing bitmaps +Oracle Open Office Impress : version management +Oracle Open Office Impress : version numbers of documents +Oracle Open Office Impress : versions +Oracle Open Office Impress : versions;comparing documents +Oracle Open Office Impress : versions;file saving as, restriction +Oracle Open Office Impress : versions;merging document versions +Oracle Open Office Impress : versions;of a document +Oracle Open Office Impress : versions;Oracle Open Office +Oracle Open Office Impress : vertical callouts +Oracle Open Office Impress : vertical scrollbars (Writer) +Oracle Open Office Impress : vertical text boxes +Oracle Open Office Impress : videos +Oracle Open Office Impress : viewing +Oracle Open Office Impress : viewing;databases +Oracle Open Office Impress : viewing;file properties +Oracle Open Office Impress : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Impress : viewing;toolbars +Oracle Open Office Impress : views +Oracle Open Office Impress : views;black and white +Oracle Open Office Impress : views;creating database views (Base) +Oracle Open Office Impress : views;defaults +Oracle Open Office Impress : views;display sizes +Oracle Open Office Impress : views;full screen +Oracle Open Office Impress : views;icons +Oracle Open Office Impress : views;scaling +Oracle Open Office Impress : views;shift function +Oracle Open Office Impress : views;slide master view +Oracle Open Office Impress : Visual Basic for Applications +Oracle Open Office Impress : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Impress : watermarks +Oracle Open Office Impress : web documents +Oracle Open Office Impress : web documents;XForms +Oracle Open Office Impress : Web support +Oracle Open Office Impress : WebCast export +Oracle Open Office Impress : WebDAV over HTTPS +Oracle Open Office Impress : windows +Oracle Open Office Impress : windows;docking +Oracle Open Office Impress : windows;docking definition +Oracle Open Office Impress : windows;hiding/showing/docking +Oracle Open Office Impress : windows;new +Oracle Open Office Impress : wizards +Oracle Open Office Impress : wizards;agendas +Oracle Open Office Impress : wizards;database queries +Oracle Open Office Impress : wizards;database tables (Base) +Oracle Open Office Impress : wizards;databases (Base) +Oracle Open Office Impress : wizards;document converter +Oracle Open Office Impress : wizards;Euro Converter +Oracle Open Office Impress : wizards;faxes +Oracle Open Office Impress : wizards;forms +Oracle Open Office Impress : wizards;letters +Oracle Open Office Impress : wizards;macros (Base) +Oracle Open Office Impress : wizards;overview +Oracle Open Office Impress : wizards;presentations +Oracle Open Office Impress : wizards;reports +Oracle Open Office Impress : Word documents +Oracle Open Office Impress : Word documents;compatibility +Oracle Open Office Impress : Word documents;saving as +Oracle Open Office Impress : WordArt, see Fontwork +Oracle Open Office Impress : words +Oracle Open Office Impress : words;automatically replacing +Oracle Open Office Impress : words;wrapping in cells +Oracle Open Office Impress : words;wrapping in CTL +Oracle Open Office Impress : working directory change +Oracle Open Office Impress : wrapping text +Oracle Open Office Impress : wrapping text;in cells +Oracle Open Office Impress : write protection on/off +Oracle Open Office Impress : writing aids options +Oracle Open Office Impress : WYSIWYG in fonts lists +Oracle Open Office Impress : X axes +Oracle Open Office Impress : X axes;grid formatting +Oracle Open Office Impress : X axes;positioning +Oracle Open Office Impress : X axes;scaling +Oracle Open Office Impress : X axes;showing +Oracle Open Office Impress : XForms +Oracle Open Office Impress : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Impress : XForms;conditions +Oracle Open Office Impress : XForms;opening/editing +Oracle Open Office Impress : XML converters +Oracle Open Office Impress : XML file formats +Oracle Open Office Impress : XML filters +Oracle Open Office Impress : XML filters;creating/testing +Oracle Open Office Impress : XML filters;saving as package/installing/deleting +Oracle Open Office Impress : XML filters;settings +Oracle Open Office Impress : XML Forms, see XForms +Oracle Open Office Impress : XSLT filters, see also XML filters +Oracle Open Office Impress : XY charts +Oracle Open Office Impress : Y axes +Oracle Open Office Impress : Y axes;formatting +Oracle Open Office Impress : Y axes;grid formatting +Oracle Open Office Impress : Y axes;positioning +Oracle Open Office Impress : Y axes;scaling +Oracle Open Office Impress : Y axes;showing +Oracle Open Office Impress : years +Oracle Open Office Impress : years;2-digit options +Oracle Open Office Impress : Z axes +Oracle Open Office Impress : Z axes;grid formatting +Oracle Open Office Impress : Z axes;showing +Oracle Open Office Impress : zero values +Oracle Open Office Impress : zero values;displaying (Calc) +Oracle Open Office Impress : zooming +Oracle Open Office Impress : zooming;in presentations +Oracle Open Office Impress : zooming;keyboard +Oracle Open Office Impress : zooming;page views +Oracle Open Office Impress : zooming;pictures +Oracle Open Office Impress : zooming;shortcut keys +Oracle Open Office Impress : zooming;status bar +Oracle Open Office Chart : 3D charts +Oracle Open Office Chart : 3D text creation +Oracle Open Office Chart : abbreviation replacement +Oracle Open Office Chart : absolute hyperlinks +Oracle Open Office Chart : absolute saving of URLs +Oracle Open Office Chart : accents +Oracle Open Office Chart : Access databases (base) +Oracle Open Office Chart : access rights for database tables (Base) +Oracle Open Office Chart : accessibility +Oracle Open Office Chart : accessibility;general shortcuts +Oracle Open Office Chart : accessibility;options +Oracle Open Office Chart : accessibility;Oracle Open Office assistive technology +Oracle Open Office Chart : accessibility;Oracle Open Office features +Oracle Open Office Chart : activating +Oracle Open Office Chart : activating;context menus +Oracle Open Office Chart : activating;Error Report Tool +Oracle Open Office Chart : activating;extended help tips +Oracle Open Office Chart : activating;plug-ins +Oracle Open Office Chart : ActiveX control +Oracle Open Office Chart : Adabas D databases (base) +Oracle Open Office Chart : add-ons, see UNO components +Oracle Open Office Chart : additional selection mode +Oracle Open Office Chart : address books +Oracle Open Office Chart : address books;LDAP server (Base) +Oracle Open Office Chart : address books;registering +Oracle Open Office Chart : address labels from databases +Oracle Open Office Chart : ADO databases (Base) +Oracle Open Office Chart : Agenda Wizard +Oracle Open Office Chart : aging filter +Oracle Open Office Chart : aligning +Oracle Open Office Chart : aligning;2D charts +Oracle Open Office Chart : aligning;cells +Oracle Open Office Chart : aligning;objects +Oracle Open Office Chart : aligning;paragraphs +Oracle Open Office Chart : aligning;tables in text +Oracle Open Office Chart : aligning;text objects +Oracle Open Office Chart : aligning;titles in charts +Oracle Open Office Chart : alternative fonts +Oracle Open Office Chart : ampersand symbol, see also operators +Oracle Open Office Chart : anchors +Oracle Open Office Chart : anchors;changing +Oracle Open Office Chart : anchors;displaying (Calc) +Oracle Open Office Chart : anchors;types/positions for draw objects +Oracle Open Office Chart : animations +Oracle Open Office Chart : animations;accessibility options +Oracle Open Office Chart : appearance options +Oracle Open Office Chart : Arabic +Oracle Open Office Chart : Arabic;entering text +Oracle Open Office Chart : Arabic;language settings +Oracle Open Office Chart : area charts +Oracle Open Office Chart : areas +Oracle Open Office Chart : areas;bitmap patterns +Oracle Open Office Chart : areas;hatched/dotted +Oracle Open Office Chart : areas;shadows +Oracle Open Office Chart : areas;slanting +Oracle Open Office Chart : areas;styles +Oracle Open Office Chart : areas;transparency +Oracle Open Office Chart : arguments in command line +Oracle Open Office Chart : arranging +Oracle Open Office Chart : arranging;objects +Oracle Open Office Chart : arrows +Oracle Open Office Chart : arrows;defining arrow heads +Oracle Open Office Chart : arrows;defining arrow lines +Oracle Open Office Chart : arrows;drawing in text +Oracle Open Office Chart : ASCII +Oracle Open Office Chart : ASCII;definition +Oracle Open Office Chart : Asian languages +Oracle Open Office Chart : Asian languages;enabling +Oracle Open Office Chart : Asian Phonetic Guide +Oracle Open Office Chart : Asian typography +Oracle Open Office Chart : assigning scripts +Oracle Open Office Chart : assistive technology in Oracle Open Office +Oracle Open Office Chart : attaching toolbars +Oracle Open Office Chart : attachments in e-mails +Oracle Open Office Chart : audio +Oracle Open Office Chart : auto reloading HTML documents +Oracle Open Office Chart : AutoAbstract function for sending text to presentations +Oracle Open Office Chart : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Chart : AutoComplete function in text and list boxes +Oracle Open Office Chart : AutoCorrect function +Oracle Open Office Chart : AutoCorrect function;context menu +Oracle Open Office Chart : AutoCorrect function;options +Oracle Open Office Chart : AutoCorrect function;pictures and frames +Oracle Open Office Chart : AutoCorrect function;quotes +Oracle Open Office Chart : AutoCorrect function;replacement table +Oracle Open Office Chart : AutoCorrect function;switching on and off +Oracle Open Office Chart : AutoCorrect function;URL recognition +Oracle Open Office Chart : automatic captions (Writer) +Oracle Open Office Chart : automatic control focus +Oracle Open Office Chart : automatic hyperlink formatting +Oracle Open Office Chart : automatic line breaks +Oracle Open Office Chart : automatic lines/borders in text +Oracle Open Office Chart : automatic saving +Oracle Open Office Chart : AutoPilots, see wizards +Oracle Open Office Chart : AutoValue (Base) +Oracle Open Office Chart : averages in charts +Oracle Open Office Chart : axes +Oracle Open Office Chart : axes;better scaling +Oracle Open Office Chart : axes;formatting +Oracle Open Office Chart : axes;formatting grids +Oracle Open Office Chart : axes;inserting grids +Oracle Open Office Chart : axes;interval marks +Oracle Open Office Chart : axes;showing axes in charts +Oracle Open Office Chart : axes in charts +Oracle Open Office Chart : backgrounds +Oracle Open Office Chart : backgrounds;defining colors/pictures +Oracle Open Office Chart : backgrounds;frames/sections/indexes +Oracle Open Office Chart : backgrounds;inserting from Gallery +Oracle Open Office Chart : backgrounds;printing +Oracle Open Office Chart : backing window +Oracle Open Office Chart : backups +Oracle Open Office Chart : backups;automatic +Oracle Open Office Chart : backups;documents +Oracle Open Office Chart : bar charts +Oracle Open Office Chart : Basic +Oracle Open Office Chart : Basic;fonts for source display +Oracle Open Office Chart : Basic;programming +Oracle Open Office Chart : Basic;recording macros +Oracle Open Office Chart : basic fonts +Oracle Open Office Chart : Bézier curves +Oracle Open Office Chart : Bézier curves;control points in presentations +Oracle Open Office Chart : bi-directional writing +Oracle Open Office Chart : binding space +Oracle Open Office Chart : bitmaps +Oracle Open Office Chart : bitmaps;inserting and editing +Oracle Open Office Chart : bitmaps;off for faster printing +Oracle Open Office Chart : bitmaps;patterns +Oracle Open Office Chart : black and white printing +Oracle Open Office Chart : black printing in Calc +Oracle Open Office Chart : block selection mode +Oracle Open Office Chart : bold +Oracle Open Office Chart : bold;AutoFormat function +Oracle Open Office Chart : bold;text +Oracle Open Office Chart : bookmarks +Oracle Open Office Chart : bookmarks;Help +Oracle Open Office Chart : borders +Oracle Open Office Chart : borders;arranging +Oracle Open Office Chart : borders;cells on screen (Calc) +Oracle Open Office Chart : borders;for paragraphs +Oracle Open Office Chart : borders;for tables +Oracle Open Office Chart : borders;shadows +Oracle Open Office Chart : borders;table boundaries (Writer) +Oracle Open Office Chart : borders, see also frames +Oracle Open Office Chart : bound fields +Oracle Open Office Chart : bound fields;controls +Oracle Open Office Chart : boundaries of tables (Writer) +Oracle Open Office Chart : break display (Writer) +Oracle Open Office Chart : brochures +Oracle Open Office Chart : brochures;printing several +Oracle Open Office Chart : bubble charts +Oracle Open Office Chart : build numbers of Oracle Open Office +Oracle Open Office Chart : bullet lists +Oracle Open Office Chart : bullet lists;formatting options +Oracle Open Office Chart : bullets +Oracle Open Office Chart : bullets;paragraphs +Oracle Open Office Chart : bullets;replacing +Oracle Open Office Chart : bullets;turning off +Oracle Open Office Chart : business cards +Oracle Open Office Chart : business cards;creating and synchronizing +Oracle Open Office Chart : business cards;using templates +Oracle Open Office Chart : button bars, see toolbars +Oracle Open Office Chart : buttons +Oracle Open Office Chart : buttons;adding push buttons +Oracle Open Office Chart : buttons;big/small +Oracle Open Office Chart : buttons;editing hyperlink buttons +Oracle Open Office Chart : buttons;form functions +Oracle Open Office Chart : buttons;toolbars +Oracle Open Office Chart : cache for graphics +Oracle Open Office Chart : calculating +Oracle Open Office Chart : calculating;iterative references (Calc) +Oracle Open Office Chart : calculating;regression curves +Oracle Open Office Chart : callouts +Oracle Open Office Chart : callouts;drawings +Oracle Open Office Chart : capital letters +Oracle Open Office Chart : capital letters;AutoCorrect function +Oracle Open Office Chart : capital letters;font effects +Oracle Open Office Chart : captions +Oracle Open Office Chart : captions;automatic captions (Writer) +Oracle Open Office Chart : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Chart : captions, see also labels/callouts +Oracle Open Office Chart : cascading update (Base) +Oracle Open Office Chart : case sensitivity +Oracle Open Office Chart : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Chart : case sensitivity;searching +Oracle Open Office Chart : cells +Oracle Open Office Chart : cells;aligning +Oracle Open Office Chart : cells;coloring (Calc) +Oracle Open Office Chart : cells;cursor positions after input (Calc) +Oracle Open Office Chart : cells;formatting without effect (Calc) +Oracle Open Office Chart : cells;line breaks +Oracle Open Office Chart : cells;linked to controls +Oracle Open Office Chart : cells;number of +Oracle Open Office Chart : cells;pasting +Oracle Open Office Chart : cells;resetting formats +Oracle Open Office Chart : cells;showing grid lines (Calc) +Oracle Open Office Chart : centered text +Oracle Open Office Chart : centimeters +Oracle Open Office Chart : certificates +Oracle Open Office Chart : changes +Oracle Open Office Chart : changes;accepting or rejecting +Oracle Open Office Chart : changes;comparing to original +Oracle Open Office Chart : changes;protecting +Oracle Open Office Chart : changes;recording +Oracle Open Office Chart : changes;review function +Oracle Open Office Chart : changes;showing +Oracle Open Office Chart : changing +Oracle Open Office Chart : changing;document titles +Oracle Open Office Chart : changing;file associations in Setup program +Oracle Open Office Chart : changing;icon sizes +Oracle Open Office Chart : changing;links +Oracle Open Office Chart : changing;work directory +Oracle Open Office Chart : changing, see also editing and replacing +Oracle Open Office Chart : character styles +Oracle Open Office Chart : character styles;language selection +Oracle Open Office Chart : characters +Oracle Open Office Chart : characters;alternative fonts +Oracle Open Office Chart : characters;Asian layout +Oracle Open Office Chart : characters;bold +Oracle Open Office Chart : characters;coloring +Oracle Open Office Chart : characters;displaying only on screen (Writer) +Oracle Open Office Chart : characters;enabling CTL and Asian characters +Oracle Open Office Chart : characters;font effects +Oracle Open Office Chart : characters;fonts and formats +Oracle Open Office Chart : characters;hyperlinks +Oracle Open Office Chart : characters;italics +Oracle Open Office Chart : characters;language selection +Oracle Open Office Chart : characters;shadowed +Oracle Open Office Chart : characters;spacing +Oracle Open Office Chart : characters;special +Oracle Open Office Chart : characters;underlining +Oracle Open Office Chart : charcoal sketches filter +Oracle Open Office Chart : chart legends +Oracle Open Office Chart : chart legends;hiding +Oracle Open Office Chart : chart legends;showing icons with labels +Oracle Open Office Chart : chart types +Oracle Open Office Chart : chart types;area +Oracle Open Office Chart : chart types;bubble +Oracle Open Office Chart : chart types;column and bar +Oracle Open Office Chart : chart types;column and line +Oracle Open Office Chart : chart types;line +Oracle Open Office Chart : chart types;net +Oracle Open Office Chart : chart types;pie/donut +Oracle Open Office Chart : chart types;stock +Oracle Open Office Chart : chart types;XY (scatter) +Oracle Open Office Chart : charts +Oracle Open Office Chart : charts;3D views +Oracle Open Office Chart : charts;aligning +Oracle Open Office Chart : charts;arranging within stacks +Oracle Open Office Chart : charts;bars with textures +Oracle Open Office Chart : charts;choosing chart types +Oracle Open Office Chart : charts;colors +Oracle Open Office Chart : charts;copying with link to source cell range +Oracle Open Office Chart : charts;data labels +Oracle Open Office Chart : charts;displaying (Calc) +Oracle Open Office Chart : charts;editing axes +Oracle Open Office Chart : charts;editing data +Oracle Open Office Chart : charts;editing legends +Oracle Open Office Chart : charts;editing titles +Oracle Open Office Chart : charts;formatting areas +Oracle Open Office Chart : charts;formatting floors +Oracle Open Office Chart : charts;formatting walls +Oracle Open Office Chart : charts;inserting +Oracle Open Office Chart : charts;overview +Oracle Open Office Chart : charts;positioning axes +Oracle Open Office Chart : charts;properties +Oracle Open Office Chart : charts;reorganizing +Oracle Open Office Chart : charts;scaling axes +Oracle Open Office Chart : charts;scaling text +Oracle Open Office Chart : charts;shortcuts +Oracle Open Office Chart : charts;showing axes +Oracle Open Office Chart : charts;updating automatically (Writer) +Oracle Open Office Chart : check box creation +Oracle Open Office Chart : Chinese writing systems +Oracle Open Office Chart : choosing printers +Oracle Open Office Chart : circle drawings +Oracle Open Office Chart : Client Side ImageMap +Oracle Open Office Chart : clipboard +Oracle Open Office Chart : clipboard;cutting +Oracle Open Office Chart : clipboard;pasting +Oracle Open Office Chart : clipboard;pasting formatted/unformatted text +Oracle Open Office Chart : clipboard;selection clipboard +Oracle Open Office Chart : clipboard;Unix +Oracle Open Office Chart : Clippy, see Help Agent +Oracle Open Office Chart : closing +Oracle Open Office Chart : closing;documents +Oracle Open Office Chart : closing;toolbars +Oracle Open Office Chart : collaboration +Oracle Open Office Chart : color bar +Oracle Open Office Chart : colors +Oracle Open Office Chart : colors;adding +Oracle Open Office Chart : colors;appearance +Oracle Open Office Chart : colors;backgrounds +Oracle Open Office Chart : colors;charts +Oracle Open Office Chart : colors;fonts +Oracle Open Office Chart : colors;grid lines and cells (Calc) +Oracle Open Office Chart : colors;ignored text color +Oracle Open Office Chart : colors;models +Oracle Open Office Chart : colors;not printing +Oracle Open Office Chart : colors;printing in grayscale +Oracle Open Office Chart : colors;restriction (Calc) +Oracle Open Office Chart : colors;selection +Oracle Open Office Chart : column and line charts +Oracle Open Office Chart : column charts +Oracle Open Office Chart : column headers +Oracle Open Office Chart : column headers;displaying (Calc) +Oracle Open Office Chart : column headers;highlighting (Calc) +Oracle Open Office Chart : columns +Oracle Open Office Chart : columns;setting with the mouse +Oracle Open Office Chart : combination charts +Oracle Open Office Chart : combo box creation +Oracle Open Office Chart : command button creation +Oracle Open Office Chart : command buttons, see push buttons +Oracle Open Office Chart : command line parameters +Oracle Open Office Chart : commands +Oracle Open Office Chart : commands;repeating +Oracle Open Office Chart : commands;SQL +Oracle Open Office Chart : comments +Oracle Open Office Chart : comments;inserting/editing/deleting/printing +Oracle Open Office Chart : comments;on changes +Oracle Open Office Chart : comments;printing in text +Oracle Open Office Chart : common terms +Oracle Open Office Chart : common terms;Chinese dictionary +Oracle Open Office Chart : common terms;glossaries +Oracle Open Office Chart : common terms;Internet glossary +Oracle Open Office Chart : comparisons +Oracle Open Office Chart : comparisons;document versions +Oracle Open Office Chart : comparisons;operators in standard filter dialog +Oracle Open Office Chart : compatibility settings for MS Word import +Oracle Open Office Chart : complete screen view +Oracle Open Office Chart : complex text layout +Oracle Open Office Chart : complex text layout;definition +Oracle Open Office Chart : complex text layout;enabling +Oracle Open Office Chart : complex text layout, see CTL +Oracle Open Office Chart : compose key to insert special characters +Oracle Open Office Chart : concatenation, see ampersand symbol +Oracle Open Office Chart : conditional separators +Oracle Open Office Chart : conditions +Oracle Open Office Chart : conditions;in number formats +Oracle Open Office Chart : conditions;items in Data Navigator +Oracle Open Office Chart : Configuration Manager +Oracle Open Office Chart : configuring +Oracle Open Office Chart : configuring;fax icon +Oracle Open Office Chart : configuring;Oracle Open Office +Oracle Open Office Chart : configuring;toolbars +Oracle Open Office Chart : connections to data sources (Base) +Oracle Open Office Chart : contents protection +Oracle Open Office Chart : context menus +Oracle Open Office Chart : control point display in presentations +Oracle Open Office Chart : controls +Oracle Open Office Chart : controls;activating in forms +Oracle Open Office Chart : controls;adding to documents +Oracle Open Office Chart : controls;arranging in forms +Oracle Open Office Chart : controls;arranging within stacks +Oracle Open Office Chart : controls;assigning data sources +Oracle Open Office Chart : controls;assigning macros (Basic) +Oracle Open Office Chart : controls;bound fields/list contents/linked cells +Oracle Open Office Chart : controls;events +Oracle Open Office Chart : controls;focus +Oracle Open Office Chart : controls;formatted fields +Oracle Open Office Chart : controls;grouping +Oracle Open Office Chart : controls;hidden +Oracle Open Office Chart : controls;inserting +Oracle Open Office Chart : controls;multi-line titles +Oracle Open Office Chart : controls;positions and sizes +Oracle Open Office Chart : controls;printing +Oracle Open Office Chart : controls;properties of form controls +Oracle Open Office Chart : controls;properties of table controls +Oracle Open Office Chart : controls;reference by SQL +Oracle Open Office Chart : controls;rich text control +Oracle Open Office Chart : controls;select mode +Oracle Open Office Chart : controls;showing (Writer) +Oracle Open Office Chart : converters +Oracle Open Office Chart : converters;document converter +Oracle Open Office Chart : converters;Euro converter +Oracle Open Office Chart : converters;PostScript, UNIX +Oracle Open Office Chart : converters;XML +Oracle Open Office Chart : converting +Oracle Open Office Chart : converting;Hangul/Hanja +Oracle Open Office Chart : converting;metrics +Oracle Open Office Chart : converting;Microsoft documents +Oracle Open Office Chart : converting;Oracle Open Office documents +Oracle Open Office Chart : converting;Pocket PC formats +Oracle Open Office Chart : copies +Oracle Open Office Chart : copies;printing +Oracle Open Office Chart : copying +Oracle Open Office Chart : copying;by drag and drop +Oracle Open Office Chart : copying;data from text documents +Oracle Open Office Chart : copying;datasource records in spreadsheets +Oracle Open Office Chart : copying;draw objects +Oracle Open Office Chart : copying;draw objects between documents +Oracle Open Office Chart : copying;formatting +Oracle Open Office Chart : copying;from data source view +Oracle Open Office Chart : copying;from Gallery +Oracle Open Office Chart : copying;in Unix +Oracle Open Office Chart : copying;pictures, between documents +Oracle Open Office Chart : copying;sheet areas, to text documents +Oracle Open Office Chart : copying;to Gallery +Oracle Open Office Chart : copyright for Oracle Open Office +Oracle Open Office Chart : corner roundings +Oracle Open Office Chart : crash reports +Oracle Open Office Chart : criteria of query design (Base) +Oracle Open Office Chart : cropping pictures +Oracle Open Office Chart : CTL +Oracle Open Office Chart : CTL;(not) wrapping words +Oracle Open Office Chart : CTL;complex text layout languages +Oracle Open Office Chart : CTL;definition +Oracle Open Office Chart : CTL;options +Oracle Open Office Chart : cube drawing +Oracle Open Office Chart : currencies +Oracle Open Office Chart : currencies;converters +Oracle Open Office Chart : currencies;format codes +Oracle Open Office Chart : currency field creation +Oracle Open Office Chart : currency formats +Oracle Open Office Chart : cursor +Oracle Open Office Chart : cursor;allowing in protected areas (Writer) +Oracle Open Office Chart : cursor;in read-only text +Oracle Open Office Chart : cursor;quickly moving to an object +Oracle Open Office Chart : curves +Oracle Open Office Chart : curves;editing points +Oracle Open Office Chart : curves;properties in line charts/XY charts +Oracle Open Office Chart : custom dictionaries +Oracle Open Office Chart : custom dictionaries;editing +Oracle Open Office Chart : custom hyphens (Writer) +Oracle Open Office Chart : custom quotes +Oracle Open Office Chart : custom templates +Oracle Open Office Chart : customizing +Oracle Open Office Chart : customizing;events +Oracle Open Office Chart : customizing;keyboard +Oracle Open Office Chart : customizing;menus +Oracle Open Office Chart : customizing;Oracle Open Office +Oracle Open Office Chart : customizing;round corners +Oracle Open Office Chart : customizing;toolbars +Oracle Open Office Chart : cutting +Oracle Open Office Chart : dashes +Oracle Open Office Chart : data +Oracle Open Office Chart : data;filtering in forms +Oracle Open Office Chart : data;forms and subforms +Oracle Open Office Chart : data;read-only +Oracle Open Office Chart : data;sorting in forms +Oracle Open Office Chart : data;user data +Oracle Open Office Chart : data binding change in XForms +Oracle Open Office Chart : data labels in charts +Oracle Open Office Chart : Data Navigator +Oracle Open Office Chart : Data Navigator;adding/editing items +Oracle Open Office Chart : Data Navigator;display options +Oracle Open Office Chart : data ranges in charts +Oracle Open Office Chart : data series +Oracle Open Office Chart : data source browser +Oracle Open Office Chart : data source explorer +Oracle Open Office Chart : data source view +Oracle Open Office Chart : data source view;drag and drop +Oracle Open Office Chart : data source view;overview +Oracle Open Office Chart : data source view;showing +Oracle Open Office Chart : data sources +Oracle Open Office Chart : data sources;as tables +Oracle Open Office Chart : data sources;connection settings (Base) +Oracle Open Office Chart : data sources;copying records to spreadsheets +Oracle Open Office Chart : data sources;displaying current +Oracle Open Office Chart : data sources;LDAP server (Base) +Oracle Open Office Chart : data sources;Oracle Open Office Base +Oracle Open Office Chart : data sources;registering address books +Oracle Open Office Chart : data sources;reports +Oracle Open Office Chart : data sources;setting for stock charts +Oracle Open Office Chart : data sources;viewing +Oracle Open Office Chart : data structure of XForms +Oracle Open Office Chart : data values in charts +Oracle Open Office Chart : data, see also values +Oracle Open Office Chart : database contents +Oracle Open Office Chart : database contents;inserting as tables +Oracle Open Office Chart : database contents;inserting as text +Oracle Open Office Chart : database reports +Oracle Open Office Chart : Database Wizard (Base) +Oracle Open Office Chart : databases +Oracle Open Office Chart : databases;administration through SQL (Base) +Oracle Open Office Chart : databases;ADO (Base) +Oracle Open Office Chart : databases;connecting (Base) +Oracle Open Office Chart : databases;creating +Oracle Open Office Chart : databases;creating labels +Oracle Open Office Chart : databases;creating queries +Oracle Open Office Chart : databases;creating reports +Oracle Open Office Chart : databases;creating tables +Oracle Open Office Chart : databases;deleting (Base) +Oracle Open Office Chart : databases;drag and drop (Base) +Oracle Open Office Chart : databases;editing tables +Oracle Open Office Chart : databases;form filters +Oracle Open Office Chart : databases;formats (Base) +Oracle Open Office Chart : databases;importing/exporting +Oracle Open Office Chart : databases;JDBC (Base) +Oracle Open Office Chart : databases;main page (Base) +Oracle Open Office Chart : databases;ODBC (Base) +Oracle Open Office Chart : databases;overview +Oracle Open Office Chart : databases;registering (Base) +Oracle Open Office Chart : databases;searching records +Oracle Open Office Chart : databases;shortcut keys +Oracle Open Office Chart : databases;sorting +Oracle Open Office Chart : databases;standard filters +Oracle Open Office Chart : databases;text formats +Oracle Open Office Chart : databases;viewing +Oracle Open Office Chart : date fields +Oracle Open Office Chart : date fields;creating +Oracle Open Office Chart : date fields;properties +Oracle Open Office Chart : date formats +Oracle Open Office Chart : dates +Oracle Open Office Chart : dates;default (Calc) +Oracle Open Office Chart : dates;printing in presentations +Oracle Open Office Chart : dates;start 1900/01/01 (Calc) +Oracle Open Office Chart : dates;start 1904/01/01 (Calc) +Oracle Open Office Chart : dBASE +Oracle Open Office Chart : dBASE;database settings (Base) +Oracle Open Office Chart : DDE +Oracle Open Office Chart : DDE;definition +Oracle Open Office Chart : deactivating +Oracle Open Office Chart : deactivating;plug-ins +Oracle Open Office Chart : decimal places displayed (Calc) +Oracle Open Office Chart : decimal separator key +Oracle Open Office Chart : decimal tab stops +Oracle Open Office Chart : default directories +Oracle Open Office Chart : default filters, see standard filters +Oracle Open Office Chart : default printer +Oracle Open Office Chart : default printer;setting up +Oracle Open Office Chart : default printer;UNIX +Oracle Open Office Chart : default templates +Oracle Open Office Chart : default templates;changing +Oracle Open Office Chart : default templates;organizing +Oracle Open Office Chart : defaults +Oracle Open Office Chart : defaults;document formats in file dialogs +Oracle Open Office Chart : defaults;documents +Oracle Open Office Chart : defaults;file formats in Oracle Open Office +Oracle Open Office Chart : defaults;fonts +Oracle Open Office Chart : defaults;grids (Writer/Calc) +Oracle Open Office Chart : defaults;languages +Oracle Open Office Chart : defaults;number formats +Oracle Open Office Chart : defaults;of saving +Oracle Open Office Chart : defaults;program configuration +Oracle Open Office Chart : defaults;tab stops in text +Oracle Open Office Chart : defaults;views +Oracle Open Office Chart : defining +Oracle Open Office Chart : defining;arrowheads and other line ends +Oracle Open Office Chart : defining;colors +Oracle Open Office Chart : defining;line styles +Oracle Open Office Chart : defining;paragraph borders +Oracle Open Office Chart : defining;queries (Base) +Oracle Open Office Chart : defining;table borders +Oracle Open Office Chart : deleting +Oracle Open Office Chart : deleting;all direct formatting +Oracle Open Office Chart : deleting;comments +Oracle Open Office Chart : deleting;databases (Base) +Oracle Open Office Chart : deleting;hyperlinks +Oracle Open Office Chart : deleting;lines in text +Oracle Open Office Chart : deleting;models/instances +Oracle Open Office Chart : deleting;namespaces in XForms +Oracle Open Office Chart : deleting;tab stops +Oracle Open Office Chart : deleting;templates +Oracle Open Office Chart : deleting;XML filters +Oracle Open Office Chart : depth stagger +Oracle Open Office Chart : descriptions for objects +Oracle Open Office Chart : design mode after saving +Oracle Open Office Chart : design view +Oracle Open Office Chart : design view;creating forms +Oracle Open Office Chart : design view;queries/views (Base) +Oracle Open Office Chart : designing +Oracle Open Office Chart : designing;database tables +Oracle Open Office Chart : designing;fonts +Oracle Open Office Chart : designing;queries (Base) +Oracle Open Office Chart : detaching toolbars +Oracle Open Office Chart : dictionaries +Oracle Open Office Chart : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Chart : dictionaries;creating +Oracle Open Office Chart : dictionaries;editing user-defined +Oracle Open Office Chart : dictionaries;spellcheck +Oracle Open Office Chart : dictionaries, see also languages +Oracle Open Office Chart : digital signatures +Oracle Open Office Chart : digital signatures;getting/managing/applying +Oracle Open Office Chart : digital signatures;overview +Oracle Open Office Chart : digital signatures;WebDAV over HTTPS +Oracle Open Office Chart : direct formatting +Oracle Open Office Chart : direct formatting;undoing all +Oracle Open Office Chart : directories +Oracle Open Office Chart : directories;creating new +Oracle Open Office Chart : directories;directory structure +Oracle Open Office Chart : disabled persons +Oracle Open Office Chart : displaying +Oracle Open Office Chart : displaying;comments in text documents +Oracle Open Office Chart : displaying;non-printing characters (Writer) +Oracle Open Office Chart : displaying;pictures and objects (Writer) +Oracle Open Office Chart : displaying;tables (Writer) +Oracle Open Office Chart : displaying;zero values (Calc) +Oracle Open Office Chart : distances +Oracle Open Office Chart : distinct values in SQL queries +Oracle Open Office Chart : distorting in drawings +Oracle Open Office Chart : distributing XML filters +Oracle Open Office Chart : docking +Oracle Open Office Chart : docking;definition +Oracle Open Office Chart : docking;toolbars +Oracle Open Office Chart : docking;windows +Oracle Open Office Chart : Document Converter Wizard +Oracle Open Office Chart : Document Map, see Navigator +Oracle Open Office Chart : document types in Oracle Open Office +Oracle Open Office Chart : documents +Oracle Open Office Chart : documents;changing titles +Oracle Open Office Chart : documents;closing +Oracle Open Office Chart : documents;comparing +Oracle Open Office Chart : documents;contents as lists +Oracle Open Office Chart : documents;editing time +Oracle Open Office Chart : documents;exporting +Oracle Open Office Chart : documents;importing +Oracle Open Office Chart : documents;languages +Oracle Open Office Chart : documents;measurement units in +Oracle Open Office Chart : documents;merging +Oracle Open Office Chart : documents;number of pages/tables/sheets +Oracle Open Office Chart : documents;opening +Oracle Open Office Chart : documents;opening in design mode +Oracle Open Office Chart : documents;opening with templates +Oracle Open Office Chart : documents;organizing +Oracle Open Office Chart : documents;printing +Oracle Open Office Chart : documents;read-only +Oracle Open Office Chart : documents;reloading +Oracle Open Office Chart : documents;saving +Oracle Open Office Chart : documents;saving automatically +Oracle Open Office Chart : documents;saving in other formats +Oracle Open Office Chart : documents;sending as e-mail +Oracle Open Office Chart : documents;styles changed +Oracle Open Office Chart : documents;version management +Oracle Open Office Chart : documents;version numbers +Oracle Open Office Chart : donut charts +Oracle Open Office Chart : dotted areas +Oracle Open Office Chart : double-line spacing in paragraphs +Oracle Open Office Chart : double-line writing in Asian layout +Oracle Open Office Chart : drag and drop +Oracle Open Office Chart : drag and drop;copying and pasting text +Oracle Open Office Chart : drag and drop;data source view +Oracle Open Office Chart : drag and drop;from Gallery to draw objects +Oracle Open Office Chart : drag and drop;overview +Oracle Open Office Chart : drag and drop;pictures +Oracle Open Office Chart : drag and drop;to Gallery +Oracle Open Office Chart : draw objects +Oracle Open Office Chart : draw objects;adding/editing/copying +Oracle Open Office Chart : draw objects;anchoring +Oracle Open Office Chart : draw objects;arranging within stacks +Oracle Open Office Chart : draw objects;copying between documents +Oracle Open Office Chart : draw objects;displaying (Calc) +Oracle Open Office Chart : draw objects;dropping Gallery pictures +Oracle Open Office Chart : draw objects;flipping +Oracle Open Office Chart : draw objects;legends +Oracle Open Office Chart : draw objects;positioning and resizing +Oracle Open Office Chart : draw objects;protecting +Oracle Open Office Chart : draw objects;slanting +Oracle Open Office Chart : draw objects;text in +Oracle Open Office Chart : Drawing bar +Oracle Open Office Chart : drawing lines in text +Oracle Open Office Chart : drawings +Oracle Open Office Chart : drawings;creating/opening +Oracle Open Office Chart : drawings;languages +Oracle Open Office Chart : drawings;printing +Oracle Open Office Chart : drawings;printing defaults +Oracle Open Office Chart : drawings;printing in text documents +Oracle Open Office Chart : drawings;saving +Oracle Open Office Chart : drawings;saving automatically +Oracle Open Office Chart : drawings;saving in other formats +Oracle Open Office Chart : drawings;sending as e-mail +Oracle Open Office Chart : drawings;showing (Writer) +Oracle Open Office Chart : drawings, see also draw objects +Oracle Open Office Chart : drop-down lists in form functions +Oracle Open Office Chart : e-mail attachments +Oracle Open Office Chart : Edit File icon +Oracle Open Office Chart : edit mode +Oracle Open Office Chart : edit mode;after opening +Oracle Open Office Chart : edit mode;through Enter key (Calc) +Oracle Open Office Chart : Edit Points bar +Oracle Open Office Chart : editing +Oracle Open Office Chart : editing;chart axes +Oracle Open Office Chart : editing;chart data +Oracle Open Office Chart : editing;chart legends +Oracle Open Office Chart : editing;chart titles +Oracle Open Office Chart : editing;comments +Oracle Open Office Chart : editing;data binding of XForms +Oracle Open Office Chart : editing;database tables and queries +Oracle Open Office Chart : editing;draw objects +Oracle Open Office Chart : editing;Fontwork objects +Oracle Open Office Chart : editing;hyperlinks +Oracle Open Office Chart : editing;menus +Oracle Open Office Chart : editing;objects +Oracle Open Office Chart : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Chart : editing;pictures +Oracle Open Office Chart : editing;reports +Oracle Open Office Chart : editing;shortcut keys +Oracle Open Office Chart : editing;tab stops +Oracle Open Office Chart : editing;templates +Oracle Open Office Chart : editing;titles +Oracle Open Office Chart : editing;toolbars +Oracle Open Office Chart : editing;undoing +Oracle Open Office Chart : editing;XForms +Oracle Open Office Chart : editing time of documents +Oracle Open Office Chart : editors +Oracle Open Office Chart : editors;formula editor +Oracle Open Office Chart : editors;ImageMap editor +Oracle Open Office Chart : effects +Oracle Open Office Chart : effects;font positions +Oracle Open Office Chart : effects;fonts +Oracle Open Office Chart : effects;Fontwork icons +Oracle Open Office Chart : ellipse drawing +Oracle Open Office Chart : empty documents +Oracle Open Office Chart : empty paragraph removal +Oracle Open Office Chart : encryption of contents +Oracle Open Office Chart : entering groups +Oracle Open Office Chart : entering text from right to left +Oracle Open Office Chart : equal sign, see also operators +Oracle Open Office Chart : equations in formula editor +Oracle Open Office Chart : error bars in charts +Oracle Open Office Chart : error indicators in charts +Oracle Open Office Chart : Error Report Tool +Oracle Open Office Chart : Euro +Oracle Open Office Chart : Euro;currency formats +Oracle Open Office Chart : Euro;Euro Converter Wizard +Oracle Open Office Chart : even/odd pages +Oracle Open Office Chart : even/odd pages;printing +Oracle Open Office Chart : events +Oracle Open Office Chart : events;assigning scripts +Oracle Open Office Chart : events;controls +Oracle Open Office Chart : events;customizing +Oracle Open Office Chart : events;in forms +Oracle Open Office Chart : Excel +Oracle Open Office Chart : Excel;saving as +Oracle Open Office Chart : Excel;search criteria +Oracle Open Office Chart : exceptions +Oracle Open Office Chart : exceptions;user-defined dictionaries +Oracle Open Office Chart : exchanging, see also replacing +Oracle Open Office Chart : executing SQL commands +Oracle Open Office Chart : exiting +Oracle Open Office Chart : exiting;groups +Oracle Open Office Chart : exiting;Oracle Open Office +Oracle Open Office Chart : expanding formatting (Calc) +Oracle Open Office Chart : explorer of data sources +Oracle Open Office Chart : export filters +Oracle Open Office Chart : exporting +Oracle Open Office Chart : exporting;bitmaps +Oracle Open Office Chart : exporting;HTML and text documents +Oracle Open Office Chart : exporting;Microsoft Office documents with VBA code +Oracle Open Office Chart : exporting;spreadsheets to text format +Oracle Open Office Chart : exporting;templates +Oracle Open Office Chart : exporting;to foreign formats +Oracle Open Office Chart : exporting;to HTML +Oracle Open Office Chart : exporting;to Microsoft Office formats +Oracle Open Office Chart : exporting;to PDF +Oracle Open Office Chart : exporting;to PostScript format +Oracle Open Office Chart : exporting;to XML +Oracle Open Office Chart : exporting;XML files +Oracle Open Office Chart : extended tips in Help +Oracle Open Office Chart : extension mode in text +Oracle Open Office Chart : extensions +Oracle Open Office Chart : extensions;Extension Manager +Oracle Open Office Chart : extensions;file formats +Oracle Open Office Chart : external keys (Base) +Oracle Open Office Chart : faster printing +Oracle Open Office Chart : faxes +Oracle Open Office Chart : faxes;configuring Oracle Open Office +Oracle Open Office Chart : faxes;fax programs/fax printers under UNIX +Oracle Open Office Chart : faxes;selecting a fax machine +Oracle Open Office Chart : faxes;sending +Oracle Open Office Chart : faxes;wizards +Oracle Open Office Chart : feedback +Oracle Open Office Chart : feedback;automatically +Oracle Open Office Chart : fields +Oracle Open Office Chart : fields;database tables +Oracle Open Office Chart : fields;displaying field codes (Writer) +Oracle Open Office Chart : fields;formatted fields +Oracle Open Office Chart : fields;updating automatically (Writer) +Oracle Open Office Chart : file associations for Microsoft Office +Oracle Open Office Chart : file filters +Oracle Open Office Chart : file filters;mobile devices +Oracle Open Office Chart : file filters;XML +Oracle Open Office Chart : file formats +Oracle Open Office Chart : file formats;changing Oracle Open Office defaults +Oracle Open Office Chart : file formats;OpenDocument/XML +Oracle Open Office Chart : file formats;saving always in other formats +Oracle Open Office Chart : file selection button +Oracle Open Office Chart : file sharing options for current document +Oracle Open Office Chart : files +Oracle Open Office Chart : files;filters and formats +Oracle Open Office Chart : files;importing +Oracle Open Office Chart : files;opening +Oracle Open Office Chart : files;properties +Oracle Open Office Chart : files;saving +Oracle Open Office Chart : files;saving automatically +Oracle Open Office Chart : files;saving in other formats +Oracle Open Office Chart : files;sending as e-mail +Oracle Open Office Chart : files;version numbers +Oracle Open Office Chart : files and folders in Oracle Open Office +Oracle Open Office Chart : files, see also documents +Oracle Open Office Chart : fill characters with tabulators +Oracle Open Office Chart : fill colors for areas +Oracle Open Office Chart : fill patterns for areas +Oracle Open Office Chart : filter conditions +Oracle Open Office Chart : filter conditions;connecting +Oracle Open Office Chart : filter conditions;in queries (Base) +Oracle Open Office Chart : filtering +Oracle Open Office Chart : filtering;data in databases +Oracle Open Office Chart : filtering;data in forms +Oracle Open Office Chart : filters +Oracle Open Office Chart : filters;comparison operators +Oracle Open Office Chart : filters;for import and export +Oracle Open Office Chart : filters;Navigator +Oracle Open Office Chart : filters;pictures +Oracle Open Office Chart : filters;XML filter settings +Oracle Open Office Chart : Find tab in Help +Oracle Open Office Chart : finding +Oracle Open Office Chart : finding;in all sheets +Oracle Open Office Chart : finding;records in form documents +Oracle Open Office Chart : finding;selections +Oracle Open Office Chart : finding;similarity search +Oracle Open Office Chart : fitting to pages +Oracle Open Office Chart : fitting to pages;print settings in Math +Oracle Open Office Chart : fitting to pages;print settings in presentations +Oracle Open Office Chart : fixed text +Oracle Open Office Chart : fixed text;form functions +Oracle Open Office Chart : fixing toolbars +Oracle Open Office Chart : flipping draw objects +Oracle Open Office Chart : floating frames in HTML documents +Oracle Open Office Chart : floating toolbars +Oracle Open Office Chart : focus of controls +Oracle Open Office Chart : folder creation +Oracle Open Office Chart : font lists +Oracle Open Office Chart : font name box +Oracle Open Office Chart : font sizes +Oracle Open Office Chart : font sizes;bullets +Oracle Open Office Chart : font sizes;relative changes +Oracle Open Office Chart : font sizes;scaling on screen +Oracle Open Office Chart : font sizes;text +Oracle Open Office Chart : fonts +Oracle Open Office Chart : fonts;changing in templates +Oracle Open Office Chart : fonts;color ignored +Oracle Open Office Chart : fonts;colors +Oracle Open Office Chart : fonts;default settings +Oracle Open Office Chart : fonts;effects +Oracle Open Office Chart : fonts;for HTML and Basic +Oracle Open Office Chart : fonts;formats +Oracle Open Office Chart : fonts;outlines +Oracle Open Office Chart : fonts;positions in text +Oracle Open Office Chart : fonts;shadows +Oracle Open Office Chart : fonts;specifying several +Oracle Open Office Chart : fonts;strikethrough +Oracle Open Office Chart : fonts;styles +Oracle Open Office Chart : fonts;text objects +Oracle Open Office Chart : Fontwork +Oracle Open Office Chart : footers +Oracle Open Office Chart : footers;backgrounds +Oracle Open Office Chart : form controls +Oracle Open Office Chart : form controls;assigning macros +Oracle Open Office Chart : form controls;protecting +Oracle Open Office Chart : form controls;toolbars +Oracle Open Office Chart : form fields +Oracle Open Office Chart : form filters +Oracle Open Office Chart : Form Navigator +Oracle Open Office Chart : format codes +Oracle Open Office Chart : format codes;numbers +Oracle Open Office Chart : format filling printing in Oracle Open Office Math +Oracle Open Office Chart : Format Paintbrush +Oracle Open Office Chart : formats +Oracle Open Office Chart : formats;Asian layout +Oracle Open Office Chart : formats;fonts +Oracle Open Office Chart : formats;maximizing page formats +Oracle Open Office Chart : formats;number and currency formats +Oracle Open Office Chart : formats;of currencies/date/time +Oracle Open Office Chart : formats;on opening and saving +Oracle Open Office Chart : formats;pasting in special formats +Oracle Open Office Chart : formats;positions +Oracle Open Office Chart : formats;tabulators +Oracle Open Office Chart : formatted fields +Oracle Open Office Chart : formatted fields;form functions +Oracle Open Office Chart : formatted fields;properties +Oracle Open Office Chart : formatting +Oracle Open Office Chart : formatting;Asian typography +Oracle Open Office Chart : formatting;axes in charts +Oracle Open Office Chart : formatting;chart areas +Oracle Open Office Chart : formatting;chart floors +Oracle Open Office Chart : formatting;chart legends +Oracle Open Office Chart : formatting;chart titles +Oracle Open Office Chart : formatting;chart walls +Oracle Open Office Chart : formatting;copying +Oracle Open Office Chart : formatting;definition +Oracle Open Office Chart : formatting;expanding (Calc) +Oracle Open Office Chart : formatting;font effects +Oracle Open Office Chart : formatting;hyperlinks +Oracle Open Office Chart : formatting;pages +Oracle Open Office Chart : formatting;printer metrics (Writer) +Oracle Open Office Chart : formatting;undoing +Oracle Open Office Chart : formatting;undoing when writing +Oracle Open Office Chart : forms +Oracle Open Office Chart : forms;browsing +Oracle Open Office Chart : forms;Combo Box/List Box Wizard +Oracle Open Office Chart : forms;creating +Oracle Open Office Chart : forms;data +Oracle Open Office Chart : forms;designing (Base) +Oracle Open Office Chart : forms;events +Oracle Open Office Chart : forms;filtering data +Oracle Open Office Chart : forms;finding records +Oracle Open Office Chart : forms;focus after opening +Oracle Open Office Chart : forms;general information (Base) +Oracle Open Office Chart : forms;grouping controls +Oracle Open Office Chart : forms;HTML filters +Oracle Open Office Chart : forms;Navigator +Oracle Open Office Chart : forms;opening in design mode +Oracle Open Office Chart : forms;properties +Oracle Open Office Chart : forms;sorting data +Oracle Open Office Chart : forms;subforms +Oracle Open Office Chart : forms;wizards +Oracle Open Office Chart : forms;XForms +Oracle Open Office Chart : formula texts +Oracle Open Office Chart : formula texts;printing in Oracle Open Office Math +Oracle Open Office Chart : formulas +Oracle Open Office Chart : formulas;new +Oracle Open Office Chart : formulas;starting formula editor +Oracle Open Office Chart : formulas in reports +Oracle Open Office Chart : formulas in reports;editing +Oracle Open Office Chart : forums and support +Oracle Open Office Chart : frames +Oracle Open Office Chart : frames;around paragraphs +Oracle Open Office Chart : frames;around tables +Oracle Open Office Chart : frames;AutoCorrect function +Oracle Open Office Chart : frames;backgrounds +Oracle Open Office Chart : frames;captions (Writer) +Oracle Open Office Chart : frames;printing in Oracle Open Office Math +Oracle Open Office Chart : frames;protecting +Oracle Open Office Chart : frames;selection frames +Oracle Open Office Chart : frames;text fitting to frames +Oracle Open Office Chart : freeform lines +Oracle Open Office Chart : freeform lines;draw functions +Oracle Open Office Chart : FTP +Oracle Open Office Chart : FTP;opening documents +Oracle Open Office Chart : FTP;saving documents +Oracle Open Office Chart : full joins (Base) +Oracle Open Office Chart : full screen view +Oracle Open Office Chart : full-text search in Help +Oracle Open Office Chart : functions in reports +Oracle Open Office Chart : functions in reports;editing +Oracle Open Office Chart : Gallery +Oracle Open Office Chart : Gallery;adding pictures +Oracle Open Office Chart : Gallery;dragging pictures to draw objects +Oracle Open Office Chart : Gallery;hiding/showing +Oracle Open Office Chart : Gallery;inserting pictures from +Oracle Open Office Chart : get method for form transmissions +Oracle Open Office Chart : getting support +Oracle Open Office Chart : GIF format +Oracle Open Office Chart : glossaries +Oracle Open Office Chart : glossaries;common terms +Oracle Open Office Chart : glossaries;Internet terms +Oracle Open Office Chart : gradients off for faster printing +Oracle Open Office Chart : graphic objects, see draw objects +Oracle Open Office Chart : graphical text art +Oracle Open Office Chart : graphics +Oracle Open Office Chart : graphics;cache +Oracle Open Office Chart : graphics;protecting +Oracle Open Office Chart : graphics, see also pictures +Oracle Open Office Chart : grayscale printing +Oracle Open Office Chart : grid controls +Oracle Open Office Chart : grid controls;form functions +Oracle Open Office Chart : grids +Oracle Open Office Chart : grids;defaults (Writer/Calc) +Oracle Open Office Chart : grids;display options (Impress/Draw) +Oracle Open Office Chart : grids;displaying lines (Calc) +Oracle Open Office Chart : grids;formatting axes +Oracle Open Office Chart : grids;inserting in charts +Oracle Open Office Chart : group box creation +Oracle Open Office Chart : groups +Oracle Open Office Chart : groups;entering/exiting/ungrouping +Oracle Open Office Chart : groups;naming +Oracle Open Office Chart : groups;of controls +Oracle Open Office Chart : guides +Oracle Open Office Chart : guides;display options (Impress/Draw) +Oracle Open Office Chart : guides;displaying when moving objects (Impress) +Oracle Open Office Chart : guides;showing (Calc) +Oracle Open Office Chart : guides;showing when moving frames (Writer) +Oracle Open Office Chart : gutter +Oracle Open Office Chart : handles +Oracle Open Office Chart : handles;displaying (Writer) +Oracle Open Office Chart : handles;scaling +Oracle Open Office Chart : handles;showing simple/large handles (Calc) +Oracle Open Office Chart : Hangul/Hanja +Oracle Open Office Chart : hatching +Oracle Open Office Chart : headers +Oracle Open Office Chart : headers;backgrounds +Oracle Open Office Chart : headings +Oracle Open Office Chart : headings;entering as text box +Oracle Open Office Chart : Hebrew +Oracle Open Office Chart : Hebrew;entering text +Oracle Open Office Chart : Hebrew;language settings +Oracle Open Office Chart : Help +Oracle Open Office Chart : Help;bookmarks +Oracle Open Office Chart : Help;extended tips on/off +Oracle Open Office Chart : Help;full-text search +Oracle Open Office Chart : Help;Help tips +Oracle Open Office Chart : Help;keywords +Oracle Open Office Chart : Help;navigation pane showing/hiding +Oracle Open Office Chart : Help;style sheets +Oracle Open Office Chart : Help;topics +Oracle Open Office Chart : Help Agent +Oracle Open Office Chart : Help Agent;help +Oracle Open Office Chart : Help Agent;options +Oracle Open Office Chart : Help tips +Oracle Open Office Chart : Help tips;hiding +Oracle Open Office Chart : hidden controls in Form Navigator +Oracle Open Office Chart : hidden fields display (Writer) +Oracle Open Office Chart : hidden pages +Oracle Open Office Chart : hidden pages;printing in presentations +Oracle Open Office Chart : hidden text +Oracle Open Office Chart : hidden text;showing (Writer) +Oracle Open Office Chart : hiding +Oracle Open Office Chart : hiding;changes +Oracle Open Office Chart : hiding;chart legends +Oracle Open Office Chart : hiding;docked windows +Oracle Open Office Chart : hiding;navigation pane in Help window +Oracle Open Office Chart : high contrast mode +Oracle Open Office Chart : highlighting changes +Oracle Open Office Chart : Hindi +Oracle Open Office Chart : Hindi;entering text +Oracle Open Office Chart : Hindi;language settings +Oracle Open Office Chart : horizontal scrollbars (Writer) +Oracle Open Office Chart : hotspots +Oracle Open Office Chart : hotspots;adding to images +Oracle Open Office Chart : hotspots;properties +Oracle Open Office Chart : HowTos for charts +Oracle Open Office Chart : HTML +Oracle Open Office Chart : HTML;compatibility settings +Oracle Open Office Chart : HTML;definition +Oracle Open Office Chart : HTML;export character set +Oracle Open Office Chart : HTML;fonts for source display +Oracle Open Office Chart : HTML;importing META tags +Oracle Open Office Chart : HTML;live presentations +Oracle Open Office Chart : HTML documents +Oracle Open Office Chart : HTML documents;auto reloading +Oracle Open Office Chart : HTML documents;importing/exporting +Oracle Open Office Chart : HTML documents;META tags in +Oracle Open Office Chart : HTML documents;new +Oracle Open Office Chart : HTML documents;source text +Oracle Open Office Chart : hyperlinks +Oracle Open Office Chart : hyperlinks;assigning macros +Oracle Open Office Chart : hyperlinks;character formats +Oracle Open Office Chart : hyperlinks;definition +Oracle Open Office Chart : hyperlinks;deleting +Oracle Open Office Chart : hyperlinks;editing +Oracle Open Office Chart : hyperlinks;inserting +Oracle Open Office Chart : hyperlinks;relative and absolute +Oracle Open Office Chart : hyperlinks;turning off automatic recognition +Oracle Open Office Chart : hyperlinks, see also links +Oracle Open Office Chart : hyphenation +Oracle Open Office Chart : hyphenation;activating for a language +Oracle Open Office Chart : hyphenation;minimal number of characters +Oracle Open Office Chart : hyphens +Oracle Open Office Chart : hyphens;displaying custom (Writer) +Oracle Open Office Chart : hyphens;inserting custom +Oracle Open Office Chart : icon bars, see toolbars +Oracle Open Office Chart : icon sizes +Oracle Open Office Chart : ignore list for spellcheck +Oracle Open Office Chart : ignored font colors +Oracle Open Office Chart : illumination +Oracle Open Office Chart : illumination;3D charts +Oracle Open Office Chart : illustrations, see pictures +Oracle Open Office Chart : image button creation +Oracle Open Office Chart : image control creation +Oracle Open Office Chart : ImageMap +Oracle Open Office Chart : ImageMap;definition +Oracle Open Office Chart : ImageMap;editor +Oracle Open Office Chart : ImageMap;hotspot properties +Oracle Open Office Chart : images +Oracle Open Office Chart : images;ImageMap +Oracle Open Office Chart : images;inserting and editing bitmaps +Oracle Open Office Chart : images, see also pictures +Oracle Open Office Chart : IME +Oracle Open Office Chart : IME;definition +Oracle Open Office Chart : IME;showing/hiding +Oracle Open Office Chart : import filters +Oracle Open Office Chart : import restrictions for Microsoft Office +Oracle Open Office Chart : importing +Oracle Open Office Chart : importing;bitmaps +Oracle Open Office Chart : importing;compatibility settings for text import +Oracle Open Office Chart : importing;databases +Oracle Open Office Chart : importing;documents in other formats +Oracle Open Office Chart : importing;from XML +Oracle Open Office Chart : importing;HTML and text documents +Oracle Open Office Chart : importing;HTML with META tags +Oracle Open Office Chart : importing;Microsoft Office documents with VBA code +Oracle Open Office Chart : importing;tables in text format +Oracle Open Office Chart : importing;templates +Oracle Open Office Chart : improvement program +Oracle Open Office Chart : improvement program - Improvement Program +Oracle Open Office Chart : inches +Oracle Open Office Chart : Index tab in Help +Oracle Open Office Chart : indexes +Oracle Open Office Chart : indexes;backgrounds +Oracle Open Office Chart : indexes;showing/hiding Help index tab +Oracle Open Office Chart : indicator lines in text +Oracle Open Office Chart : inner joins (Base) +Oracle Open Office Chart : input method window +Oracle Open Office Chart : insert mode for entering text +Oracle Open Office Chart : inserting +Oracle Open Office Chart : inserting;buttons in toolbars +Oracle Open Office Chart : inserting;cell ranges from spreadsheets +Oracle Open Office Chart : inserting;charts +Oracle Open Office Chart : inserting;clipboard options +Oracle Open Office Chart : inserting;comments +Oracle Open Office Chart : inserting;data from text documents +Oracle Open Office Chart : inserting;datasource records in spreadsheets +Oracle Open Office Chart : inserting;drawings +Oracle Open Office Chart : inserting;floating frames +Oracle Open Office Chart : inserting;Fontwork objects +Oracle Open Office Chart : inserting;form fields +Oracle Open Office Chart : inserting;hyperlinks +Oracle Open Office Chart : inserting;line breaks in cells +Oracle Open Office Chart : inserting;movies/sounds +Oracle Open Office Chart : inserting;new text tables defaults +Oracle Open Office Chart : inserting;objects from Gallery +Oracle Open Office Chart : inserting;OLE objects +Oracle Open Office Chart : inserting;paragraph borders +Oracle Open Office Chart : inserting;paragraph bullets +Oracle Open Office Chart : inserting;pictures in Gallery +Oracle Open Office Chart : inserting;plug-ins +Oracle Open Office Chart : inserting;push buttons +Oracle Open Office Chart : inserting;special characters +Oracle Open Office Chart : inserting;tab stops +Oracle Open Office Chart : inserting;textures on chart bars +Oracle Open Office Chart : installing +Oracle Open Office Chart : installing;ActiveX control +Oracle Open Office Chart : installing;mobile device filters +Oracle Open Office Chart : installing;UNO components +Oracle Open Office Chart : installing;XML filters +Oracle Open Office Chart : instructions +Oracle Open Office Chart : instructions;general +Oracle Open Office Chart : Internet +Oracle Open Office Chart : Internet;checking for updates +Oracle Open Office Chart : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Chart : Internet;presentations +Oracle Open Office Chart : Internet;starting searches +Oracle Open Office Chart : Internet glossary +Oracle Open Office Chart : invert filter +Oracle Open Office Chart : invisible areas +Oracle Open Office Chart : italic text +Oracle Open Office Chart : iterative references in spreadsheets +Oracle Open Office Chart : Java +Oracle Open Office Chart : Java;definition +Oracle Open Office Chart : Java;setting options +Oracle Open Office Chart : JDBC +Oracle Open Office Chart : JDBC;databases (Base) +Oracle Open Office Chart : JDBC;definition +Oracle Open Office Chart : joining +Oracle Open Office Chart : joining;paragraphs +Oracle Open Office Chart : joining;tables (Base) +Oracle Open Office Chart : joins in databases (Base) +Oracle Open Office Chart : justifying text +Oracle Open Office Chart : kerning +Oracle Open Office Chart : kerning;Asian texts +Oracle Open Office Chart : kerning;definition +Oracle Open Office Chart : kerning;in characters +Oracle Open Office Chart : key fields for relations (Base) +Oracle Open Office Chart : keyboard +Oracle Open Office Chart : keyboard;assigning/editing shortcut keys +Oracle Open Office Chart : keyboard;general commands +Oracle Open Office Chart : keyboard;removing numbering +Oracle Open Office Chart : keys +Oracle Open Office Chart : keys;adding push buttons +Oracle Open Office Chart : keys;primary keys (Base) +Oracle Open Office Chart : kiosk export +Oracle Open Office Chart : labels +Oracle Open Office Chart : labels;creating and synchronizing +Oracle Open Office Chart : labels;for charts +Oracle Open Office Chart : labels;for draw objects +Oracle Open Office Chart : labels;form functions +Oracle Open Office Chart : labels;from databases +Oracle Open Office Chart : labels, see also names/callouts +Oracle Open Office Chart : languages +Oracle Open Office Chart : languages;activating modules +Oracle Open Office Chart : languages;Asian support +Oracle Open Office Chart : languages;complex text layout +Oracle Open Office Chart : languages;locale settings +Oracle Open Office Chart : languages;selecting for text +Oracle Open Office Chart : languages;setting options +Oracle Open Office Chart : languages;spellcheck +Oracle Open Office Chart : languages;spellchecking and formatting +Oracle Open Office Chart : large handles (Writer) +Oracle Open Office Chart : large icons +Oracle Open Office Chart : layer arrangement +Oracle Open Office Chart : layout +Oracle Open Office Chart : layout;importing Word documents +Oracle Open Office Chart : layout;pages +Oracle Open Office Chart : LDAP server +Oracle Open Office Chart : LDAP server;address books (Base) +Oracle Open Office Chart : LDAP server;sign on options +Oracle Open Office Chart : leading between paragraphs +Oracle Open Office Chart : left alignment of paragraphs +Oracle Open Office Chart : left joins (Base) +Oracle Open Office Chart : legends +Oracle Open Office Chart : legends;charts +Oracle Open Office Chart : legends;draw objects +Oracle Open Office Chart : legends;rounding corners +Oracle Open Office Chart : Letter Wizard +Oracle Open Office Chart : levels +Oracle Open Office Chart : levels;depth stagger +Oracle Open Office Chart : levels;macro security +Oracle Open Office Chart : limits of tables (Writer) +Oracle Open Office Chart : line breaks +Oracle Open Office Chart : line breaks;in cells +Oracle Open Office Chart : line charts +Oracle Open Office Chart : line spacing +Oracle Open Office Chart : line spacing;context menu in paragraphs +Oracle Open Office Chart : line spacing;paragraph +Oracle Open Office Chart : line styles +Oracle Open Office Chart : line styles;applying +Oracle Open Office Chart : line styles;defining +Oracle Open Office Chart : lines +Oracle Open Office Chart : lines;defining ends +Oracle Open Office Chart : lines;draw functions +Oracle Open Office Chart : lines;drawing in text +Oracle Open Office Chart : lines;editing points +Oracle Open Office Chart : lines;removing automatic lines +Oracle Open Office Chart : lines of text +Oracle Open Office Chart : lines of text;alignment +Oracle Open Office Chart : links +Oracle Open Office Chart : links;between cells and controls +Oracle Open Office Chart : links;by drag and drop +Oracle Open Office Chart : links;character formats +Oracle Open Office Chart : links;definition +Oracle Open Office Chart : links;editing hyperlinks +Oracle Open Office Chart : links;inserting +Oracle Open Office Chart : links;modifying +Oracle Open Office Chart : links;opening files with +Oracle Open Office Chart : links;relational databases (Base) +Oracle Open Office Chart : links;turning off automatic recognition +Oracle Open Office Chart : links;updating options (Writer) +Oracle Open Office Chart : links;updating specific links +Oracle Open Office Chart : list box creation +Oracle Open Office Chart : lists +Oracle Open Office Chart : lists;data assigned to controls +Oracle Open Office Chart : lists;registered databases (Base) +Oracle Open Office Chart : lists;regular expressions +Oracle Open Office Chart : live presentations on the Internet +Oracle Open Office Chart : loading +Oracle Open Office Chart : loading;documents +Oracle Open Office Chart : loading;documents from other formats +Oracle Open Office Chart : loading;HTML documents, automatically +Oracle Open Office Chart : loading;Microsoft Office documents with VBA code +Oracle Open Office Chart : loading;reloading +Oracle Open Office Chart : loading;XML files +Oracle Open Office Chart : locale settings +Oracle Open Office Chart : logarithmic scaling along axes +Oracle Open Office Chart : lowercase letters +Oracle Open Office Chart : lowercase letters;font effects +Oracle Open Office Chart : Macro Wizard (Base) +Oracle Open Office Chart : macros +Oracle Open Office Chart : macros;assigning to events in forms +Oracle Open Office Chart : macros;attaching new (Base) +Oracle Open Office Chart : macros;in MS Office documents +Oracle Open Office Chart : macros;interrupting +Oracle Open Office Chart : macros;organizing +Oracle Open Office Chart : macros;recording +Oracle Open Office Chart : macros;security +Oracle Open Office Chart : macros;security levels +Oracle Open Office Chart : macros;security warning dialog +Oracle Open Office Chart : macros;selecting security warnings +Oracle Open Office Chart : magnifiers +Oracle Open Office Chart : margins +Oracle Open Office Chart : margins;pages +Oracle Open Office Chart : margins;setting with the mouse +Oracle Open Office Chart : margins;shadows +Oracle Open Office Chart : marking changes +Oracle Open Office Chart : marking, see selecting +Oracle Open Office Chart : Math formula editor +Oracle Open Office Chart : mean value lines in charts +Oracle Open Office Chart : measurement units +Oracle Open Office Chart : measurement units;changing on rulers +Oracle Open Office Chart : measurement units;converting +Oracle Open Office Chart : measurement units;selecting +Oracle Open Office Chart : Media Player window +Oracle Open Office Chart : menus +Oracle Open Office Chart : menus;activating context menus +Oracle Open Office Chart : menus;assigning macros +Oracle Open Office Chart : menus;customizing +Oracle Open Office Chart : merging +Oracle Open Office Chart : merging;documents +Oracle Open Office Chart : META tags +Oracle Open Office Chart : metrics +Oracle Open Office Chart : metrics;converting +Oracle Open Office Chart : metrics;document formatting (Writer) +Oracle Open Office Chart : metrics;in sheets +Oracle Open Office Chart : Microsoft Office +Oracle Open Office Chart : Microsoft Office;Access databases (base) +Oracle Open Office Chart : Microsoft Office;as default file format +Oracle Open Office Chart : Microsoft Office;document import restrictions +Oracle Open Office Chart : Microsoft Office;feature comparisons +Oracle Open Office Chart : Microsoft Office;importing password protected files +Oracle Open Office Chart : Microsoft Office;importing Word documents +Oracle Open Office Chart : Microsoft Office;importing/exporting VBA code +Oracle Open Office Chart : Microsoft Office;new users information +Oracle Open Office Chart : Microsoft Office;opening Microsoft documents +Oracle Open Office Chart : Microsoft Office;reassigning document types +Oracle Open Office Chart : migrating macros (Base) +Oracle Open Office Chart : mobile device filters +Oracle Open Office Chart : models in XForms +Oracle Open Office Chart : modifying, see changing +Oracle Open Office Chart : more controls +Oracle Open Office Chart : mosaic filter +Oracle Open Office Chart : mouse +Oracle Open Office Chart : mouse;pointers when using drag and drop +Oracle Open Office Chart : mouse;positioning +Oracle Open Office Chart : movies +Oracle Open Office Chart : moving +Oracle Open Office Chart : moving;tab stops on ruler +Oracle Open Office Chart : moving;toolbars +Oracle Open Office Chart : moving;using guide lines in presentations +Oracle Open Office Chart : MS ADO interface (Base) +Oracle Open Office Chart : multi-line titles in forms +Oracle Open Office Chart : multiple documents +Oracle Open Office Chart : multiple documents;opening +Oracle Open Office Chart : multiple selection +Oracle Open Office Chart : music +Oracle Open Office Chart : My Documents folder +Oracle Open Office Chart : My Documents folder;changing work directory +Oracle Open Office Chart : My Documents folder;opening +Oracle Open Office Chart : MySQL databases (Base) +Oracle Open Office Chart : names +Oracle Open Office Chart : names;multi-line titles +Oracle Open Office Chart : names;objects +Oracle Open Office Chart : names, see also labels/callouts +Oracle Open Office Chart : namespace organization in XForms +Oracle Open Office Chart : native SQL (Base) +Oracle Open Office Chart : navigating +Oracle Open Office Chart : navigating;in documents +Oracle Open Office Chart : Navigation bar +Oracle Open Office Chart : Navigation bar;controls +Oracle Open Office Chart : Navigation bar;forms +Oracle Open Office Chart : Navigator +Oracle Open Office Chart : Navigator;comments +Oracle Open Office Chart : Navigator;contents as lists +Oracle Open Office Chart : Navigator;docking +Oracle Open Office Chart : Navigator;working with +Oracle Open Office Chart : net charts +Oracle Open Office Chart : network identity options +Oracle Open Office Chart : new databases +Oracle Open Office Chart : new documents +Oracle Open Office Chart : new lines in cells +Oracle Open Office Chart : new windows +Oracle Open Office Chart : non-breaking dashes +Oracle Open Office Chart : non-breaking spaces (Writer) +Oracle Open Office Chart : non-printing characters (Writer) +Oracle Open Office Chart : number formats +Oracle Open Office Chart : number formats;codes +Oracle Open Office Chart : number formats;formats +Oracle Open Office Chart : number formats;recognition in text tables +Oracle Open Office Chart : number of pages +Oracle Open Office Chart : number of sheets +Oracle Open Office Chart : number of tables +Oracle Open Office Chart : numbering +Oracle Open Office Chart : numbering;options +Oracle Open Office Chart : numbering;turning off +Oracle Open Office Chart : numbering;using automatically +Oracle Open Office Chart : numbers +Oracle Open Office Chart : numbers;date, time and currency formats +Oracle Open Office Chart : numerical fields in forms +Oracle Open Office Chart : objects +Oracle Open Office Chart : objects;always moveable (Impress/Draw) +Oracle Open Office Chart : objects;arranging within stacks +Oracle Open Office Chart : objects;copying when moving in presentations +Oracle Open Office Chart : objects;definition +Oracle Open Office Chart : objects;displaying in spreadsheets +Oracle Open Office Chart : objects;displaying in text documents +Oracle Open Office Chart : objects;editing +Oracle Open Office Chart : objects;inserting from Gallery +Oracle Open Office Chart : objects;inserting OLE objects +Oracle Open Office Chart : objects;moving and resizing with mouse +Oracle Open Office Chart : objects;naming +Oracle Open Office Chart : objects;opening +Oracle Open Office Chart : objects;properties of charts +Oracle Open Office Chart : objects;quickly moving to +Oracle Open Office Chart : objects;titles and descriptions +Oracle Open Office Chart : ODBC +Oracle Open Office Chart : ODBC;database (Base) +Oracle Open Office Chart : ODBC;definition +Oracle Open Office Chart : ODF file formats +Oracle Open Office Chart : Office +Oracle Open Office Chart : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Chart : OLE +Oracle Open Office Chart : OLE;definition +Oracle Open Office Chart : OLE objects +Oracle Open Office Chart : OLE objects;arranging within stacks +Oracle Open Office Chart : OLE objects;captions (Writer) +Oracle Open Office Chart : OLE objects;inserting +Oracle Open Office Chart : OLE objects;number of +Oracle Open Office Chart : OLE objects;protecting +Oracle Open Office Chart : one and a half line spacing in text +Oracle Open Office Chart : online feedback options +Oracle Open Office Chart : online registration +Oracle Open Office Chart : online update options +Oracle Open Office Chart : online updates +Oracle Open Office Chart : online updates;checking automatically +Oracle Open Office Chart : online updates;checking manually +Oracle Open Office Chart : OpenDocument file formats +Oracle Open Office Chart : OpenGL +Oracle Open Office Chart : OpenGL;definition +Oracle Open Office Chart : opening +Oracle Open Office Chart : opening;context menus +Oracle Open Office Chart : opening;database files +Oracle Open Office Chart : opening;dialog settings +Oracle Open Office Chart : opening;documents +Oracle Open Office Chart : opening;documents from other formats +Oracle Open Office Chart : opening;documents on WebDAV server +Oracle Open Office Chart : opening;documents with links +Oracle Open Office Chart : opening;files, with placeholders +Oracle Open Office Chart : opening;forms +Oracle Open Office Chart : opening;Microsoft Office files +Oracle Open Office Chart : opening;mobile device documents +Oracle Open Office Chart : opening;objects +Oracle Open Office Chart : opening;reports +Oracle Open Office Chart : opening;several files +Oracle Open Office Chart : opening;XForms +Oracle Open Office Chart : operators +Oracle Open Office Chart : operators;standard filters +Oracle Open Office Chart : optional hyphens (Writer) +Oracle Open Office Chart : options +Oracle Open Office Chart : options;accessibility +Oracle Open Office Chart : options;appearance +Oracle Open Office Chart : options;compatibility (Writer) +Oracle Open Office Chart : options;improvement program +Oracle Open Office Chart : options;network identity +Oracle Open Office Chart : options;online update +Oracle Open Office Chart : options;tools +Oracle Open Office Chart : Oracle databases (base) +Oracle Open Office Chart : Oracle Open Office Base data sources +Oracle Open Office Chart : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Chart : Oracle Open Office documents +Oracle Open Office Chart : Oracle Open Office documents;mobile device filters +Oracle Open Office Chart : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Chart : Oracle Open Office Math start +Oracle Open Office Chart : order of chart data +Oracle Open Office Chart : ordering +Oracle Open Office Chart : ordering;objects +Oracle Open Office Chart : ordinal numbers +Oracle Open Office Chart : ordinal numbers;replacing +Oracle Open Office Chart : organizing +Oracle Open Office Chart : organizing;macros and scripts +Oracle Open Office Chart : organizing;namespaces in XForms +Oracle Open Office Chart : organizing;styles +Oracle Open Office Chart : organizing;templates +Oracle Open Office Chart : original size +Oracle Open Office Chart : original size;printing in Oracle Open Office Math +Oracle Open Office Chart : original size;restoring after cropping +Oracle Open Office Chart : outlines +Oracle Open Office Chart : outlines;font effects +Oracle Open Office Chart : outlines;outline symbols +Oracle Open Office Chart : outlines;sending to presentations +Oracle Open Office Chart : overwrite mode +Oracle Open Office Chart : packages, see extensions +Oracle Open Office Chart : page breaks +Oracle Open Office Chart : page breaks;displaying (Calc) +Oracle Open Office Chart : page formats +Oracle Open Office Chart : page formats;maximizing +Oracle Open Office Chart : page formats;restriction +Oracle Open Office Chart : page styles +Oracle Open Office Chart : page styles;editing/applying with statusbar +Oracle Open Office Chart : pages +Oracle Open Office Chart : pages;backgrounds in all applications +Oracle Open Office Chart : pages;formatting and numbering +Oracle Open Office Chart : pages;printing page names in presentations +Oracle Open Office Chart : pages;scaling +Oracle Open Office Chart : pages;selecting one to print +Oracle Open Office Chart : paint box +Oracle Open Office Chart : paint can symbol +Oracle Open Office Chart : Paintbrush +Oracle Open Office Chart : pair kerning +Oracle Open Office Chart : Palm file filters +Oracle Open Office Chart : paper formats +Oracle Open Office Chart : paper size warning +Oracle Open Office Chart : paper trays +Oracle Open Office Chart : paragraph marks +Oracle Open Office Chart : paragraph marks;displaying (Writer) +Oracle Open Office Chart : paragraph styles +Oracle Open Office Chart : paragraph styles;languages +Oracle Open Office Chart : paragraph styles;modifying basic fonts +Oracle Open Office Chart : paragraphs +Oracle Open Office Chart : paragraphs;alignment +Oracle Open Office Chart : paragraphs;Asian typography +Oracle Open Office Chart : paragraphs;defining borders +Oracle Open Office Chart : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Chart : paragraphs;increasing indents of +Oracle Open Office Chart : paragraphs;indents, margins and columns +Oracle Open Office Chart : paragraphs;inserting bullets +Oracle Open Office Chart : paragraphs;joining +Oracle Open Office Chart : paragraphs;numbering automatically +Oracle Open Office Chart : paragraphs;removing blank ones +Oracle Open Office Chart : paragraphs;spacing +Oracle Open Office Chart : paragraphs;tab stops +Oracle Open Office Chart : parameters +Oracle Open Office Chart : parameters;command line +Oracle Open Office Chart : parameters;queries (Base) +Oracle Open Office Chart : password as document property +Oracle Open Office Chart : passwords for protecting contents +Oracle Open Office Chart : pasting +Oracle Open Office Chart : pasting;cell ranges +Oracle Open Office Chart : pasting;cell ranges from spreadsheets +Oracle Open Office Chart : pasting;data from text documents +Oracle Open Office Chart : pasting;draw objects +Oracle Open Office Chart : pasting;draw objects from other documents +Oracle Open Office Chart : pasting;formatted/unformatted text +Oracle Open Office Chart : pasting;from data source view +Oracle Open Office Chart : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Chart : pasting;pictures from other documents +Oracle Open Office Chart : pasting;sheet areas in text documents +Oracle Open Office Chart : pasting;to Gallery +Oracle Open Office Chart : paths +Oracle Open Office Chart : paths;changing work directory +Oracle Open Office Chart : paths;defaults +Oracle Open Office Chart : pattern editor +Oracle Open Office Chart : pattern fields +Oracle Open Office Chart : pattern fields;form functions +Oracle Open Office Chart : patterns for objects +Oracle Open Office Chart : PDF +Oracle Open Office Chart : PDF;export +Oracle Open Office Chart : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Chart : personal data input +Oracle Open Office Chart : phonetic guide +Oracle Open Office Chart : picklist creation +Oracle Open Office Chart : pictures +Oracle Open Office Chart : pictures;adding to Gallery +Oracle Open Office Chart : pictures;arranging within stacks +Oracle Open Office Chart : pictures;assigning macros +Oracle Open Office Chart : pictures;backgrounds +Oracle Open Office Chart : pictures;captions (Writer) +Oracle Open Office Chart : pictures;changing paths +Oracle Open Office Chart : pictures;cropping and zooming +Oracle Open Office Chart : pictures;displaying in Calc +Oracle Open Office Chart : pictures;displaying in Writer (Writer) +Oracle Open Office Chart : pictures;drag and drop between documents +Oracle Open Office Chart : pictures;drawing +Oracle Open Office Chart : pictures;editing +Oracle Open Office Chart : pictures;filters +Oracle Open Office Chart : pictures;ImageMap +Oracle Open Office Chart : pictures;inserting automatically +Oracle Open Office Chart : pictures;inserting from Gallery +Oracle Open Office Chart : pictures;number of +Oracle Open Office Chart : pictures;printing +Oracle Open Office Chart : pictures;scaling/resizing +Oracle Open Office Chart : pie charts +Oracle Open Office Chart : pie charts;options +Oracle Open Office Chart : pie charts;types +Oracle Open Office Chart : pixel editor +Oracle Open Office Chart : pixel graphics +Oracle Open Office Chart : pixel graphics;inserting and editing +Oracle Open Office Chart : pixel patterns +Oracle Open Office Chart : placeholders +Oracle Open Office Chart : placeholders;in SQL queries +Oracle Open Office Chart : placeholders;on opening files +Oracle Open Office Chart : placing toolbars +Oracle Open Office Chart : playing movies and sound files +Oracle Open Office Chart : plotting data as charts +Oracle Open Office Chart : plug-ins +Oracle Open Office Chart : plug-ins;activating and deactivating +Oracle Open Office Chart : plug-ins;definition +Oracle Open Office Chart : plug-ins;inserting +Oracle Open Office Chart : pocket device appliances +Oracle Open Office Chart : Pocket PC file filters +Oracle Open Office Chart : points +Oracle Open Office Chart : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Chart : polygon drawing +Oracle Open Office Chart : pop-art filter +Oracle Open Office Chart : portable document format +Oracle Open Office Chart : positioning +Oracle Open Office Chart : positioning;axes +Oracle Open Office Chart : positioning;draw objects and controls +Oracle Open Office Chart : positioning;fonts +Oracle Open Office Chart : positioning;objects +Oracle Open Office Chart : positioning;toolbars +Oracle Open Office Chart : post method for form transmissions +Oracle Open Office Chart : posterizing filter +Oracle Open Office Chart : PostScript +Oracle Open Office Chart : PostScript;creating files +Oracle Open Office Chart : PostScript;PDF converter, UNIX +Oracle Open Office Chart : PowerPoint export +Oracle Open Office Chart : precision as shown (Calc) +Oracle Open Office Chart : predefining fonts +Oracle Open Office Chart : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Chart : presentations +Oracle Open Office Chart : presentations;creating/opening +Oracle Open Office Chart : presentations;inserting spreadsheet cells +Oracle Open Office Chart : presentations;live on the Internet +Oracle Open Office Chart : presentations;print menu +Oracle Open Office Chart : presentations;saving +Oracle Open Office Chart : presentations;saving automatically +Oracle Open Office Chart : presentations;saving in other formats +Oracle Open Office Chart : presentations;sending as e-mail +Oracle Open Office Chart : presentations;starting with wizard +Oracle Open Office Chart : presentations;wizards +Oracle Open Office Chart : press buttons, see push buttons +Oracle Open Office Chart : previews +Oracle Open Office Chart : previews;fonts lists +Oracle Open Office Chart : primary keys +Oracle Open Office Chart : primary keys;defining +Oracle Open Office Chart : primary keys;design view +Oracle Open Office Chart : primary keys;inserting (Base) +Oracle Open Office Chart : print area selection +Oracle Open Office Chart : printer metrics for document formatting (Writer) +Oracle Open Office Chart : printers +Oracle Open Office Chart : printers;adding, UNIX +Oracle Open Office Chart : printers;choosing +Oracle Open Office Chart : printers;default printer +Oracle Open Office Chart : printers;faxes under UNIX +Oracle Open Office Chart : printers;maximum page formats +Oracle Open Office Chart : printers;paper trays +Oracle Open Office Chart : printers;properties +Oracle Open Office Chart : printing +Oracle Open Office Chart : printing;black and white +Oracle Open Office Chart : printing;brochures +Oracle Open Office Chart : printing;colors in grayscale +Oracle Open Office Chart : printing;comments +Oracle Open Office Chart : printing;copies +Oracle Open Office Chart : printing;creating individual jobs +Oracle Open Office Chart : printing;dates in presentations +Oracle Open Office Chart : printing;directly +Oracle Open Office Chart : printing;documents +Oracle Open Office Chart : printing;drawings defaults +Oracle Open Office Chart : printing;elements in text documents +Oracle Open Office Chart : printing;faster +Oracle Open Office Chart : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Chart : printing;fitting to pages in presentations +Oracle Open Office Chart : printing;formulas in Oracle Open Office Math +Oracle Open Office Chart : printing;hidden pages of presentations +Oracle Open Office Chart : printing;in original size in Oracle Open Office Math +Oracle Open Office Chart : printing;left/right pages +Oracle Open Office Chart : printing;queries (Base) +Oracle Open Office Chart : printing;scaling in Oracle Open Office Math +Oracle Open Office Chart : printing;selections +Oracle Open Office Chart : printing;text always in black +Oracle Open Office Chart : printing;text in reverse order +Oracle Open Office Chart : printing;tiling pages in presentations +Oracle Open Office Chart : printing;transparencies +Oracle Open Office Chart : printing;warnings +Oracle Open Office Chart : printing;without scaling in presentations +Oracle Open Office Chart : printing speed +Oracle Open Office Chart : programming +Oracle Open Office Chart : programming;Oracle Open Office +Oracle Open Office Chart : programming;scripting +Oracle Open Office Chart : properties +Oracle Open Office Chart : properties;charts +Oracle Open Office Chart : properties;fields in databases +Oracle Open Office Chart : properties;files +Oracle Open Office Chart : properties;form controls +Oracle Open Office Chart : properties;forms +Oracle Open Office Chart : properties;hotspots +Oracle Open Office Chart : properties;printers +Oracle Open Office Chart : properties;smooth lines in line charts/XY charts +Oracle Open Office Chart : protected contents +Oracle Open Office Chart : protected dashes +Oracle Open Office Chart : protected database tables +Oracle Open Office Chart : protected documents +Oracle Open Office Chart : protected spaces +Oracle Open Office Chart : protected spaces;inserting +Oracle Open Office Chart : protected spaces;showing (Writer) +Oracle Open Office Chart : protecting +Oracle Open Office Chart : protecting;contents +Oracle Open Office Chart : protecting;recorded changes +Oracle Open Office Chart : proxy settings +Oracle Open Office Chart : push buttons +Oracle Open Office Chart : push buttons;adding to documents +Oracle Open Office Chart : push buttons;creating +Oracle Open Office Chart : queries +Oracle Open Office Chart : queries;copying (Base) +Oracle Open Office Chart : queries;creating in design view (Base) +Oracle Open Office Chart : queries;creating in SQL view +Oracle Open Office Chart : queries;defining (Base) +Oracle Open Office Chart : queries;deleting table links (Base) +Oracle Open Office Chart : queries;editing in data source view +Oracle Open Office Chart : queries;formulating filter conditions (Base) +Oracle Open Office Chart : queries;joining tables (Base) +Oracle Open Office Chart : queries;missing elements (Base) +Oracle Open Office Chart : queries;overview (Base) +Oracle Open Office Chart : queries;parameter queries (Base) +Oracle Open Office Chart : queries;printing (Base) +Oracle Open Office Chart : Query Wizard (Base) +Oracle Open Office Chart : Quickstarter +Oracle Open Office Chart : quotes +Oracle Open Office Chart : quotes;custom +Oracle Open Office Chart : radar charts, see net charts +Oracle Open Office Chart : radio button creation +Oracle Open Office Chart : read-only documents +Oracle Open Office Chart : read-only documents;cursor +Oracle Open Office Chart : read-only documents;database tables on/off +Oracle Open Office Chart : read-only documents;editing +Oracle Open Office Chart : read-only documents;opening documents as +Oracle Open Office Chart : read-only items in Data Navigator +Oracle Open Office Chart : recognizing URLs automatically +Oracle Open Office Chart : recording +Oracle Open Office Chart : recording;changes +Oracle Open Office Chart : recording;macros +Oracle Open Office Chart : records +Oracle Open Office Chart : records;inserting comments +Oracle Open Office Chart : records;protecting +Oracle Open Office Chart : records;saving +Oracle Open Office Chart : records;searching in databases +Oracle Open Office Chart : rectangle drawing +Oracle Open Office Chart : rectangles with round corners +Oracle Open Office Chart : recursions in spreadsheets +Oracle Open Office Chart : redo command +Oracle Open Office Chart : reduced printing +Oracle Open Office Chart : reference lines +Oracle Open Office Chart : references +Oracle Open Office Chart : references;displaying in color (Calc) +Oracle Open Office Chart : references;expanding (Calc) +Oracle Open Office Chart : references;iterative (Calc) +Oracle Open Office Chart : register-true +Oracle Open Office Chart : register-true;definition +Oracle Open Office Chart : registering +Oracle Open Office Chart : registering;address books +Oracle Open Office Chart : registering;databases (Base) +Oracle Open Office Chart : registering;Oracle Open Office +Oracle Open Office Chart : regression curves in charts +Oracle Open Office Chart : regular expressions +Oracle Open Office Chart : regular expressions;list of +Oracle Open Office Chart : relational databases (Base) +Oracle Open Office Chart : relations +Oracle Open Office Chart : relations;creating and deleting (Base) +Oracle Open Office Chart : relations;joining tables (Base) +Oracle Open Office Chart : relations;properties (Base) +Oracle Open Office Chart : relative hyperlinks +Oracle Open Office Chart : relative saving of URLs +Oracle Open Office Chart : reloading +Oracle Open Office Chart : reloading;documents +Oracle Open Office Chart : reloading;HTML documents, automatically +Oracle Open Office Chart : remarks, see also comments +Oracle Open Office Chart : remote configurations +Oracle Open Office Chart : remove noise filter +Oracle Open Office Chart : removing +Oracle Open Office Chart : removing;bullets and numbering +Oracle Open Office Chart : removing;form filters +Oracle Open Office Chart : removing, see also deleting +Oracle Open Office Chart : reorganizing charts +Oracle Open Office Chart : repeating +Oracle Open Office Chart : repeating;commands +Oracle Open Office Chart : replacement options +Oracle Open Office Chart : replacement table +Oracle Open Office Chart : replacing +Oracle Open Office Chart : replacing;AutoCorrect function +Oracle Open Office Chart : replacing;dashes +Oracle Open Office Chart : replacing;ordinal numbers +Oracle Open Office Chart : replacing;tab stops (regular expressions) +Oracle Open Office Chart : Report Builder +Oracle Open Office Chart : reports +Oracle Open Office Chart : reports;creating +Oracle Open Office Chart : reports;error reports +Oracle Open Office Chart : reports;opening and editing +Oracle Open Office Chart : reports;templates +Oracle Open Office Chart : resetting +Oracle Open Office Chart : resetting;templates +Oracle Open Office Chart : resizing +Oracle Open Office Chart : resizing;objects, by mouse +Oracle Open Office Chart : resizing, see also scaling/zooming +Oracle Open Office Chart : resolution when printing bitmaps +Oracle Open Office Chart : restoring +Oracle Open Office Chart : restoring;default formatting +Oracle Open Office Chart : restoring;editing +Oracle Open Office Chart : reversing printing order +Oracle Open Office Chart : review function +Oracle Open Office Chart : review function;accepting or rejecting changes +Oracle Open Office Chart : review function;comparing documents +Oracle Open Office Chart : review function;protecting records +Oracle Open Office Chart : review function;recording changes example +Oracle Open Office Chart : review function;tracking changes +Oracle Open Office Chart : rich text control +Oracle Open Office Chart : right alignment of paragraphs +Oracle Open Office Chart : right joins (Base) +Oracle Open Office Chart : right-to-left text +Oracle Open Office Chart : rotating +Oracle Open Office Chart : rotating;3D text +Oracle Open Office Chart : round corners +Oracle Open Office Chart : rounding precision (Calc) +Oracle Open Office Chart : row headers +Oracle Open Office Chart : row headers;displaying (Calc) +Oracle Open Office Chart : row headers;highlighting (Calc) +Oracle Open Office Chart : rulers +Oracle Open Office Chart : rulers;default settings +Oracle Open Office Chart : rulers;measurement units +Oracle Open Office Chart : rulers;visible in presentations +Oracle Open Office Chart : samples and templates +Oracle Open Office Chart : saving +Oracle Open Office Chart : saving;default file formats +Oracle Open Office Chart : saving;dialog settings +Oracle Open Office Chart : saving;documents +Oracle Open Office Chart : saving;documents for mobile devices +Oracle Open Office Chart : saving;documents in other formats +Oracle Open Office Chart : saving;documents, automatically +Oracle Open Office Chart : saving;in Microsoft Office file format +Oracle Open Office Chart : saving;options +Oracle Open Office Chart : saving;templates +Oracle Open Office Chart : saving;to XML +Oracle Open Office Chart : saving;VBA code in Microsoft Office documents +Oracle Open Office Chart : saving;with password by default +Oracle Open Office Chart : saving as command +Oracle Open Office Chart : saving as command;precautions +Oracle Open Office Chart : scaling +Oracle Open Office Chart : scaling;axes +Oracle Open Office Chart : scaling;font sizes in user interface +Oracle Open Office Chart : scaling;objects +Oracle Open Office Chart : scaling;pictures +Oracle Open Office Chart : scaling;printing in Oracle Open Office Math +Oracle Open Office Chart : scaling;text in charts +Oracle Open Office Chart : scaling;when printing presentations +Oracle Open Office Chart : scaling, see also zooming +Oracle Open Office Chart : scatter charts +Oracle Open Office Chart : screen +Oracle Open Office Chart : screen;full screen views +Oracle Open Office Chart : screen;scaling +Oracle Open Office Chart : screen magnifiers +Oracle Open Office Chart : screen readers +Oracle Open Office Chart : script organization +Oracle Open Office Chart : scrollbars +Oracle Open Office Chart : scrollbars;controls +Oracle Open Office Chart : scrollbars;displaying (Calc) +Oracle Open Office Chart : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Chart : search criteria for database functions in cells +Oracle Open Office Chart : search engines +Oracle Open Office Chart : search engines;definition +Oracle Open Office Chart : search engines;selecting +Oracle Open Office Chart : searching +Oracle Open Office Chart : searching;all sheets +Oracle Open Office Chart : searching;databases +Oracle Open Office Chart : searching;form filters +Oracle Open Office Chart : searching;Internet +Oracle Open Office Chart : searching;tables and forms +Oracle Open Office Chart : secondary axes in charts +Oracle Open Office Chart : sections +Oracle Open Office Chart : sections;backgrounds +Oracle Open Office Chart : security +Oracle Open Office Chart : security;digital signatures +Oracle Open Office Chart : security;options for documents with macros +Oracle Open Office Chart : security;protecting contents +Oracle Open Office Chart : security;security levels for macros +Oracle Open Office Chart : security;warning dialogs with macros +Oracle Open Office Chart : selecting +Oracle Open Office Chart : selecting;controls +Oracle Open Office Chart : selecting;measurement units +Oracle Open Office Chart : selecting;objects +Oracle Open Office Chart : selecting;print areas +Oracle Open Office Chart : selecting;several files +Oracle Open Office Chart : selection clipboard +Oracle Open Office Chart : selection frames +Oracle Open Office Chart : selection modes in text +Oracle Open Office Chart : sending +Oracle Open Office Chart : sending;AutoAbstract function in presentations +Oracle Open Office Chart : sending;documents as e-mail +Oracle Open Office Chart : sending;documents as faxes +Oracle Open Office Chart : separator lines +Oracle Open Office Chart : separator lines;defining +Oracle Open Office Chart : separators +Oracle Open Office Chart : separators;conditional +Oracle Open Office Chart : Server Side ImageMap +Oracle Open Office Chart : settings +Oracle Open Office Chart : settings;printers +Oracle Open Office Chart : settings;program configuration +Oracle Open Office Chart : settings;proxies +Oracle Open Office Chart : settings;views +Oracle Open Office Chart : SGML +Oracle Open Office Chart : SGML;definition +Oracle Open Office Chart : shadows +Oracle Open Office Chart : shadows;areas +Oracle Open Office Chart : shadows;borders +Oracle Open Office Chart : shadows;characters +Oracle Open Office Chart : shadows;characters, using context menu +Oracle Open Office Chart : shapes +Oracle Open Office Chart : sharing documents +Oracle Open Office Chart : sharpening filter +Oracle Open Office Chart : sheet tabs +Oracle Open Office Chart : sheet tabs;displaying +Oracle Open Office Chart : sheets +Oracle Open Office Chart : sheets;searching all +Oracle Open Office Chart : shortcut keys +Oracle Open Office Chart : shortcut keys;assigning macros +Oracle Open Office Chart : shortcut keys;charts +Oracle Open Office Chart : shortcut keys;general +Oracle Open Office Chart : shortcut keys;in databases +Oracle Open Office Chart : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Chart : showing +Oracle Open Office Chart : showing;changes +Oracle Open Office Chart : showing;docked windows +Oracle Open Office Chart : showing;drawings and controls (Writer) +Oracle Open Office Chart : showing;live presentations on the Internet +Oracle Open Office Chart : showing;toolbars +Oracle Open Office Chart : signing documents with digital signatures +Oracle Open Office Chart : similarity search +Oracle Open Office Chart : simple handles (Writer) +Oracle Open Office Chart : simplified Chinese +Oracle Open Office Chart : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Chart : single sign on options +Oracle Open Office Chart : single-line spacing in text +Oracle Open Office Chart : sizes +Oracle Open Office Chart : sizes;draw objects +Oracle Open Office Chart : sizes;pictures +Oracle Open Office Chart : slanting draw objects +Oracle Open Office Chart : small capitals +Oracle Open Office Chart : small icons +Oracle Open Office Chart : smart tag configuration +Oracle Open Office Chart : smooth scrolling (Writer) +Oracle Open Office Chart : smoothing filter +Oracle Open Office Chart : snap grid defaults (Writer/Calc) +Oracle Open Office Chart : snapping in presentations and drawings +Oracle Open Office Chart : solarization filter +Oracle Open Office Chart : sort lists +Oracle Open Office Chart : sort lists;copying to in Calc +Oracle Open Office Chart : sorting +Oracle Open Office Chart : sorting;data in forms +Oracle Open Office Chart : sorting;databases +Oracle Open Office Chart : sound files +Oracle Open Office Chart : spaces +Oracle Open Office Chart : spaces;displaying (Writer) +Oracle Open Office Chart : spaces;ignoring double +Oracle Open Office Chart : spaces;inserting protected spaces +Oracle Open Office Chart : spaces;showing protected spaces (Writer) +Oracle Open Office Chart : spacing +Oracle Open Office Chart : spacing;between paragraphs in footnotes +Oracle Open Office Chart : spacing;font effects +Oracle Open Office Chart : spacing;lines and paragraphs +Oracle Open Office Chart : spacing;tab stops in text documents +Oracle Open Office Chart : spacing;tabs in presentations +Oracle Open Office Chart : spadmin +Oracle Open Office Chart : special characters +Oracle Open Office Chart : speech bubbles +Oracle Open Office Chart : speed of printing +Oracle Open Office Chart : spellcheck +Oracle Open Office Chart : spellcheck;activating for a language +Oracle Open Office Chart : spellcheck;context menus +Oracle Open Office Chart : spellcheck;default languages +Oracle Open Office Chart : spellcheck;dialog +Oracle Open Office Chart : spellcheck;dictionary of exceptions +Oracle Open Office Chart : spellcheck;ignore list +Oracle Open Office Chart : spin button creation +Oracle Open Office Chart : spoolfiles with Xprinter +Oracle Open Office Chart : spreadsheets +Oracle Open Office Chart : spreadsheets;as databases (base) +Oracle Open Office Chart : spreadsheets;copying areas to text documents +Oracle Open Office Chart : spreadsheets;creating/opening +Oracle Open Office Chart : spreadsheets;inserting charts +Oracle Open Office Chart : spreadsheets;inserting database records +Oracle Open Office Chart : spreadsheets;printing +Oracle Open Office Chart : spreadsheets;saving +Oracle Open Office Chart : spreadsheets;saving automatically +Oracle Open Office Chart : spreadsheets;saving in other formats +Oracle Open Office Chart : spreadsheets;sending as e-mail +Oracle Open Office Chart : SQL +Oracle Open Office Chart : SQL;definition +Oracle Open Office Chart : SQL;DISTINCT parameter +Oracle Open Office Chart : SQL;executing SQL commands +Oracle Open Office Chart : SQL;executing SQL statements (Base) +Oracle Open Office Chart : SQL;queries (Base) +Oracle Open Office Chart : square drawings +Oracle Open Office Chart : standard bar on/off +Oracle Open Office Chart : standard deviation in charts +Oracle Open Office Chart : standard filters +Oracle Open Office Chart : standard filters;comparison operators +Oracle Open Office Chart : standard filters;databases +Oracle Open Office Chart : standard printer under UNIX +Oracle Open Office Chart : start center +Oracle Open Office Chart : start parameters +Oracle Open Office Chart : statistics in charts +Oracle Open Office Chart : status bar on/off +Oracle Open Office Chart : stickers +Oracle Open Office Chart : stock charts +Oracle Open Office Chart : strikethrough +Oracle Open Office Chart : strikethrough;characters +Oracle Open Office Chart : strikethrough;font effects +Oracle Open Office Chart : styles +Oracle Open Office Chart : styles;'changed' message +Oracle Open Office Chart : styles;copying between documents +Oracle Open Office Chart : styles;keyboard shortcuts +Oracle Open Office Chart : styles;organizing +Oracle Open Office Chart : styles;printing styles used in a document +Oracle Open Office Chart : styles;replacing automatically +Oracle Open Office Chart : Styles and Formatting window +Oracle Open Office Chart : Styles and Formatting window;docking +Oracle Open Office Chart : subforms +Oracle Open Office Chart : subforms;creating +Oracle Open Office Chart : subforms;description +Oracle Open Office Chart : submitting forms +Oracle Open Office Chart : suffixes in file formats +Oracle Open Office Chart : support on the Web +Oracle Open Office Chart : synchronizing +Oracle Open Office Chart : synchronizing;labels and business cards +Oracle Open Office Chart : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Chart : system address book registration +Oracle Open Office Chart : tab stops +Oracle Open Office Chart : tab stops;displaying (Writer) +Oracle Open Office Chart : tab stops;inserting and editing +Oracle Open Office Chart : tab stops;regular expressions +Oracle Open Office Chart : tab stops;setting in sheets +Oracle Open Office Chart : tab stops;settings +Oracle Open Office Chart : tab stops;spacing in presentations +Oracle Open Office Chart : tab stops;spacing in text documents +Oracle Open Office Chart : table controls +Oracle Open Office Chart : table controls;form functions +Oracle Open Office Chart : table controls;keyboard-only edit mode +Oracle Open Office Chart : table controls;properties +Oracle Open Office Chart : table views of databases +Oracle Open Office Chart : Table Wizard (Base) +Oracle Open Office Chart : tables +Oracle Open Office Chart : tables;inserting line breaks +Oracle Open Office Chart : tables in databases +Oracle Open Office Chart : tables in databases;access rights to (Base) +Oracle Open Office Chart : tables in databases;adding to queries +Oracle Open Office Chart : tables in databases;browsing and editing +Oracle Open Office Chart : tables in databases;copying database tables (Base) +Oracle Open Office Chart : tables in databases;creating +Oracle Open Office Chart : tables in databases;creating in design view (manually) +Oracle Open Office Chart : tables in databases;importing text formats (Base) +Oracle Open Office Chart : tables in databases;joining for queries (Base) +Oracle Open Office Chart : tables in databases;printing queries (Base) +Oracle Open Office Chart : tables in databases;relations (Base) +Oracle Open Office Chart : tables in databases;searching +Oracle Open Office Chart : tables in spreadsheets +Oracle Open Office Chart : tables in spreadsheets;copying data to other applications +Oracle Open Office Chart : tables in spreadsheets;defining borders +Oracle Open Office Chart : tables in spreadsheets;value highlighting +Oracle Open Office Chart : tables in text +Oracle Open Office Chart : tables in text;captions +Oracle Open Office Chart : tables in text;creating automatically +Oracle Open Office Chart : tables in text;default settings +Oracle Open Office Chart : tables in text;defining borders +Oracle Open Office Chart : tables in text;displaying +Oracle Open Office Chart : tables in text;printing +Oracle Open Office Chart : tabs +Oracle Open Office Chart : tabs;displaying sheet tabs +Oracle Open Office Chart : tags +Oracle Open Office Chart : tags;definition +Oracle Open Office Chart : tags;META tags +Oracle Open Office Chart : templates +Oracle Open Office Chart : templates;agendas +Oracle Open Office Chart : templates;changing basic fonts +Oracle Open Office Chart : templates;database reports +Oracle Open Office Chart : templates;deleting +Oracle Open Office Chart : templates;editing and saving +Oracle Open Office Chart : templates;faxes +Oracle Open Office Chart : templates;importing and exporting +Oracle Open Office Chart : templates;letters +Oracle Open Office Chart : templates;new documents from templates +Oracle Open Office Chart : templates;opening documents with +Oracle Open Office Chart : templates;organizing +Oracle Open Office Chart : terminology +Oracle Open Office Chart : terminology;general glossary +Oracle Open Office Chart : terminology;Internet glossary +Oracle Open Office Chart : testing XML filters +Oracle Open Office Chart : text +Oracle Open Office Chart : text;animating +Oracle Open Office Chart : text;Asian layout +Oracle Open Office Chart : text;bold +Oracle Open Office Chart : text;coloring +Oracle Open Office Chart : text;copying by drag and drop +Oracle Open Office Chart : text;CTL languages +Oracle Open Office Chart : text;drawing pictures +Oracle Open Office Chart : text;font effects +Oracle Open Office Chart : text;font sizes +Oracle Open Office Chart : text;font styles +Oracle Open Office Chart : text;fonts and formats +Oracle Open Office Chart : text;Fontwork icons +Oracle Open Office Chart : text;hyperlinks +Oracle Open Office Chart : text;inserting special characters +Oracle Open Office Chart : text;italics +Oracle Open Office Chart : text;kerning +Oracle Open Office Chart : text;language selection +Oracle Open Office Chart : text;line spacing +Oracle Open Office Chart : text;overwriting or inserting +Oracle Open Office Chart : text;printing in black +Oracle Open Office Chart : text;replacing with format +Oracle Open Office Chart : text;selection modes +Oracle Open Office Chart : text;shadowed +Oracle Open Office Chart : text;text/draw objects +Oracle Open Office Chart : text attributes +Oracle Open Office Chart : text attributes;hyperlinks +Oracle Open Office Chart : text attributes;undoing +Oracle Open Office Chart : text boxes +Oracle Open Office Chart : text boxes;form functions +Oracle Open Office Chart : text boxes;positioning +Oracle Open Office Chart : text breaks in cells +Oracle Open Office Chart : text colors for better accessibility +Oracle Open Office Chart : text databases (Base) +Oracle Open Office Chart : text documents +Oracle Open Office Chart : text documents;creating/opening +Oracle Open Office Chart : text documents;importing/exporting +Oracle Open Office Chart : text documents;inserting spreadsheet cells +Oracle Open Office Chart : text documents;print settings +Oracle Open Office Chart : text documents;printing +Oracle Open Office Chart : text documents;saving +Oracle Open Office Chart : text documents;saving automatically +Oracle Open Office Chart : text documents;saving in other formats +Oracle Open Office Chart : text documents;sending as e-mail +Oracle Open Office Chart : text effects +Oracle Open Office Chart : text flow +Oracle Open Office Chart : text flow;in cells +Oracle Open Office Chart : text formats +Oracle Open Office Chart : text formats;databases +Oracle Open Office Chart : text formats;pasting +Oracle Open Office Chart : text input fields +Oracle Open Office Chart : text layout for special languages +Oracle Open Office Chart : text objects +Oracle Open Office Chart : text objects;alignment +Oracle Open Office Chart : text objects;draw functions +Oracle Open Office Chart : text objects;fonts +Oracle Open Office Chart : text objects;in presentations and drawings +Oracle Open Office Chart : text overflow in spreadsheet cells +Oracle Open Office Chart : text scaling in charts +Oracle Open Office Chart : text, see also text documents, paragraphs and characters +Oracle Open Office Chart : TextArt, see Fontwork +Oracle Open Office Chart : textures +Oracle Open Office Chart : textures;inserting from Gallery +Oracle Open Office Chart : textures;on chart bars +Oracle Open Office Chart : Thai +Oracle Open Office Chart : Thai;entering text +Oracle Open Office Chart : Thai;language settings +Oracle Open Office Chart : thesaurus +Oracle Open Office Chart : thesaurus;activating for a language +Oracle Open Office Chart : ticker text +Oracle Open Office Chart : time fields +Oracle Open Office Chart : time fields;form functions +Oracle Open Office Chart : times +Oracle Open Office Chart : times;inserting when printing presentations +Oracle Open Office Chart : times, formats +Oracle Open Office Chart : tips +Oracle Open Office Chart : tips;extended tips in Help +Oracle Open Office Chart : title rows +Oracle Open Office Chart : title rows;printing in Oracle Open Office Math +Oracle Open Office Chart : titles +Oracle Open Office Chart : titles;alignment (charts) +Oracle Open Office Chart : titles;changing +Oracle Open Office Chart : titles;editing in charts +Oracle Open Office Chart : titles;font effects +Oracle Open Office Chart : titles;formatting automatically +Oracle Open Office Chart : titles;formatting charts +Oracle Open Office Chart : titles;objects +Oracle Open Office Chart : toolbars +Oracle Open Office Chart : toolbars;adding buttons +Oracle Open Office Chart : toolbars;docking/undocking +Oracle Open Office Chart : toolbars;Form Navigation bar +Oracle Open Office Chart : toolbars;viewing/closing +Oracle Open Office Chart : tools bar +Oracle Open Office Chart : tooltips +Oracle Open Office Chart : tooltips;extended tips +Oracle Open Office Chart : tooltips;help +Oracle Open Office Chart : Track Changes, see review function +Oracle Open Office Chart : traditional Chinese +Oracle Open Office Chart : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Chart : transparency +Oracle Open Office Chart : transparency;areas +Oracle Open Office Chart : transparency;off for faster printing +Oracle Open Office Chart : transparency;saving +Oracle Open Office Chart : tree view of Help +Oracle Open Office Chart : trend lines in charts +Oracle Open Office Chart : triangle drawing +Oracle Open Office Chart : typefaces +Oracle Open Office Chart : typefaces;formats +Oracle Open Office Chart : typography +Oracle Open Office Chart : typography;Asian +Oracle Open Office Chart : underlining +Oracle Open Office Chart : underlining;AutoFormat function +Oracle Open Office Chart : underlining;characters +Oracle Open Office Chart : underlining;text +Oracle Open Office Chart : undocking windows +Oracle Open Office Chart : undoing +Oracle Open Office Chart : undoing;direct formatting +Oracle Open Office Chart : undoing;editing +Oracle Open Office Chart : undoing;number of steps +Oracle Open Office Chart : ungrouping groups +Oracle Open Office Chart : units +Oracle Open Office Chart : units;converting +Oracle Open Office Chart : units;measurement units +Oracle Open Office Chart : UNO components +Oracle Open Office Chart : UNO components;Extension Manager +Oracle Open Office Chart : UNO components;integrating new +Oracle Open Office Chart : update options +Oracle Open Office Chart : updates +Oracle Open Office Chart : updates;checking automatically +Oracle Open Office Chart : updates;checking manually +Oracle Open Office Chart : updating +Oracle Open Office Chart : updating;fields and charts, automatically (Writer) +Oracle Open Office Chart : updating;links in text documents +Oracle Open Office Chart : updating;links, on opening +Oracle Open Office Chart : updating;templates +Oracle Open Office Chart : URL +Oracle Open Office Chart : URL;changing hyperlink URLs +Oracle Open Office Chart : URL;definition +Oracle Open Office Chart : URL;in pictures +Oracle Open Office Chart : URL;saving absolute/relative paths +Oracle Open Office Chart : URL;turning off URL recognition +Oracle Open Office Chart : user data +Oracle Open Office Chart : user data;input +Oracle Open Office Chart : user data;removing when saving +Oracle Open Office Chart : user feedback +Oracle Open Office Chart : user feedback;automatically +Oracle Open Office Chart : user-defined dictionaries +Oracle Open Office Chart : user-defined dictionaries;creating +Oracle Open Office Chart : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Chart : user-defined dictionaries;editing +Oracle Open Office Chart : user-defined styles +Oracle Open Office Chart : user-defined styles;automatically replacing +Oracle Open Office Chart : UTF-8/UCS2 support +Oracle Open Office Chart : values +Oracle Open Office Chart : values;rounded as shown (Calc) +Oracle Open Office Chart : variables +Oracle Open Office Chart : variables;for paths +Oracle Open Office Chart : variances in charts +Oracle Open Office Chart : VBA code +Oracle Open Office Chart : VBA code;loading/saving documents with VBA code +Oracle Open Office Chart : version management +Oracle Open Office Chart : version numbers of documents +Oracle Open Office Chart : versions +Oracle Open Office Chart : versions;comparing documents +Oracle Open Office Chart : versions;file saving as, restriction +Oracle Open Office Chart : versions;merging document versions +Oracle Open Office Chart : versions;of a document +Oracle Open Office Chart : versions;Oracle Open Office +Oracle Open Office Chart : vertical callouts +Oracle Open Office Chart : vertical scrollbars (Writer) +Oracle Open Office Chart : vertical text boxes +Oracle Open Office Chart : videos +Oracle Open Office Chart : viewing +Oracle Open Office Chart : viewing;databases +Oracle Open Office Chart : viewing;file properties +Oracle Open Office Chart : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Chart : viewing;toolbars +Oracle Open Office Chart : views +Oracle Open Office Chart : views;creating database views (Base) +Oracle Open Office Chart : views;defaults +Oracle Open Office Chart : views;full screen +Oracle Open Office Chart : views;icons +Oracle Open Office Chart : views;scaling +Oracle Open Office Chart : Visual Basic for Applications +Oracle Open Office Chart : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Chart : watermarks +Oracle Open Office Chart : web documents +Oracle Open Office Chart : web documents;XForms +Oracle Open Office Chart : Web support +Oracle Open Office Chart : WebCast export +Oracle Open Office Chart : WebDAV over HTTPS +Oracle Open Office Chart : windows +Oracle Open Office Chart : windows;docking +Oracle Open Office Chart : windows;docking definition +Oracle Open Office Chart : windows;hiding/showing/docking +Oracle Open Office Chart : windows;new +Oracle Open Office Chart : wizards +Oracle Open Office Chart : wizards;agendas +Oracle Open Office Chart : wizards;database queries +Oracle Open Office Chart : wizards;database tables (Base) +Oracle Open Office Chart : wizards;databases (Base) +Oracle Open Office Chart : wizards;document converter +Oracle Open Office Chart : wizards;Euro Converter +Oracle Open Office Chart : wizards;faxes +Oracle Open Office Chart : wizards;forms +Oracle Open Office Chart : wizards;letters +Oracle Open Office Chart : wizards;macros (Base) +Oracle Open Office Chart : wizards;overview +Oracle Open Office Chart : wizards;presentations +Oracle Open Office Chart : wizards;reports +Oracle Open Office Chart : Word documents +Oracle Open Office Chart : Word documents;compatibility +Oracle Open Office Chart : Word documents;saving as +Oracle Open Office Chart : WordArt, see Fontwork +Oracle Open Office Chart : words +Oracle Open Office Chart : words;automatically replacing +Oracle Open Office Chart : words;wrapping in cells +Oracle Open Office Chart : words;wrapping in CTL +Oracle Open Office Chart : working directory change +Oracle Open Office Chart : wrapping text +Oracle Open Office Chart : wrapping text;in cells +Oracle Open Office Chart : write protection on/off +Oracle Open Office Chart : writing aids options +Oracle Open Office Chart : WYSIWYG in fonts lists +Oracle Open Office Chart : X axes +Oracle Open Office Chart : X axes;grid formatting +Oracle Open Office Chart : X axes;positioning +Oracle Open Office Chart : X axes;scaling +Oracle Open Office Chart : X axes;showing +Oracle Open Office Chart : XForms +Oracle Open Office Chart : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Chart : XForms;conditions +Oracle Open Office Chart : XForms;opening/editing +Oracle Open Office Chart : XML converters +Oracle Open Office Chart : XML file formats +Oracle Open Office Chart : XML filters +Oracle Open Office Chart : XML filters;creating/testing +Oracle Open Office Chart : XML filters;saving as package/installing/deleting +Oracle Open Office Chart : XML filters;settings +Oracle Open Office Chart : XML Forms, see XForms +Oracle Open Office Chart : XSLT filters, see also XML filters +Oracle Open Office Chart : XY charts +Oracle Open Office Chart : Y axes +Oracle Open Office Chart : Y axes;formatting +Oracle Open Office Chart : Y axes;grid formatting +Oracle Open Office Chart : Y axes;positioning +Oracle Open Office Chart : Y axes;scaling +Oracle Open Office Chart : Y axes;showing +Oracle Open Office Chart : years +Oracle Open Office Chart : years;2-digit options +Oracle Open Office Chart : Z axes +Oracle Open Office Chart : Z axes;grid formatting +Oracle Open Office Chart : Z axes;showing +Oracle Open Office Chart : zero values +Oracle Open Office Chart : zero values;displaying (Calc) +Oracle Open Office Chart : zooming +Oracle Open Office Chart : zooming;page views +Oracle Open Office Chart : zooming;pictures +Oracle Open Office Chart : zooming;status bar Oracle Open Office Base : 3D text creation Oracle Open Office Base : abbreviation replacement Oracle Open Office Base : absolute hyperlinks @@ -14558,10 +8944,8 @@ Oracle Open Office Base : AutoCorrect function;options Oracle Open Office Base : AutoCorrect function;pictures and frames Oracle Open Office Base : AutoCorrect function;quotes Oracle Open Office Base : AutoCorrect function;replacement table -Oracle Open Office Base : AutoCorrect function;switching on and off in Calc +Oracle Open Office Base : AutoCorrect function;switching on and off Oracle Open Office Base : AutoCorrect function;URL recognition -Oracle Open Office Base : AutoFormat function -Oracle Open Office Base : AutoFormat function;switching on and off Oracle Open Office Base : automatic captions (Writer) Oracle Open Office Base : automatic control focus Oracle Open Office Base : automatic hyperlink formatting @@ -14718,6 +9102,7 @@ Oracle Open Office Base : clipboard;pasting Oracle Open Office Base : clipboard;pasting formatted/unformatted text Oracle Open Office Base : clipboard;selection clipboard Oracle Open Office Base : clipboard;Unix +Oracle Open Office Base : Clippy, see Help Agent Oracle Open Office Base : closing Oracle Open Office Base : closing;documents Oracle Open Office Base : closing;toolbars @@ -14728,9 +9113,9 @@ Oracle Open Office Base : colors;adding Oracle Open Office Base : colors;appearance Oracle Open Office Base : colors;backgrounds Oracle Open Office Base : colors;charts -Oracle Open Office Base : colors;fill format Oracle Open Office Base : colors;fonts Oracle Open Office Base : colors;grid lines and cells (Calc) +Oracle Open Office Base : colors;ignored text color Oracle Open Office Base : colors;models Oracle Open Office Base : colors;not printing Oracle Open Office Base : colors;printing in grayscale @@ -14749,7 +9134,6 @@ Oracle Open Office Base : commands Oracle Open Office Base : commands;repeating Oracle Open Office Base : commands;SQL Oracle Open Office Base : comments -Oracle Open Office Base : comments;displaying (Calc) Oracle Open Office Base : comments;inserting/editing/deleting/printing Oracle Open Office Base : comments;on changes Oracle Open Office Base : comments;printing in text @@ -14759,7 +9143,7 @@ Oracle Open Office Base : common terms;glossaries Oracle Open Office Base : common terms;Internet glossary Oracle Open Office Base : comparisons Oracle Open Office Base : comparisons;document versions -Oracle Open Office Base : comparisons;operators in default filter dialog +Oracle Open Office Base : comparisons;operators in standard filter dialog Oracle Open Office Base : compatibility settings for MS Word import Oracle Open Office Base : complete screen view Oracle Open Office Base : complex text layout @@ -14805,6 +9189,7 @@ Oracle Open Office Base : controls;rich text control Oracle Open Office Base : controls;select mode Oracle Open Office Base : controls;showing (Writer) Oracle Open Office Base : converters +Oracle Open Office Base : converters;document converter Oracle Open Office Base : converters;Euro converter Oracle Open Office Base : converters;PostScript, UNIX Oracle Open Office Base : converters;XML @@ -14839,6 +9224,7 @@ Oracle Open Office Base : CTL;(not) wrapping words Oracle Open Office Base : CTL;complex text layout languages Oracle Open Office Base : CTL;definition Oracle Open Office Base : CTL;options +Oracle Open Office Base : cube drawing Oracle Open Office Base : currencies Oracle Open Office Base : currencies;converters Oracle Open Office Base : currencies;format codes @@ -14942,9 +9328,7 @@ Oracle Open Office Base : decimal places displayed (Calc) Oracle Open Office Base : decimal separator key Oracle Open Office Base : decimal tab stops Oracle Open Office Base : default directories -Oracle Open Office Base : default filters -Oracle Open Office Base : default filters;comparison operators -Oracle Open Office Base : default filters;databases +Oracle Open Office Base : default filters, see standard filters Oracle Open Office Base : default printer Oracle Open Office Base : default printer;setting up Oracle Open Office Base : default printer;UNIX @@ -14952,8 +9336,8 @@ Oracle Open Office Base : default templates Oracle Open Office Base : default templates;changing Oracle Open Office Base : default templates;organizing Oracle Open Office Base : defaults +Oracle Open Office Base : defaults;document formats in file dialogs Oracle Open Office Base : defaults;documents -Oracle Open Office Base : defaults;file formats in file dialogs Oracle Open Office Base : defaults;file formats in Oracle Open Office Oracle Open Office Base : defaults;fonts Oracle Open Office Base : defaults;grids (Writer/Calc) @@ -15009,7 +9393,6 @@ Oracle Open Office Base : directories;creating new Oracle Open Office Base : directories;directory structure Oracle Open Office Base : disabled persons Oracle Open Office Base : displaying -Oracle Open Office Base : displaying;comments (Calc) Oracle Open Office Base : displaying;comments in text documents Oracle Open Office Base : displaying;non-printing characters (Writer) Oracle Open Office Base : displaying;pictures and objects (Writer) @@ -15126,6 +9509,7 @@ Oracle Open Office Base : effects Oracle Open Office Base : effects;font positions Oracle Open Office Base : effects;fonts Oracle Open Office Base : effects;Fontwork icons +Oracle Open Office Base : ellipse drawing Oracle Open Office Base : empty documents Oracle Open Office Base : empty paragraph removal Oracle Open Office Base : encryption of contents @@ -15211,6 +9595,7 @@ Oracle Open Office Base : files;saving in other formats Oracle Open Office Base : files;sending as e-mail Oracle Open Office Base : files;version numbers Oracle Open Office Base : files and folders in Oracle Open Office +Oracle Open Office Base : files, see also documents Oracle Open Office Base : fill characters with tabulators Oracle Open Office Base : fill colors for areas Oracle Open Office Base : fill patterns for areas @@ -15251,8 +9636,8 @@ Oracle Open Office Base : font sizes;relative changes Oracle Open Office Base : font sizes;scaling on screen Oracle Open Office Base : font sizes;text Oracle Open Office Base : fonts -Oracle Open Office Base : fonts;adding under UNIX Oracle Open Office Base : fonts;changing in templates +Oracle Open Office Base : fonts;color ignored Oracle Open Office Base : fonts;colors Oracle Open Office Base : fonts;default settings Oracle Open Office Base : fonts;effects @@ -15265,7 +9650,7 @@ Oracle Open Office Base : fonts;specifying several Oracle Open Office Base : fonts;strikethrough Oracle Open Office Base : fonts;styles Oracle Open Office Base : fonts;text objects -Oracle Open Office Base : Fontwork icons +Oracle Open Office Base : Fontwork Oracle Open Office Base : footers Oracle Open Office Base : footers;backgrounds Oracle Open Office Base : form controls @@ -15427,12 +9812,16 @@ Oracle Open Office Base : hiding;changes Oracle Open Office Base : hiding;docked windows Oracle Open Office Base : hiding;navigation pane in Help window Oracle Open Office Base : high contrast mode +Oracle Open Office Base : highlighting changes Oracle Open Office Base : Hindi Oracle Open Office Base : Hindi;entering text Oracle Open Office Base : Hindi;language settings Oracle Open Office Base : horizontal scrollbars (Writer) Oracle Open Office Base : hotspots +Oracle Open Office Base : hotspots;adding to images +Oracle Open Office Base : hotspots;properties Oracle Open Office Base : HTML +Oracle Open Office Base : HTML;compatibility settings Oracle Open Office Base : HTML;definition Oracle Open Office Base : HTML;export character set Oracle Open Office Base : HTML;fonts for source display @@ -15463,12 +9852,14 @@ Oracle Open Office Base : hyphens;inserting custom Oracle Open Office Base : icon bars, see toolbars Oracle Open Office Base : icon sizes Oracle Open Office Base : ignore list for spellcheck +Oracle Open Office Base : ignored font colors Oracle Open Office Base : illustrations, see pictures Oracle Open Office Base : image button creation Oracle Open Office Base : image control creation Oracle Open Office Base : ImageMap Oracle Open Office Base : ImageMap;definition Oracle Open Office Base : ImageMap;editor +Oracle Open Office Base : ImageMap;hotspot properties Oracle Open Office Base : images Oracle Open Office Base : images;ImageMap Oracle Open Office Base : images;inserting and editing bitmaps @@ -15490,6 +9881,7 @@ Oracle Open Office Base : importing;Microsoft Office documents with VBA code Oracle Open Office Base : importing;tables in text format Oracle Open Office Base : importing;templates Oracle Open Office Base : improvement program +Oracle Open Office Base : improvement program - Improvement Program Oracle Open Office Base : inches Oracle Open Office Base : Index tab in Help Oracle Open Office Base : indexes @@ -15802,7 +10194,7 @@ Oracle Open Office Base : opening;dialog settings Oracle Open Office Base : opening;documents Oracle Open Office Base : opening;documents from other formats Oracle Open Office Base : opening;documents on WebDAV server -Oracle Open Office Base : opening;files with links +Oracle Open Office Base : opening;documents with links Oracle Open Office Base : opening;files, with placeholders Oracle Open Office Base : opening;forms Oracle Open Office Base : opening;Microsoft Office files @@ -15812,7 +10204,7 @@ Oracle Open Office Base : opening;reports Oracle Open Office Base : opening;several files Oracle Open Office Base : opening;XForms Oracle Open Office Base : operators -Oracle Open Office Base : operators;default filters +Oracle Open Office Base : operators;standard filters Oracle Open Office Base : optional hyphens (Writer) Oracle Open Office Base : options Oracle Open Office Base : options;accessibility @@ -15862,6 +10254,7 @@ Oracle Open Office Base : pages;scaling Oracle Open Office Base : pages;selecting one to print Oracle Open Office Base : paint box Oracle Open Office Base : paint can symbol +Oracle Open Office Base : Paintbrush Oracle Open Office Base : pair kerning Oracle Open Office Base : Palm file filters Oracle Open Office Base : paper formats @@ -15888,6 +10281,7 @@ Oracle Open Office Base : paragraphs;tab stops Oracle Open Office Base : parameters Oracle Open Office Base : parameters;command line Oracle Open Office Base : parameters;queries (Base) +Oracle Open Office Base : password as document property Oracle Open Office Base : passwords for protecting contents Oracle Open Office Base : pasting Oracle Open Office Base : pasting;cell ranges @@ -15980,7 +10374,6 @@ Oracle Open Office Base : presentations;saving in other formats Oracle Open Office Base : presentations;sending as e-mail Oracle Open Office Base : presentations;starting with wizard Oracle Open Office Base : presentations;wizards -Oracle Open Office Base : Presenter Console shortcuts Oracle Open Office Base : press buttons, see push buttons Oracle Open Office Base : previews Oracle Open Office Base : previews;fonts lists @@ -16035,6 +10428,7 @@ Oracle Open Office Base : properties;fields in databases Oracle Open Office Base : properties;files Oracle Open Office Base : properties;form controls Oracle Open Office Base : properties;forms +Oracle Open Office Base : properties;hotspots Oracle Open Office Base : properties;printers Oracle Open Office Base : protected contents Oracle Open Office Base : protected dashes @@ -16083,6 +10477,7 @@ Oracle Open Office Base : records;inserting comments Oracle Open Office Base : records;protecting Oracle Open Office Base : records;saving Oracle Open Office Base : records;searching in databases +Oracle Open Office Base : rectangle drawing Oracle Open Office Base : rectangles with round corners Oracle Open Office Base : recursions in spreadsheets Oracle Open Office Base : redo command @@ -16147,6 +10542,7 @@ Oracle Open Office Base : review function;accepting or rejecting changes Oracle Open Office Base : review function;comparing documents Oracle Open Office Base : review function;protecting records Oracle Open Office Base : review function;recording changes example +Oracle Open Office Base : review function;tracking changes Oracle Open Office Base : rich text control Oracle Open Office Base : right alignment of paragraphs Oracle Open Office Base : right joins (Base) @@ -16235,7 +10631,6 @@ Oracle Open Office Base : settings Oracle Open Office Base : settings;printers Oracle Open Office Base : settings;program configuration Oracle Open Office Base : settings;proxies -Oracle Open Office Base : settings;tracking changes Oracle Open Office Base : settings;views Oracle Open Office Base : SGML Oracle Open Office Base : SGML;definition @@ -16244,6 +10639,7 @@ Oracle Open Office Base : shadows;areas Oracle Open Office Base : shadows;borders Oracle Open Office Base : shadows;characters Oracle Open Office Base : shadows;characters, using context menu +Oracle Open Office Base : shapes Oracle Open Office Base : sharing documents Oracle Open Office Base : sharpening filter Oracle Open Office Base : sheet tabs @@ -16265,7 +10661,7 @@ Oracle Open Office Base : signing documents with digital signatures Oracle Open Office Base : similarity search Oracle Open Office Base : simple handles (Writer) Oracle Open Office Base : simplified Chinese -Oracle Open Office Base : simplified Chinese;translating to traditional Chinese +Oracle Open Office Base : simplified Chinese;conversion to traditional Chinese Oracle Open Office Base : single sign on options Oracle Open Office Base : single-line spacing in text Oracle Open Office Base : sizes @@ -16329,7 +10725,9 @@ Oracle Open Office Base : SQL;executing SQL statements (Base) Oracle Open Office Base : SQL;queries (Base) Oracle Open Office Base : square drawings Oracle Open Office Base : standard bar on/off -Oracle Open Office Base : standard filters in databases +Oracle Open Office Base : standard filters +Oracle Open Office Base : standard filters;comparison operators +Oracle Open Office Base : standard filters;databases Oracle Open Office Base : standard printer under UNIX Oracle Open Office Base : start center Oracle Open Office Base : start parameters @@ -16510,15 +10908,16 @@ Oracle Open Office Base : tools bar Oracle Open Office Base : tooltips Oracle Open Office Base : tooltips;extended tips Oracle Open Office Base : tooltips;help +Oracle Open Office Base : Track Changes, see review function Oracle Open Office Base : traditional Chinese -Oracle Open Office Base : traditional Chinese;translating to simplified chinese +Oracle Open Office Base : traditional Chinese;conversion to simplified Chinese Oracle Open Office Base : transparency Oracle Open Office Base : transparency;areas Oracle Open Office Base : transparency;off for faster printing Oracle Open Office Base : transparency;saving Oracle Open Office Base : tree view of Help +Oracle Open Office Base : triangle drawing Oracle Open Office Base : typefaces -Oracle Open Office Base : typefaces;adding under UNIX Oracle Open Office Base : typefaces;formats Oracle Open Office Base : typography Oracle Open Office Base : typography;Asian @@ -16752,10 +11151,8 @@ Oracle Open Office Basic : AutoCorrect function;options Oracle Open Office Basic : AutoCorrect function;pictures and frames Oracle Open Office Basic : AutoCorrect function;quotes Oracle Open Office Basic : AutoCorrect function;replacement table -Oracle Open Office Basic : AutoCorrect function;switching on and off in Calc +Oracle Open Office Basic : AutoCorrect function;switching on and off Oracle Open Office Basic : AutoCorrect function;URL recognition -Oracle Open Office Basic : AutoFormat function -Oracle Open Office Basic : AutoFormat function;switching on and off Oracle Open Office Basic : automatic captions (Writer) Oracle Open Office Basic : automatic control focus Oracle Open Office Basic : automatic hyperlink formatting @@ -16939,6 +11336,7 @@ Oracle Open Office Basic : clipboard;pasting Oracle Open Office Basic : clipboard;pasting formatted/unformatted text Oracle Open Office Basic : clipboard;selection clipboard Oracle Open Office Basic : clipboard;Unix +Oracle Open Office Basic : Clippy, see Help Agent Oracle Open Office Basic : CLng function Oracle Open Office Basic : Close statement Oracle Open Office Basic : closing @@ -16951,9 +11349,9 @@ Oracle Open Office Basic : colors;adding Oracle Open Office Basic : colors;appearance Oracle Open Office Basic : colors;backgrounds Oracle Open Office Basic : colors;charts -Oracle Open Office Basic : colors;fill format Oracle Open Office Basic : colors;fonts Oracle Open Office Basic : colors;grid lines and cells (Calc) +Oracle Open Office Basic : colors;ignored text color Oracle Open Office Basic : colors;models Oracle Open Office Basic : colors;not printing Oracle Open Office Basic : colors;printing in grayscale @@ -16973,7 +11371,6 @@ Oracle Open Office Basic : commands Oracle Open Office Basic : commands;repeating Oracle Open Office Basic : commands;SQL Oracle Open Office Basic : comments -Oracle Open Office Basic : comments;displaying (Calc) Oracle Open Office Basic : comments;inserting/editing/deleting/printing Oracle Open Office Basic : comments;on changes Oracle Open Office Basic : comments;printing in text @@ -16986,7 +11383,7 @@ Oracle Open Office Basic : comparison operators Oracle Open Office Basic : comparison operators;Oracle Open Office Basic Oracle Open Office Basic : comparisons Oracle Open Office Basic : comparisons;document versions -Oracle Open Office Basic : comparisons;operators in default filter dialog +Oracle Open Office Basic : comparisons;operators in standard filter dialog Oracle Open Office Basic : compatibility settings for MS Word import Oracle Open Office Basic : complete screen view Oracle Open Office Basic : complex text layout @@ -17043,6 +11440,7 @@ Oracle Open Office Basic : controls;rich text control Oracle Open Office Basic : controls;select mode Oracle Open Office Basic : controls;showing (Writer) Oracle Open Office Basic : converters +Oracle Open Office Basic : converters;document converter Oracle Open Office Basic : converters;Euro converter Oracle Open Office Basic : converters;PostScript, UNIX Oracle Open Office Basic : converters;XML @@ -17089,6 +11487,7 @@ Oracle Open Office Basic : CTL;(not) wrapping words Oracle Open Office Basic : CTL;complex text layout languages Oracle Open Office Basic : CTL;definition Oracle Open Office Basic : CTL;options +Oracle Open Office Basic : cube drawing Oracle Open Office Basic : CurDir function Oracle Open Office Basic : currencies Oracle Open Office Basic : currencies;converters @@ -17207,9 +11606,7 @@ Oracle Open Office Basic : decimal tab stops Oracle Open Office Basic : Declare statement Oracle Open Office Basic : declaring variables Oracle Open Office Basic : default directories -Oracle Open Office Basic : default filters -Oracle Open Office Basic : default filters;comparison operators -Oracle Open Office Basic : default filters;databases +Oracle Open Office Basic : default filters, see standard filters Oracle Open Office Basic : default printer Oracle Open Office Basic : default printer;setting up Oracle Open Office Basic : default printer;UNIX @@ -17217,8 +11614,8 @@ Oracle Open Office Basic : default templates Oracle Open Office Basic : default templates;changing Oracle Open Office Basic : default templates;organizing Oracle Open Office Basic : defaults +Oracle Open Office Basic : defaults;document formats in file dialogs Oracle Open Office Basic : defaults;documents -Oracle Open Office Basic : defaults;file formats in file dialogs Oracle Open Office Basic : defaults;file formats in Oracle Open Office Oracle Open Office Basic : defaults;fonts Oracle Open Office Basic : defaults;grids (Writer/Calc) @@ -17305,7 +11702,6 @@ Oracle Open Office Basic : directories;creating new Oracle Open Office Basic : directories;directory structure Oracle Open Office Basic : disabled persons Oracle Open Office Basic : displaying -Oracle Open Office Basic : displaying;comments (Calc) Oracle Open Office Basic : displaying;comments in text documents Oracle Open Office Basic : displaying;non-printing characters (Writer) Oracle Open Office Basic : displaying;pictures and objects (Writer) @@ -17425,6 +11821,7 @@ Oracle Open Office Basic : effects Oracle Open Office Basic : effects;font positions Oracle Open Office Basic : effects;fonts Oracle Open Office Basic : effects;Fontwork icons +Oracle Open Office Basic : ellipse drawing Oracle Open Office Basic : empty documents Oracle Open Office Basic : empty paragraph removal Oracle Open Office Basic : encryption of contents @@ -17535,6 +11932,7 @@ Oracle Open Office Basic : files;saving in other formats Oracle Open Office Basic : files;sending as e-mail Oracle Open Office Basic : files;version numbers Oracle Open Office Basic : files and folders in Oracle Open Office +Oracle Open Office Basic : files, see also documents Oracle Open Office Basic : fill characters with tabulators Oracle Open Office Basic : fill colors for areas Oracle Open Office Basic : fill patterns for areas @@ -17580,8 +11978,8 @@ Oracle Open Office Basic : font sizes;relative changes Oracle Open Office Basic : font sizes;scaling on screen Oracle Open Office Basic : font sizes;text Oracle Open Office Basic : fonts -Oracle Open Office Basic : fonts;adding under UNIX Oracle Open Office Basic : fonts;changing in templates +Oracle Open Office Basic : fonts;color ignored Oracle Open Office Basic : fonts;colors Oracle Open Office Basic : fonts;default settings Oracle Open Office Basic : fonts;effects @@ -17594,7 +11992,7 @@ Oracle Open Office Basic : fonts;specifying several Oracle Open Office Basic : fonts;strikethrough Oracle Open Office Basic : fonts;styles Oracle Open Office Basic : fonts;text objects -Oracle Open Office Basic : Fontwork icons +Oracle Open Office Basic : Fontwork Oracle Open Office Basic : footers Oracle Open Office Basic : footers;backgrounds Oracle Open Office Basic : For statement @@ -17782,6 +12180,7 @@ Oracle Open Office Basic : hiding;changes Oracle Open Office Basic : hiding;docked windows Oracle Open Office Basic : hiding;navigation pane in Help window Oracle Open Office Basic : high contrast mode +Oracle Open Office Basic : highlighting changes Oracle Open Office Basic : Hindi Oracle Open Office Basic : Hindi;entering text Oracle Open Office Basic : Hindi;language settings @@ -17789,8 +12188,11 @@ Oracle Open Office Basic : horizontal line control Oracle Open Office Basic : horizontal scrollbar control Oracle Open Office Basic : horizontal scrollbars (Writer) Oracle Open Office Basic : hotspots +Oracle Open Office Basic : hotspots;adding to images +Oracle Open Office Basic : hotspots;properties Oracle Open Office Basic : Hour function Oracle Open Office Basic : HTML +Oracle Open Office Basic : HTML;compatibility settings Oracle Open Office Basic : HTML;definition Oracle Open Office Basic : HTML;export character set Oracle Open Office Basic : HTML;fonts for source display @@ -17826,6 +12228,7 @@ Oracle Open Office Basic : IDE;Integrated Development Environment Oracle Open Office Basic : IDE;keyboard shortcuts Oracle Open Office Basic : If statement Oracle Open Office Basic : ignore list for spellcheck +Oracle Open Office Basic : ignored font colors Oracle Open Office Basic : IIf statement Oracle Open Office Basic : illustrations, see pictures Oracle Open Office Basic : image button creation @@ -17834,6 +12237,7 @@ Oracle Open Office Basic : image control creation Oracle Open Office Basic : ImageMap Oracle Open Office Basic : ImageMap;definition Oracle Open Office Basic : ImageMap;editor +Oracle Open Office Basic : ImageMap;hotspot properties Oracle Open Office Basic : images Oracle Open Office Basic : images;ImageMap Oracle Open Office Basic : images;inserting and editing bitmaps @@ -17856,6 +12260,7 @@ Oracle Open Office Basic : importing;Microsoft Office documents with VBA code Oracle Open Office Basic : importing;tables in text format Oracle Open Office Basic : importing;templates Oracle Open Office Basic : improvement program +Oracle Open Office Basic : improvement program - Improvement Program Oracle Open Office Basic : inches Oracle Open Office Basic : Index tab in Help Oracle Open Office Basic : indexes @@ -18245,7 +12650,7 @@ Oracle Open Office Basic : opening;dialog settings Oracle Open Office Basic : opening;documents Oracle Open Office Basic : opening;documents from other formats Oracle Open Office Basic : opening;documents on WebDAV server -Oracle Open Office Basic : opening;files with links +Oracle Open Office Basic : opening;documents with links Oracle Open Office Basic : opening;files, with placeholders Oracle Open Office Basic : opening;forms Oracle Open Office Basic : opening;Microsoft Office files @@ -18256,7 +12661,7 @@ Oracle Open Office Basic : opening;several files Oracle Open Office Basic : opening;XForms Oracle Open Office Basic : operators Oracle Open Office Basic : operators;comparisons -Oracle Open Office Basic : operators;default filters +Oracle Open Office Basic : operators;standard filters Oracle Open Office Basic : Option Base statement Oracle Open Office Basic : option button control Oracle Open Office Basic : Option Explicit statement @@ -18312,6 +12717,7 @@ Oracle Open Office Basic : pages;scaling Oracle Open Office Basic : pages;selecting one to print Oracle Open Office Basic : paint box Oracle Open Office Basic : paint can symbol +Oracle Open Office Basic : Paintbrush Oracle Open Office Basic : pair kerning Oracle Open Office Basic : Palm file filters Oracle Open Office Basic : paper formats @@ -18340,6 +12746,7 @@ Oracle Open Office Basic : parameters;command line Oracle Open Office Basic : parameters;for procedures and functions Oracle Open Office Basic : parameters;passing by reference or value Oracle Open Office Basic : parameters;queries (Base) +Oracle Open Office Basic : password as document property Oracle Open Office Basic : passwords for protecting contents Oracle Open Office Basic : pasting Oracle Open Office Basic : pasting;cell ranges @@ -18433,7 +12840,6 @@ Oracle Open Office Basic : presentations;saving in other formats Oracle Open Office Basic : presentations;sending as e-mail Oracle Open Office Basic : presentations;starting with wizard Oracle Open Office Basic : presentations;wizards -Oracle Open Office Basic : Presenter Console shortcuts Oracle Open Office Basic : press buttons, see push buttons Oracle Open Office Basic : previews Oracle Open Office Basic : previews;fonts lists @@ -18497,6 +12903,7 @@ Oracle Open Office Basic : properties;fields in databases Oracle Open Office Basic : properties;files Oracle Open Office Basic : properties;form controls Oracle Open Office Basic : properties;forms +Oracle Open Office Basic : properties;hotspots Oracle Open Office Basic : properties;printers Oracle Open Office Basic : protected contents Oracle Open Office Basic : protected dashes @@ -18551,6 +12958,7 @@ Oracle Open Office Basic : records;inserting comments Oracle Open Office Basic : records;protecting Oracle Open Office Basic : records;saving Oracle Open Office Basic : records;searching in databases +Oracle Open Office Basic : rectangle drawing Oracle Open Office Basic : rectangles with round corners Oracle Open Office Basic : recursions in spreadsheets Oracle Open Office Basic : Red function @@ -18622,6 +13030,7 @@ Oracle Open Office Basic : review function;accepting or rejecting changes Oracle Open Office Basic : review function;comparing documents Oracle Open Office Basic : review function;protecting records Oracle Open Office Basic : review function;recording changes example +Oracle Open Office Basic : review function;tracking changes Oracle Open Office Basic : rich text control Oracle Open Office Basic : right alignment of paragraphs Oracle Open Office Basic : Right function @@ -18726,7 +13135,6 @@ Oracle Open Office Basic : settings Oracle Open Office Basic : settings;printers Oracle Open Office Basic : settings;program configuration Oracle Open Office Basic : settings;proxies -Oracle Open Office Basic : settings;tracking changes Oracle Open Office Basic : settings;views Oracle Open Office Basic : SGML Oracle Open Office Basic : SGML;definition @@ -18736,6 +13144,7 @@ Oracle Open Office Basic : shadows;areas Oracle Open Office Basic : shadows;borders Oracle Open Office Basic : shadows;characters Oracle Open Office Basic : shadows;characters, using context menu +Oracle Open Office Basic : shapes Oracle Open Office Basic : sharing documents Oracle Open Office Basic : sharpening filter Oracle Open Office Basic : sheet tabs @@ -18759,7 +13168,7 @@ Oracle Open Office Basic : signing documents with digital signatures Oracle Open Office Basic : similarity search Oracle Open Office Basic : simple handles (Writer) Oracle Open Office Basic : simplified Chinese -Oracle Open Office Basic : simplified Chinese;translating to traditional Chinese +Oracle Open Office Basic : simplified Chinese;conversion to traditional Chinese Oracle Open Office Basic : Sin function Oracle Open Office Basic : single sign on options Oracle Open Office Basic : single-line spacing in text @@ -18827,7 +13236,9 @@ Oracle Open Office Basic : SQL;queries (Base) Oracle Open Office Basic : Sqr function Oracle Open Office Basic : square drawings Oracle Open Office Basic : standard bar on/off -Oracle Open Office Basic : standard filters in databases +Oracle Open Office Basic : standard filters +Oracle Open Office Basic : standard filters;comparison operators +Oracle Open Office Basic : standard filters;databases Oracle Open Office Basic : standard printer under UNIX Oracle Open Office Basic : start center Oracle Open Office Basic : start parameters @@ -19029,21 +13440,22 @@ Oracle Open Office Basic : tools bar Oracle Open Office Basic : tooltips Oracle Open Office Basic : tooltips;extended tips Oracle Open Office Basic : tooltips;help +Oracle Open Office Basic : Track Changes, see review function Oracle Open Office Basic : traditional Chinese -Oracle Open Office Basic : traditional Chinese;translating to simplified chinese +Oracle Open Office Basic : traditional Chinese;conversion to simplified Chinese Oracle Open Office Basic : translating dialogs Oracle Open Office Basic : transparency Oracle Open Office Basic : transparency;areas Oracle Open Office Basic : transparency;off for faster printing Oracle Open Office Basic : transparency;saving Oracle Open Office Basic : tree view of Help +Oracle Open Office Basic : triangle drawing Oracle Open Office Basic : Trim function Oracle Open Office Basic : twips Oracle Open Office Basic : twips;definition Oracle Open Office Basic : TwipsPerPixelX function Oracle Open Office Basic : TwipsPerPixelY function Oracle Open Office Basic : typefaces -Oracle Open Office Basic : typefaces;adding under UNIX Oracle Open Office Basic : typefaces;formats Oracle Open Office Basic : TypeName function Oracle Open Office Basic : types of variables @@ -19205,6 +13617,5693 @@ Oracle Open Office Basic : zooming Oracle Open Office Basic : zooming;page views Oracle Open Office Basic : zooming;pictures Oracle Open Office Basic : zooming;status bar +Oracle Open Office Math : 3D text creation +Oracle Open Office Math : abbreviation replacement +Oracle Open Office Math : absolute hyperlinks +Oracle Open Office Math : absolute saving of URLs +Oracle Open Office Math : absolute values +Oracle Open Office Math : accents +Oracle Open Office Math : accents +Oracle Open Office Math : accents;in Oracle Open Office Math +Oracle Open Office Math : Access databases (base) +Oracle Open Office Math : access rights for database tables (Base) +Oracle Open Office Math : accessibility +Oracle Open Office Math : accessibility;general shortcuts +Oracle Open Office Math : accessibility;options +Oracle Open Office Math : accessibility;Oracle Open Office assistive technology +Oracle Open Office Math : accessibility;Oracle Open Office features +Oracle Open Office Math : accessibility;Oracle Open Office Math shortcuts +Oracle Open Office Math : activating +Oracle Open Office Math : activating;context menus +Oracle Open Office Math : activating;Error Report Tool +Oracle Open Office Math : activating;extended help tips +Oracle Open Office Math : activating;plug-ins +Oracle Open Office Math : ActiveX control +Oracle Open Office Math : Adabas D databases (base) +Oracle Open Office Math : add-ons, see UNO components +Oracle Open Office Math : addition signs +Oracle Open Office Math : additional selection mode +Oracle Open Office Math : address books +Oracle Open Office Math : address books;LDAP server (Base) +Oracle Open Office Math : address books;registering +Oracle Open Office Math : address labels from databases +Oracle Open Office Math : ADO databases (Base) +Oracle Open Office Math : Agenda Wizard +Oracle Open Office Math : aging filter +Oracle Open Office Math : aligning +Oracle Open Office Math : aligning;cells +Oracle Open Office Math : aligning;characters in Oracle Open Office Math +Oracle Open Office Math : aligning;multi-line formulas +Oracle Open Office Math : aligning;objects +Oracle Open Office Math : aligning;paragraphs +Oracle Open Office Math : aligning;tables in text +Oracle Open Office Math : aligning;text objects +Oracle Open Office Math : aligning formulas +Oracle Open Office Math : alignment +Oracle Open Office Math : alignment;horizontally centered (Math) +Oracle Open Office Math : alignment;left (Math) +Oracle Open Office Math : alignment;right (Math) +Oracle Open Office Math : alternative fonts +Oracle Open Office Math : ampersand symbol, see also operators +Oracle Open Office Math : anchors +Oracle Open Office Math : anchors;changing +Oracle Open Office Math : anchors;displaying (Calc) +Oracle Open Office Math : anchors;types/positions for draw objects +Oracle Open Office Math : AND operator +Oracle Open Office Math : animations +Oracle Open Office Math : animations;accessibility options +Oracle Open Office Math : appearance options +Oracle Open Office Math : approximately equal to relation +Oracle Open Office Math : Arabic +Oracle Open Office Math : Arabic;entering text +Oracle Open Office Math : Arabic;language settings +Oracle Open Office Math : arc cosine function +Oracle Open Office Math : arc cotangent function +Oracle Open Office Math : arc sine function +Oracle Open Office Math : area hyperbolic cosine function +Oracle Open Office Math : area hyperbolic cotangent function +Oracle Open Office Math : area hyperbolic tangent function +Oracle Open Office Math : areas +Oracle Open Office Math : areas;bitmap patterns +Oracle Open Office Math : areas;hatched/dotted +Oracle Open Office Math : areas;shadows +Oracle Open Office Math : areas;slanting +Oracle Open Office Math : areas;styles +Oracle Open Office Math : areas;transparency +Oracle Open Office Math : arguments in command line +Oracle Open Office Math : arranging +Oracle Open Office Math : arranging;matrices +Oracle Open Office Math : arranging;objects +Oracle Open Office Math : arrows +Oracle Open Office Math : arrows;defining arrow heads +Oracle Open Office Math : arrows;defining arrow lines +Oracle Open Office Math : arrows;drawing in text +Oracle Open Office Math : arrows;symbols in Oracle Open Office Math +Oracle Open Office Math : ASCII +Oracle Open Office Math : ASCII;definition +Oracle Open Office Math : Asian languages +Oracle Open Office Math : Asian languages;enabling +Oracle Open Office Math : Asian Phonetic Guide +Oracle Open Office Math : Asian typography +Oracle Open Office Math : assigning scripts +Oracle Open Office Math : assistive technology in Oracle Open Office +Oracle Open Office Math : attaching toolbars +Oracle Open Office Math : attachments in e-mails +Oracle Open Office Math : attributes +Oracle Open Office Math : attributes;accents +Oracle Open Office Math : attributes;additional information +Oracle Open Office Math : attributes;changing defaults +Oracle Open Office Math : attributes;changing fonts +Oracle Open Office Math : attributes;changing in Oracle Open Office Math +Oracle Open Office Math : attributes;colored characters +Oracle Open Office Math : attributes;in Oracle Open Office Math +Oracle Open Office Math : attributes;list of +Oracle Open Office Math : audio +Oracle Open Office Math : auto reloading HTML documents +Oracle Open Office Math : AutoAbstract function for sending text to presentations +Oracle Open Office Math : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Math : AutoComplete function in text and list boxes +Oracle Open Office Math : AutoCorrect function +Oracle Open Office Math : AutoCorrect function;context menu +Oracle Open Office Math : AutoCorrect function;options +Oracle Open Office Math : AutoCorrect function;pictures and frames +Oracle Open Office Math : AutoCorrect function;quotes +Oracle Open Office Math : AutoCorrect function;replacement table +Oracle Open Office Math : AutoCorrect function;switching on and off +Oracle Open Office Math : AutoCorrect function;URL recognition +Oracle Open Office Math : automatic captions (Writer) +Oracle Open Office Math : automatic control focus +Oracle Open Office Math : automatic hyperlink formatting +Oracle Open Office Math : automatic line breaks +Oracle Open Office Math : automatic lines/borders in text +Oracle Open Office Math : automatic saving +Oracle Open Office Math : AutoPilots, see wizards +Oracle Open Office Math : AutoValue (Base) +Oracle Open Office Math : axes in charts +Oracle Open Office Math : axis-ellipsis +Oracle Open Office Math : back epsilon symbol +Oracle Open Office Math : backgrounds +Oracle Open Office Math : backgrounds;defining colors/pictures +Oracle Open Office Math : backgrounds;frames/sections/indexes +Oracle Open Office Math : backgrounds;inserting from Gallery +Oracle Open Office Math : backgrounds;printing +Oracle Open Office Math : backing window +Oracle Open Office Math : backslash division sign +Oracle Open Office Math : backups +Oracle Open Office Math : backups;automatic +Oracle Open Office Math : backups;documents +Oracle Open Office Math : Basic +Oracle Open Office Math : Basic;fonts for source display +Oracle Open Office Math : Basic;programming +Oracle Open Office Math : Basic;recording macros +Oracle Open Office Math : basic fonts +Oracle Open Office Math : Bézier curves +Oracle Open Office Math : Bézier curves;control points in presentations +Oracle Open Office Math : bi-directional writing +Oracle Open Office Math : binary operators +Oracle Open Office Math : binary operators +Oracle Open Office Math : binary operators;list of +Oracle Open Office Math : binding space +Oracle Open Office Math : binomials +Oracle Open Office Math : bitmaps +Oracle Open Office Math : bitmaps;inserting and editing +Oracle Open Office Math : bitmaps;off for faster printing +Oracle Open Office Math : bitmaps;patterns +Oracle Open Office Math : black and white printing +Oracle Open Office Math : black printing in Calc +Oracle Open Office Math : block selection mode +Oracle Open Office Math : bold +Oracle Open Office Math : bold;AutoFormat function +Oracle Open Office Math : bold;text +Oracle Open Office Math : bold attribute +Oracle Open Office Math : bookmarks +Oracle Open Office Math : bookmarks;Help +Oracle Open Office Math : Boolean operators +Oracle Open Office Math : borders +Oracle Open Office Math : borders;arranging +Oracle Open Office Math : borders;cells on screen (Calc) +Oracle Open Office Math : borders;for paragraphs +Oracle Open Office Math : borders;for tables +Oracle Open Office Math : borders;shadows +Oracle Open Office Math : borders;table boundaries (Writer) +Oracle Open Office Math : borders, see also frames +Oracle Open Office Math : bound fields +Oracle Open Office Math : bound fields;controls +Oracle Open Office Math : boundaries of tables (Writer) +Oracle Open Office Math : braces in Oracle Open Office Math +Oracle Open Office Math : brackets +Oracle Open Office Math : brackets;angle (Math) +Oracle Open Office Math : brackets;angle with operator +Oracle Open Office Math : brackets;double square (Math) +Oracle Open Office Math : brackets;group +Oracle Open Office Math : brackets;in Oracle Open Office Math +Oracle Open Office Math : brackets;inserting in Oracle Open Office Math +Oracle Open Office Math : brackets;merging formula parts +Oracle Open Office Math : brackets;operator (Math) +Oracle Open Office Math : brackets;reference list +Oracle Open Office Math : brackets;round (Math) +Oracle Open Office Math : brackets;scalable +Oracle Open Office Math : brackets;single, without group function +Oracle Open Office Math : brackets;square (Math) +Oracle Open Office Math : brackets;widowed +Oracle Open Office Math : brackets and grouping in Oracle Open Office Math +Oracle Open Office Math : break display (Writer) +Oracle Open Office Math : brochures +Oracle Open Office Math : brochures;printing several +Oracle Open Office Math : build numbers of Oracle Open Office +Oracle Open Office Math : bullet lists +Oracle Open Office Math : bullet lists;formatting options +Oracle Open Office Math : bullets +Oracle Open Office Math : bullets;paragraphs +Oracle Open Office Math : bullets;replacing +Oracle Open Office Math : bullets;turning off +Oracle Open Office Math : business cards +Oracle Open Office Math : business cards;creating and synchronizing +Oracle Open Office Math : business cards;using templates +Oracle Open Office Math : button bars, see toolbars +Oracle Open Office Math : buttons +Oracle Open Office Math : buttons;adding push buttons +Oracle Open Office Math : buttons;big/small +Oracle Open Office Math : buttons;editing hyperlink buttons +Oracle Open Office Math : buttons;form functions +Oracle Open Office Math : buttons;toolbars +Oracle Open Office Math : cache for graphics +Oracle Open Office Math : calculating +Oracle Open Office Math : calculating;iterative references (Calc) +Oracle Open Office Math : callouts +Oracle Open Office Math : callouts;drawings +Oracle Open Office Math : capital letters +Oracle Open Office Math : capital letters;AutoCorrect function +Oracle Open Office Math : capital letters;font effects +Oracle Open Office Math : captions +Oracle Open Office Math : captions;automatic captions (Writer) +Oracle Open Office Math : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Math : captions, see also labels/callouts +Oracle Open Office Math : cardinal numbers +Oracle Open Office Math : cascading update (Base) +Oracle Open Office Math : case sensitivity +Oracle Open Office Math : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Math : case sensitivity;searching +Oracle Open Office Math : catalog for mathematical symbols +Oracle Open Office Math : ceiling brackets +Oracle Open Office Math : ceiling brackets;lines with +Oracle Open Office Math : ceiling brackets;scalable lines with +Oracle Open Office Math : cells +Oracle Open Office Math : cells;aligning +Oracle Open Office Math : cells;coloring (Calc) +Oracle Open Office Math : cells;cursor positions after input (Calc) +Oracle Open Office Math : cells;formatting without effect (Calc) +Oracle Open Office Math : cells;line breaks +Oracle Open Office Math : cells;linked to controls +Oracle Open Office Math : cells;number of +Oracle Open Office Math : cells;pasting +Oracle Open Office Math : cells;resetting formats +Oracle Open Office Math : cells;showing grid lines (Calc) +Oracle Open Office Math : center dots symbol +Oracle Open Office Math : centered horizontally +Oracle Open Office Math : centered horizontally;alignment (Math) +Oracle Open Office Math : centered text +Oracle Open Office Math : centimeters +Oracle Open Office Math : certificates +Oracle Open Office Math : changes +Oracle Open Office Math : changes;accepting automatically +Oracle Open Office Math : changes;accepting or rejecting +Oracle Open Office Math : changes;comparing to original +Oracle Open Office Math : changes;protecting +Oracle Open Office Math : changes;recording +Oracle Open Office Math : changes;review function +Oracle Open Office Math : changes;showing +Oracle Open Office Math : changing +Oracle Open Office Math : changing;default formatting +Oracle Open Office Math : changing;document titles +Oracle Open Office Math : changing;file associations in Setup program +Oracle Open Office Math : changing;fonts +Oracle Open Office Math : changing;icon sizes +Oracle Open Office Math : changing;links +Oracle Open Office Math : changing;work directory +Oracle Open Office Math : changing, see also editing and replacing +Oracle Open Office Math : character styles +Oracle Open Office Math : character styles;language selection +Oracle Open Office Math : characters +Oracle Open Office Math : characters;alternative fonts +Oracle Open Office Math : characters;Asian layout +Oracle Open Office Math : characters;bold +Oracle Open Office Math : characters;coloring +Oracle Open Office Math : characters;displaying only on screen (Writer) +Oracle Open Office Math : characters;enabling CTL and Asian characters +Oracle Open Office Math : characters;font effects +Oracle Open Office Math : characters;fonts and formats +Oracle Open Office Math : characters;hyperlinks +Oracle Open Office Math : characters;italics +Oracle Open Office Math : characters;language selection +Oracle Open Office Math : characters;shadowed +Oracle Open Office Math : characters;spacing +Oracle Open Office Math : characters;special +Oracle Open Office Math : characters;underlining +Oracle Open Office Math : charcoal sketches filter +Oracle Open Office Math : charts +Oracle Open Office Math : charts;arranging within stacks +Oracle Open Office Math : charts;bars with textures +Oracle Open Office Math : charts;colors +Oracle Open Office Math : charts;copying with link to source cell range +Oracle Open Office Math : charts;displaying (Calc) +Oracle Open Office Math : charts;editing axes +Oracle Open Office Math : charts;editing data +Oracle Open Office Math : charts;editing legends +Oracle Open Office Math : charts;editing titles +Oracle Open Office Math : charts;inserting +Oracle Open Office Math : charts;updating automatically (Writer) +Oracle Open Office Math : check box creation +Oracle Open Office Math : Chinese writing systems +Oracle Open Office Math : choosing printers +Oracle Open Office Math : circle attribute +Oracle Open Office Math : circle drawings +Oracle Open Office Math : circumflex attribute +Oracle Open Office Math : Client Side ImageMap +Oracle Open Office Math : clipboard +Oracle Open Office Math : clipboard;cutting +Oracle Open Office Math : clipboard;pasting +Oracle Open Office Math : clipboard;pasting formatted/unformatted text +Oracle Open Office Math : clipboard;selection clipboard +Oracle Open Office Math : clipboard;Unix +Oracle Open Office Math : Clippy, see Help Agent +Oracle Open Office Math : closing +Oracle Open Office Math : closing;documents +Oracle Open Office Math : closing;toolbars +Oracle Open Office Math : collaboration +Oracle Open Office Math : color bar +Oracle Open Office Math : colored characters +Oracle Open Office Math : colors +Oracle Open Office Math : colors;adding +Oracle Open Office Math : colors;appearance +Oracle Open Office Math : colors;backgrounds +Oracle Open Office Math : colors;charts +Oracle Open Office Math : colors;fonts +Oracle Open Office Math : colors;grid lines and cells (Calc) +Oracle Open Office Math : colors;ignored text color +Oracle Open Office Math : colors;in formulas +Oracle Open Office Math : colors;models +Oracle Open Office Math : colors;not printing +Oracle Open Office Math : colors;printing in grayscale +Oracle Open Office Math : colors;restriction (Calc) +Oracle Open Office Math : colors;selection +Oracle Open Office Math : column headers +Oracle Open Office Math : column headers;displaying (Calc) +Oracle Open Office Math : column headers;highlighting (Calc) +Oracle Open Office Math : columns +Oracle Open Office Math : columns;setting with the mouse +Oracle Open Office Math : combo box creation +Oracle Open Office Math : command button creation +Oracle Open Office Math : command buttons, see push buttons +Oracle Open Office Math : command line parameters +Oracle Open Office Math : commands +Oracle Open Office Math : commands;repeating +Oracle Open Office Math : commands;SQL +Oracle Open Office Math : comments +Oracle Open Office Math : comments;entering in Oracle Open Office Math +Oracle Open Office Math : comments;inserting/editing/deleting/printing +Oracle Open Office Math : comments;on changes +Oracle Open Office Math : comments;printing in text +Oracle Open Office Math : common terms +Oracle Open Office Math : common terms;Chinese dictionary +Oracle Open Office Math : common terms;glossaries +Oracle Open Office Math : common terms;Internet glossary +Oracle Open Office Math : comparisons +Oracle Open Office Math : comparisons;document versions +Oracle Open Office Math : comparisons;operators in standard filter dialog +Oracle Open Office Math : compatibility settings for MS Word import +Oracle Open Office Math : complete screen view +Oracle Open Office Math : complex numbers +Oracle Open Office Math : complex numbers;set +Oracle Open Office Math : complex numbers;symbols +Oracle Open Office Math : complex text layout +Oracle Open Office Math : complex text layout;definition +Oracle Open Office Math : complex text layout;enabling +Oracle Open Office Math : complex text layout, see CTL +Oracle Open Office Math : compose key to insert special characters +Oracle Open Office Math : concatenating math symbols +Oracle Open Office Math : concatenation, see ampersand symbol +Oracle Open Office Math : conditional separators +Oracle Open Office Math : conditions +Oracle Open Office Math : conditions;in number formats +Oracle Open Office Math : conditions;items in Data Navigator +Oracle Open Office Math : Configuration Manager +Oracle Open Office Math : configuring +Oracle Open Office Math : configuring;fax icon +Oracle Open Office Math : configuring;Oracle Open Office +Oracle Open Office Math : configuring;toolbars +Oracle Open Office Math : congruent relation +Oracle Open Office Math : connections to data sources (Base) +Oracle Open Office Math : considerably greater than relation +Oracle Open Office Math : considerably less than relation +Oracle Open Office Math : contents protection +Oracle Open Office Math : context menus +Oracle Open Office Math : control point display in presentations +Oracle Open Office Math : controls +Oracle Open Office Math : controls;activating in forms +Oracle Open Office Math : controls;adding to documents +Oracle Open Office Math : controls;arranging in forms +Oracle Open Office Math : controls;arranging within stacks +Oracle Open Office Math : controls;assigning data sources +Oracle Open Office Math : controls;assigning macros (Basic) +Oracle Open Office Math : controls;bound fields/list contents/linked cells +Oracle Open Office Math : controls;events +Oracle Open Office Math : controls;focus +Oracle Open Office Math : controls;formatted fields +Oracle Open Office Math : controls;grouping +Oracle Open Office Math : controls;hidden +Oracle Open Office Math : controls;inserting +Oracle Open Office Math : controls;multi-line titles +Oracle Open Office Math : controls;positions and sizes +Oracle Open Office Math : controls;printing +Oracle Open Office Math : controls;properties of form controls +Oracle Open Office Math : controls;properties of table controls +Oracle Open Office Math : controls;reference by SQL +Oracle Open Office Math : controls;rich text control +Oracle Open Office Math : controls;select mode +Oracle Open Office Math : controls;showing (Writer) +Oracle Open Office Math : converters +Oracle Open Office Math : converters;document converter +Oracle Open Office Math : converters;Euro converter +Oracle Open Office Math : converters;PostScript, UNIX +Oracle Open Office Math : converters;XML +Oracle Open Office Math : converting +Oracle Open Office Math : converting;Hangul/Hanja +Oracle Open Office Math : converting;metrics +Oracle Open Office Math : converting;Microsoft documents +Oracle Open Office Math : converting;Oracle Open Office documents +Oracle Open Office Math : converting;Pocket PC formats +Oracle Open Office Math : copies +Oracle Open Office Math : copies;printing +Oracle Open Office Math : coproduct +Oracle Open Office Math : copying +Oracle Open Office Math : copying;by drag and drop +Oracle Open Office Math : copying;data from text documents +Oracle Open Office Math : copying;datasource records in spreadsheets +Oracle Open Office Math : copying;draw objects +Oracle Open Office Math : copying;draw objects between documents +Oracle Open Office Math : copying;formatting +Oracle Open Office Math : copying;from data source view +Oracle Open Office Math : copying;from Gallery +Oracle Open Office Math : copying;in Unix +Oracle Open Office Math : copying;pictures, between documents +Oracle Open Office Math : copying;sheet areas, to text documents +Oracle Open Office Math : copying;to Gallery +Oracle Open Office Math : copyright for Oracle Open Office +Oracle Open Office Math : corner roundings +Oracle Open Office Math : correspondence +Oracle Open Office Math : correspondence;original by +Oracle Open Office Math : correspondence;picture by +Oracle Open Office Math : cosine function +Oracle Open Office Math : cotangent function +Oracle Open Office Math : crash reports +Oracle Open Office Math : criteria of query design (Base) +Oracle Open Office Math : cropping pictures +Oracle Open Office Math : CTL +Oracle Open Office Math : CTL;(not) wrapping words +Oracle Open Office Math : CTL;complex text layout languages +Oracle Open Office Math : CTL;definition +Oracle Open Office Math : CTL;options +Oracle Open Office Math : cube drawing +Oracle Open Office Math : currencies +Oracle Open Office Math : currencies;converters +Oracle Open Office Math : currencies;format codes +Oracle Open Office Math : currency field creation +Oracle Open Office Math : currency formats +Oracle Open Office Math : cursor +Oracle Open Office Math : cursor;allowing in protected areas (Writer) +Oracle Open Office Math : cursor;in Oracle Open Office Math +Oracle Open Office Math : cursor;in read-only text +Oracle Open Office Math : cursor;quickly moving to an object +Oracle Open Office Math : curve integrals +Oracle Open Office Math : curves +Oracle Open Office Math : curves;editing points +Oracle Open Office Math : custom dictionaries +Oracle Open Office Math : custom dictionaries;editing +Oracle Open Office Math : custom hyphens (Writer) +Oracle Open Office Math : custom quotes +Oracle Open Office Math : custom templates +Oracle Open Office Math : customizing +Oracle Open Office Math : customizing;events +Oracle Open Office Math : customizing;keyboard +Oracle Open Office Math : customizing;menus +Oracle Open Office Math : customizing;Oracle Open Office +Oracle Open Office Math : customizing;round corners +Oracle Open Office Math : customizing;toolbars +Oracle Open Office Math : cutting +Oracle Open Office Math : dashes +Oracle Open Office Math : data +Oracle Open Office Math : data;filtering in forms +Oracle Open Office Math : data;forms and subforms +Oracle Open Office Math : data;read-only +Oracle Open Office Math : data;sorting in forms +Oracle Open Office Math : data;user data +Oracle Open Office Math : data binding change in XForms +Oracle Open Office Math : Data Navigator +Oracle Open Office Math : Data Navigator;adding/editing items +Oracle Open Office Math : Data Navigator;display options +Oracle Open Office Math : data source browser +Oracle Open Office Math : data source explorer +Oracle Open Office Math : data source view +Oracle Open Office Math : data source view;drag and drop +Oracle Open Office Math : data source view;overview +Oracle Open Office Math : data source view;showing +Oracle Open Office Math : data sources +Oracle Open Office Math : data sources;as tables +Oracle Open Office Math : data sources;connection settings (Base) +Oracle Open Office Math : data sources;copying records to spreadsheets +Oracle Open Office Math : data sources;displaying current +Oracle Open Office Math : data sources;LDAP server (Base) +Oracle Open Office Math : data sources;Oracle Open Office Base +Oracle Open Office Math : data sources;registering address books +Oracle Open Office Math : data sources;reports +Oracle Open Office Math : data sources;viewing +Oracle Open Office Math : data structure of XForms +Oracle Open Office Math : data, see also values +Oracle Open Office Math : database contents +Oracle Open Office Math : database contents;inserting as tables +Oracle Open Office Math : database contents;inserting as text +Oracle Open Office Math : database reports +Oracle Open Office Math : Database Wizard (Base) +Oracle Open Office Math : databases +Oracle Open Office Math : databases;administration through SQL (Base) +Oracle Open Office Math : databases;ADO (Base) +Oracle Open Office Math : databases;connecting (Base) +Oracle Open Office Math : databases;creating +Oracle Open Office Math : databases;creating labels +Oracle Open Office Math : databases;creating queries +Oracle Open Office Math : databases;creating reports +Oracle Open Office Math : databases;creating tables +Oracle Open Office Math : databases;deleting (Base) +Oracle Open Office Math : databases;drag and drop (Base) +Oracle Open Office Math : databases;editing tables +Oracle Open Office Math : databases;form filters +Oracle Open Office Math : databases;formats (Base) +Oracle Open Office Math : databases;importing/exporting +Oracle Open Office Math : databases;JDBC (Base) +Oracle Open Office Math : databases;main page (Base) +Oracle Open Office Math : databases;ODBC (Base) +Oracle Open Office Math : databases;overview +Oracle Open Office Math : databases;registering (Base) +Oracle Open Office Math : databases;searching records +Oracle Open Office Math : databases;shortcut keys +Oracle Open Office Math : databases;sorting +Oracle Open Office Math : databases;standard filters +Oracle Open Office Math : databases;text formats +Oracle Open Office Math : databases;viewing +Oracle Open Office Math : date fields +Oracle Open Office Math : date fields;creating +Oracle Open Office Math : date fields;properties +Oracle Open Office Math : date formats +Oracle Open Office Math : dates +Oracle Open Office Math : dates;default (Calc) +Oracle Open Office Math : dates;printing in presentations +Oracle Open Office Math : dates;start 1900/01/01 (Calc) +Oracle Open Office Math : dates;start 1904/01/01 (Calc) +Oracle Open Office Math : dBASE +Oracle Open Office Math : dBASE;database settings (Base) +Oracle Open Office Math : DDE +Oracle Open Office Math : DDE;definition +Oracle Open Office Math : deactivating +Oracle Open Office Math : deactivating;plug-ins +Oracle Open Office Math : decimal places displayed (Calc) +Oracle Open Office Math : decimal separator key +Oracle Open Office Math : decimal tab stops +Oracle Open Office Math : default directories +Oracle Open Office Math : default filters, see standard filters +Oracle Open Office Math : default printer +Oracle Open Office Math : default printer;setting up +Oracle Open Office Math : default printer;UNIX +Oracle Open Office Math : default templates +Oracle Open Office Math : default templates;changing +Oracle Open Office Math : default templates;organizing +Oracle Open Office Math : defaults +Oracle Open Office Math : defaults;changing default formatting +Oracle Open Office Math : defaults;document formats in file dialogs +Oracle Open Office Math : defaults;documents +Oracle Open Office Math : defaults;file formats in Oracle Open Office +Oracle Open Office Math : defaults;fonts +Oracle Open Office Math : defaults;grids (Writer/Calc) +Oracle Open Office Math : defaults;languages +Oracle Open Office Math : defaults;number formats +Oracle Open Office Math : defaults;of saving +Oracle Open Office Math : defaults;program configuration +Oracle Open Office Math : defaults;tab stops in text +Oracle Open Office Math : defaults;views +Oracle Open Office Math : defined as relation +Oracle Open Office Math : defining +Oracle Open Office Math : defining;arrowheads and other line ends +Oracle Open Office Math : defining;colors +Oracle Open Office Math : defining;formula fonts +Oracle Open Office Math : defining;line styles +Oracle Open Office Math : defining;paragraph borders +Oracle Open Office Math : defining;queries (Base) +Oracle Open Office Math : defining;table borders +Oracle Open Office Math : deleting +Oracle Open Office Math : deleting;all direct formatting +Oracle Open Office Math : deleting;comments +Oracle Open Office Math : deleting;databases (Base) +Oracle Open Office Math : deleting;hyperlinks +Oracle Open Office Math : deleting;lines in text +Oracle Open Office Math : deleting;models/instances +Oracle Open Office Math : deleting;namespaces in XForms +Oracle Open Office Math : deleting;tab stops +Oracle Open Office Math : deleting;templates +Oracle Open Office Math : deleting;XML filters +Oracle Open Office Math : depth stagger +Oracle Open Office Math : descriptions for objects +Oracle Open Office Math : design mode after saving +Oracle Open Office Math : design view +Oracle Open Office Math : design view;creating forms +Oracle Open Office Math : design view;queries/views (Base) +Oracle Open Office Math : designing +Oracle Open Office Math : designing;database tables +Oracle Open Office Math : designing;fonts +Oracle Open Office Math : designing;queries (Base) +Oracle Open Office Math : detaching toolbars +Oracle Open Office Math : diagonal downward dots +Oracle Open Office Math : diagonal downward dots;symbol +Oracle Open Office Math : diagonal upward dots +Oracle Open Office Math : diagonal upward dots;symbol +Oracle Open Office Math : dictionaries +Oracle Open Office Math : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Math : dictionaries;creating +Oracle Open Office Math : dictionaries;editing user-defined +Oracle Open Office Math : dictionaries;spellcheck +Oracle Open Office Math : dictionaries, see also languages +Oracle Open Office Math : difference set operator +Oracle Open Office Math : digital signatures +Oracle Open Office Math : digital signatures;getting/managing/applying +Oracle Open Office Math : digital signatures;overview +Oracle Open Office Math : digital signatures;WebDAV over HTTPS +Oracle Open Office Math : direct formatting +Oracle Open Office Math : direct formatting;undoing all +Oracle Open Office Math : direct text +Oracle Open Office Math : direct text;entering in Oracle Open Office Math +Oracle Open Office Math : directories +Oracle Open Office Math : directories;creating new +Oracle Open Office Math : directories;directory structure +Oracle Open Office Math : disabled persons +Oracle Open Office Math : displaying +Oracle Open Office Math : displaying;comments in text documents +Oracle Open Office Math : displaying;non-printing characters (Writer) +Oracle Open Office Math : displaying;pictures and objects (Writer) +Oracle Open Office Math : displaying;tables (Writer) +Oracle Open Office Math : displaying;zero values (Calc) +Oracle Open Office Math : distances +Oracle Open Office Math : distances between brackets +Oracle Open Office Math : distinct values in SQL queries +Oracle Open Office Math : distorting in drawings +Oracle Open Office Math : distributing XML filters +Oracle Open Office Math : divides relation +Oracle Open Office Math : division signs +Oracle Open Office Math : docking +Oracle Open Office Math : docking;definition +Oracle Open Office Math : docking;toolbars +Oracle Open Office Math : docking;windows +Oracle Open Office Math : Document Converter Wizard +Oracle Open Office Math : Document Map, see Navigator +Oracle Open Office Math : document types in Oracle Open Office +Oracle Open Office Math : documents +Oracle Open Office Math : documents;changing titles +Oracle Open Office Math : documents;closing +Oracle Open Office Math : documents;comparing +Oracle Open Office Math : documents;contents as lists +Oracle Open Office Math : documents;editing time +Oracle Open Office Math : documents;exporting +Oracle Open Office Math : documents;importing +Oracle Open Office Math : documents;languages +Oracle Open Office Math : documents;measurement units in +Oracle Open Office Math : documents;merging +Oracle Open Office Math : documents;number of pages/tables/sheets +Oracle Open Office Math : documents;opening +Oracle Open Office Math : documents;opening in design mode +Oracle Open Office Math : documents;opening with templates +Oracle Open Office Math : documents;organizing +Oracle Open Office Math : documents;printing +Oracle Open Office Math : documents;read-only +Oracle Open Office Math : documents;reloading +Oracle Open Office Math : documents;saving +Oracle Open Office Math : documents;saving automatically +Oracle Open Office Math : documents;saving in other formats +Oracle Open Office Math : documents;sending as e-mail +Oracle Open Office Math : documents;styles changed +Oracle Open Office Math : documents;version management +Oracle Open Office Math : documents;version numbers +Oracle Open Office Math : does not divide relation +Oracle Open Office Math : dot attribute +Oracle Open Office Math : dotted areas +Oracle Open Office Math : double arrow symbols +Oracle Open Office Math : double dot attribute +Oracle Open Office Math : double square brackets +Oracle Open Office Math : double square brackets;scalable +Oracle Open Office Math : double-line spacing in paragraphs +Oracle Open Office Math : double-line writing in Asian layout +Oracle Open Office Math : down arrow symbol +Oracle Open Office Math : drag and drop +Oracle Open Office Math : drag and drop;copying and pasting text +Oracle Open Office Math : drag and drop;data source view +Oracle Open Office Math : drag and drop;from Gallery to draw objects +Oracle Open Office Math : drag and drop;overview +Oracle Open Office Math : drag and drop;pictures +Oracle Open Office Math : drag and drop;to Gallery +Oracle Open Office Math : draw objects +Oracle Open Office Math : draw objects;adding/editing/copying +Oracle Open Office Math : draw objects;anchoring +Oracle Open Office Math : draw objects;arranging within stacks +Oracle Open Office Math : draw objects;copying between documents +Oracle Open Office Math : draw objects;displaying (Calc) +Oracle Open Office Math : draw objects;dropping Gallery pictures +Oracle Open Office Math : draw objects;flipping +Oracle Open Office Math : draw objects;legends +Oracle Open Office Math : draw objects;positioning and resizing +Oracle Open Office Math : draw objects;protecting +Oracle Open Office Math : draw objects;slanting +Oracle Open Office Math : draw objects;text in +Oracle Open Office Math : Drawing bar +Oracle Open Office Math : drawing lines in text +Oracle Open Office Math : drawings +Oracle Open Office Math : drawings;creating/opening +Oracle Open Office Math : drawings;languages +Oracle Open Office Math : drawings;printing +Oracle Open Office Math : drawings;printing defaults +Oracle Open Office Math : drawings;printing in text documents +Oracle Open Office Math : drawings;saving +Oracle Open Office Math : drawings;saving automatically +Oracle Open Office Math : drawings;saving in other formats +Oracle Open Office Math : drawings;sending as e-mail +Oracle Open Office Math : drawings;showing (Writer) +Oracle Open Office Math : drawings, see also draw objects +Oracle Open Office Math : drop-down lists in form functions +Oracle Open Office Math : e-mail attachments +Oracle Open Office Math : Edit File icon +Oracle Open Office Math : edit mode +Oracle Open Office Math : edit mode;after opening +Oracle Open Office Math : edit mode;through Enter key (Calc) +Oracle Open Office Math : Edit Points bar +Oracle Open Office Math : editing +Oracle Open Office Math : editing;chart axes +Oracle Open Office Math : editing;chart data +Oracle Open Office Math : editing;chart legends +Oracle Open Office Math : editing;chart titles +Oracle Open Office Math : editing;comments +Oracle Open Office Math : editing;data binding of XForms +Oracle Open Office Math : editing;database tables and queries +Oracle Open Office Math : editing;draw objects +Oracle Open Office Math : editing;Fontwork objects +Oracle Open Office Math : editing;hyperlinks +Oracle Open Office Math : editing;menus +Oracle Open Office Math : editing;objects +Oracle Open Office Math : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Math : editing;pictures +Oracle Open Office Math : editing;reports +Oracle Open Office Math : editing;shortcut keys +Oracle Open Office Math : editing;tab stops +Oracle Open Office Math : editing;templates +Oracle Open Office Math : editing;toolbars +Oracle Open Office Math : editing;undoing +Oracle Open Office Math : editing;XForms +Oracle Open Office Math : editing time of documents +Oracle Open Office Math : editors +Oracle Open Office Math : editors;formula editor +Oracle Open Office Math : editors;ImageMap editor +Oracle Open Office Math : effects +Oracle Open Office Math : effects;font positions +Oracle Open Office Math : effects;fonts +Oracle Open Office Math : effects;Fontwork icons +Oracle Open Office Math : ellipse drawing +Oracle Open Office Math : ellipsis symbols +Oracle Open Office Math : empty documents +Oracle Open Office Math : empty paragraph removal +Oracle Open Office Math : empty set +Oracle Open Office Math : encryption of contents +Oracle Open Office Math : entering groups +Oracle Open Office Math : entering text from right to left +Oracle Open Office Math : epsilon +Oracle Open Office Math : epsilon;back +Oracle Open Office Math : equal sign +Oracle Open Office Math : equal sign, see also operators +Oracle Open Office Math : Equation Editor, see Oracle Open Office Math +Oracle Open Office Math : equations in formula editor +Oracle Open Office Math : Error Report Tool +Oracle Open Office Math : error search +Oracle Open Office Math : error search;next error +Oracle Open Office Math : error search;previous error +Oracle Open Office Math : Euro +Oracle Open Office Math : Euro;currency formats +Oracle Open Office Math : Euro;Euro Converter Wizard +Oracle Open Office Math : even/odd pages +Oracle Open Office Math : even/odd pages;printing +Oracle Open Office Math : events +Oracle Open Office Math : events;assigning scripts +Oracle Open Office Math : events;controls +Oracle Open Office Math : events;customizing +Oracle Open Office Math : events;in forms +Oracle Open Office Math : examples +Oracle Open Office Math : examples;integral +Oracle Open Office Math : examples;Oracle Open Office Math formulas +Oracle Open Office Math : Excel +Oracle Open Office Math : Excel;saving as +Oracle Open Office Math : Excel;search criteria +Oracle Open Office Math : exceptions +Oracle Open Office Math : exceptions;user-defined dictionaries +Oracle Open Office Math : exchanging, see also replacing +Oracle Open Office Math : executing SQL commands +Oracle Open Office Math : existence quantor symbol +Oracle Open Office Math : exiting +Oracle Open Office Math : exiting;groups +Oracle Open Office Math : exiting;Oracle Open Office +Oracle Open Office Math : expanding formatting (Calc) +Oracle Open Office Math : explorer of data sources +Oracle Open Office Math : exponential functions +Oracle Open Office Math : exponents +Oracle Open Office Math : exponents;variables with right +Oracle Open Office Math : exponents and indexes in Oracle Open Office Math +Oracle Open Office Math : export filters +Oracle Open Office Math : exporting +Oracle Open Office Math : exporting;bitmaps +Oracle Open Office Math : exporting;HTML and text documents +Oracle Open Office Math : exporting;Microsoft Office documents with VBA code +Oracle Open Office Math : exporting;spreadsheets to text format +Oracle Open Office Math : exporting;templates +Oracle Open Office Math : exporting;to foreign formats +Oracle Open Office Math : exporting;to HTML +Oracle Open Office Math : exporting;to Microsoft Office formats +Oracle Open Office Math : exporting;to PDF +Oracle Open Office Math : exporting;to PostScript format +Oracle Open Office Math : exporting;to XML +Oracle Open Office Math : exporting;XML files +Oracle Open Office Math : extended tips in Help +Oracle Open Office Math : extension mode in text +Oracle Open Office Math : extensions +Oracle Open Office Math : extensions;Extension Manager +Oracle Open Office Math : extensions;file formats +Oracle Open Office Math : external keys (Base) +Oracle Open Office Math : factorial +Oracle Open Office Math : faster printing +Oracle Open Office Math : faxes +Oracle Open Office Math : faxes;configuring Oracle Open Office +Oracle Open Office Math : faxes;fax programs/fax printers under UNIX +Oracle Open Office Math : faxes;selecting a fax machine +Oracle Open Office Math : faxes;sending +Oracle Open Office Math : faxes;wizards +Oracle Open Office Math : feedback +Oracle Open Office Math : feedback;automatically +Oracle Open Office Math : fields +Oracle Open Office Math : fields;database tables +Oracle Open Office Math : fields;displaying field codes (Writer) +Oracle Open Office Math : fields;formatted fields +Oracle Open Office Math : fields;updating automatically (Writer) +Oracle Open Office Math : file associations for Microsoft Office +Oracle Open Office Math : file filters +Oracle Open Office Math : file filters;mobile devices +Oracle Open Office Math : file filters;XML +Oracle Open Office Math : file formats +Oracle Open Office Math : file formats;changing Oracle Open Office defaults +Oracle Open Office Math : file formats;OpenDocument/XML +Oracle Open Office Math : file formats;saving always in other formats +Oracle Open Office Math : file selection button +Oracle Open Office Math : file sharing options for current document +Oracle Open Office Math : files +Oracle Open Office Math : files;filters and formats +Oracle Open Office Math : files;importing +Oracle Open Office Math : files;opening +Oracle Open Office Math : files;properties +Oracle Open Office Math : files;saving +Oracle Open Office Math : files;saving automatically +Oracle Open Office Math : files;saving in other formats +Oracle Open Office Math : files;sending as e-mail +Oracle Open Office Math : files;version numbers +Oracle Open Office Math : files and folders in Oracle Open Office +Oracle Open Office Math : files, see also documents +Oracle Open Office Math : fill characters with tabulators +Oracle Open Office Math : fill colors for areas +Oracle Open Office Math : fill patterns for areas +Oracle Open Office Math : filter conditions +Oracle Open Office Math : filter conditions;connecting +Oracle Open Office Math : filter conditions;in queries (Base) +Oracle Open Office Math : filtering +Oracle Open Office Math : filtering;data in databases +Oracle Open Office Math : filtering;data in forms +Oracle Open Office Math : filters +Oracle Open Office Math : filters;comparison operators +Oracle Open Office Math : filters;for import and export +Oracle Open Office Math : filters;Navigator +Oracle Open Office Math : filters;pictures +Oracle Open Office Math : filters;XML filter settings +Oracle Open Office Math : Find tab in Help +Oracle Open Office Math : finding +Oracle Open Office Math : finding;errors in Oracle Open Office Math +Oracle Open Office Math : finding;in all sheets +Oracle Open Office Math : finding;records in form documents +Oracle Open Office Math : finding;selections +Oracle Open Office Math : finding;similarity search +Oracle Open Office Math : fitting to pages +Oracle Open Office Math : fitting to pages;print settings in Math +Oracle Open Office Math : fitting to pages;print settings in presentations +Oracle Open Office Math : fixed text +Oracle Open Office Math : fixed text;form functions +Oracle Open Office Math : fixing toolbars +Oracle Open Office Math : flipping draw objects +Oracle Open Office Math : floating frames in HTML documents +Oracle Open Office Math : floating toolbars +Oracle Open Office Math : floor brackets +Oracle Open Office Math : focus of controls +Oracle Open Office Math : folder creation +Oracle Open Office Math : font attributes +Oracle Open Office Math : font attributes;changing defaults +Oracle Open Office Math : font lists +Oracle Open Office Math : font name box +Oracle Open Office Math : font sizes +Oracle Open Office Math : font sizes;bullets +Oracle Open Office Math : font sizes;example +Oracle Open Office Math : font sizes;in Oracle Open Office Math +Oracle Open Office Math : font sizes;relative changes +Oracle Open Office Math : font sizes;scaling on screen +Oracle Open Office Math : font sizes;text +Oracle Open Office Math : fonts +Oracle Open Office Math : fonts;changing in templates +Oracle Open Office Math : fonts;color ignored +Oracle Open Office Math : fonts;colors +Oracle Open Office Math : fonts;default settings +Oracle Open Office Math : fonts;effects +Oracle Open Office Math : fonts;for HTML and Basic +Oracle Open Office Math : fonts;formats +Oracle Open Office Math : fonts;in Oracle Open Office Math +Oracle Open Office Math : fonts;outlines +Oracle Open Office Math : fonts;positions in text +Oracle Open Office Math : fonts;shadows +Oracle Open Office Math : fonts;specifying several +Oracle Open Office Math : fonts;strikethrough +Oracle Open Office Math : fonts;styles +Oracle Open Office Math : fonts;text objects +Oracle Open Office Math : Fontwork +Oracle Open Office Math : footers +Oracle Open Office Math : footers;backgrounds +Oracle Open Office Math : for all symbol +Oracle Open Office Math : form controls +Oracle Open Office Math : form controls;assigning macros +Oracle Open Office Math : form controls;protecting +Oracle Open Office Math : form controls;toolbars +Oracle Open Office Math : form fields +Oracle Open Office Math : form filters +Oracle Open Office Math : Form Navigator +Oracle Open Office Math : format codes +Oracle Open Office Math : format codes;numbers +Oracle Open Office Math : format filling printing in Oracle Open Office Math +Oracle Open Office Math : Format Paintbrush +Oracle Open Office Math : formats +Oracle Open Office Math : formats;Asian layout +Oracle Open Office Math : formats;fonts +Oracle Open Office Math : formats;maximizing page formats +Oracle Open Office Math : formats;number and currency formats +Oracle Open Office Math : formats;of currencies/date/time +Oracle Open Office Math : formats;on opening and saving +Oracle Open Office Math : formats;pasting in special formats +Oracle Open Office Math : formats;positions +Oracle Open Office Math : formats;tabulators +Oracle Open Office Math : formatted fields +Oracle Open Office Math : formatted fields;form functions +Oracle Open Office Math : formatted fields;properties +Oracle Open Office Math : formatting +Oracle Open Office Math : formatting;Asian typography +Oracle Open Office Math : formatting;axes in charts +Oracle Open Office Math : formatting;changing default attributes +Oracle Open Office Math : formatting;chart legends +Oracle Open Office Math : formatting;copying +Oracle Open Office Math : formatting;definition +Oracle Open Office Math : formatting;expanding (Calc) +Oracle Open Office Math : formatting;font effects +Oracle Open Office Math : formatting;hyperlinks +Oracle Open Office Math : formatting;in Oracle Open Office Math +Oracle Open Office Math : formatting;pages +Oracle Open Office Math : formatting;printer metrics (Writer) +Oracle Open Office Math : formatting;reference list (Math) +Oracle Open Office Math : formatting;undoing +Oracle Open Office Math : formatting;undoing when writing +Oracle Open Office Math : forms +Oracle Open Office Math : forms;browsing +Oracle Open Office Math : forms;Combo Box/List Box Wizard +Oracle Open Office Math : forms;creating +Oracle Open Office Math : forms;data +Oracle Open Office Math : forms;designing (Base) +Oracle Open Office Math : forms;events +Oracle Open Office Math : forms;filtering data +Oracle Open Office Math : forms;finding records +Oracle Open Office Math : forms;focus after opening +Oracle Open Office Math : forms;general information (Base) +Oracle Open Office Math : forms;grouping controls +Oracle Open Office Math : forms;HTML filters +Oracle Open Office Math : forms;Navigator +Oracle Open Office Math : forms;opening in design mode +Oracle Open Office Math : forms;properties +Oracle Open Office Math : forms;sorting data +Oracle Open Office Math : forms;subforms +Oracle Open Office Math : forms;wizards +Oracle Open Office Math : forms;XForms +Oracle Open Office Math : formula cursor in Oracle Open Office Math +Oracle Open Office Math : formula display sizes +Oracle Open Office Math : formula fonts +Oracle Open Office Math : formula fonts;defining +Oracle Open Office Math : formula parts +Oracle Open Office Math : formula parts;manually aligning +Oracle Open Office Math : formula parts;merging +Oracle Open Office Math : formula texts +Oracle Open Office Math : formula texts;printing in Oracle Open Office Math +Oracle Open Office Math : formula view +Oracle Open Office Math : formula view;refreshing +Oracle Open Office Math : formulas +Oracle Open Office Math : formulas;aligning +Oracle Open Office Math : formulas;attributes in +Oracle Open Office Math : formulas;element spacing +Oracle Open Office Math : formulas;entering symbols in +Oracle Open Office Math : formulas;examples +Oracle Open Office Math : formulas;fit to text +Oracle Open Office Math : formulas;in color +Oracle Open Office Math : formulas;increasing size of display +Oracle Open Office Math : formulas;line breaks +Oracle Open Office Math : formulas;maximum size +Oracle Open Office Math : formulas;new +Oracle Open Office Math : formulas;reference tables +Oracle Open Office Math : formulas;selections +Oracle Open Office Math : formulas;starting formula editor +Oracle Open Office Math : formulas;zooming out +Oracle Open Office Math : formulas in reports +Oracle Open Office Math : formulas in reports;editing +Oracle Open Office Math : forums and support +Oracle Open Office Math : fractions in formulas +Oracle Open Office Math : frames +Oracle Open Office Math : frames;around paragraphs +Oracle Open Office Math : frames;around tables +Oracle Open Office Math : frames;AutoCorrect function +Oracle Open Office Math : frames;backgrounds +Oracle Open Office Math : frames;captions (Writer) +Oracle Open Office Math : frames;printing in Oracle Open Office Math +Oracle Open Office Math : frames;protecting +Oracle Open Office Math : frames;selection frames +Oracle Open Office Math : frames;text fitting to frames +Oracle Open Office Math : freeform lines +Oracle Open Office Math : freeform lines;draw functions +Oracle Open Office Math : FTP +Oracle Open Office Math : FTP;opening documents +Oracle Open Office Math : FTP;saving documents +Oracle Open Office Math : full joins (Base) +Oracle Open Office Math : full screen view +Oracle Open Office Math : full-text search in Help +Oracle Open Office Math : functions +Oracle Open Office Math : functions;in Oracle Open Office Math +Oracle Open Office Math : functions in reports +Oracle Open Office Math : functions in reports;editing +Oracle Open Office Math : functions operators +Oracle Open Office Math : functions operators;list of +Oracle Open Office Math : Gallery +Oracle Open Office Math : Gallery;adding pictures +Oracle Open Office Math : Gallery;dragging pictures to draw objects +Oracle Open Office Math : Gallery;hiding/showing +Oracle Open Office Math : Gallery;inserting pictures from +Oracle Open Office Math : gaps in formulas +Oracle Open Office Math : get method for form transmissions +Oracle Open Office Math : getting support +Oracle Open Office Math : GIF format +Oracle Open Office Math : glossaries +Oracle Open Office Math : glossaries;common terms +Oracle Open Office Math : glossaries;Internet terms +Oracle Open Office Math : gradients off for faster printing +Oracle Open Office Math : graphic objects, see draw objects +Oracle Open Office Math : graphical text art +Oracle Open Office Math : graphics +Oracle Open Office Math : graphics;cache +Oracle Open Office Math : graphics;protecting +Oracle Open Office Math : graphics, see also pictures +Oracle Open Office Math : grayscale printing +Oracle Open Office Math : greater than or equal to signs +Oracle Open Office Math : greater than relations +Oracle Open Office Math : Greek symbols in formulas +Oracle Open Office Math : grid controls +Oracle Open Office Math : grid controls;form functions +Oracle Open Office Math : grids +Oracle Open Office Math : grids;defaults (Writer/Calc) +Oracle Open Office Math : grids;display options (Impress/Draw) +Oracle Open Office Math : grids;displaying lines (Calc) +Oracle Open Office Math : group box creation +Oracle Open Office Math : grouping and brackets in Oracle Open Office Math +Oracle Open Office Math : grouping brackets +Oracle Open Office Math : groups +Oracle Open Office Math : groups;entering/exiting/ungrouping +Oracle Open Office Math : groups;naming +Oracle Open Office Math : groups;of controls +Oracle Open Office Math : guides +Oracle Open Office Math : guides;display options (Impress/Draw) +Oracle Open Office Math : guides;displaying when moving objects (Impress) +Oracle Open Office Math : guides;showing (Calc) +Oracle Open Office Math : guides;showing when moving frames (Writer) +Oracle Open Office Math : gutter +Oracle Open Office Math : h-bar symbol +Oracle Open Office Math : handles +Oracle Open Office Math : handles;displaying (Writer) +Oracle Open Office Math : handles;scaling +Oracle Open Office Math : handles;showing simple/large handles (Calc) +Oracle Open Office Math : Hangul/Hanja +Oracle Open Office Math : hatching +Oracle Open Office Math : headers +Oracle Open Office Math : headers;backgrounds +Oracle Open Office Math : headings +Oracle Open Office Math : headings;entering as text box +Oracle Open Office Math : Hebrew +Oracle Open Office Math : Hebrew;entering text +Oracle Open Office Math : Hebrew;language settings +Oracle Open Office Math : Help +Oracle Open Office Math : Help;bookmarks +Oracle Open Office Math : Help;extended tips on/off +Oracle Open Office Math : Help;full-text search +Oracle Open Office Math : Help;Help tips +Oracle Open Office Math : Help;keywords +Oracle Open Office Math : Help;navigation pane showing/hiding +Oracle Open Office Math : Help;style sheets +Oracle Open Office Math : Help;topics +Oracle Open Office Math : Help Agent +Oracle Open Office Math : Help Agent;help +Oracle Open Office Math : Help Agent;options +Oracle Open Office Math : Help tips +Oracle Open Office Math : Help tips;hiding +Oracle Open Office Math : hidden controls in Form Navigator +Oracle Open Office Math : hidden fields display (Writer) +Oracle Open Office Math : hidden pages +Oracle Open Office Math : hidden pages;printing in presentations +Oracle Open Office Math : hidden text +Oracle Open Office Math : hidden text;showing (Writer) +Oracle Open Office Math : hiding +Oracle Open Office Math : hiding;changes +Oracle Open Office Math : hiding;docked windows +Oracle Open Office Math : hiding;navigation pane in Help window +Oracle Open Office Math : high contrast mode +Oracle Open Office Math : highlighting changes +Oracle Open Office Math : Hindi +Oracle Open Office Math : Hindi;entering text +Oracle Open Office Math : Hindi;language settings +Oracle Open Office Math : horizontal scrollbars (Writer) +Oracle Open Office Math : hotspots +Oracle Open Office Math : hotspots;adding to images +Oracle Open Office Math : hotspots;properties +Oracle Open Office Math : HTML +Oracle Open Office Math : HTML;compatibility settings +Oracle Open Office Math : HTML;definition +Oracle Open Office Math : HTML;export character set +Oracle Open Office Math : HTML;fonts for source display +Oracle Open Office Math : HTML;importing META tags +Oracle Open Office Math : HTML;live presentations +Oracle Open Office Math : HTML documents +Oracle Open Office Math : HTML documents;auto reloading +Oracle Open Office Math : HTML documents;importing/exporting +Oracle Open Office Math : HTML documents;META tags in +Oracle Open Office Math : HTML documents;new +Oracle Open Office Math : HTML documents;source text +Oracle Open Office Math : hyperbolic cosine function +Oracle Open Office Math : hyperbolic cotangent function +Oracle Open Office Math : hyperbolic sine function +Oracle Open Office Math : hyperbolic tangent function +Oracle Open Office Math : hyperlinks +Oracle Open Office Math : hyperlinks;assigning macros +Oracle Open Office Math : hyperlinks;character formats +Oracle Open Office Math : hyperlinks;definition +Oracle Open Office Math : hyperlinks;deleting +Oracle Open Office Math : hyperlinks;editing +Oracle Open Office Math : hyperlinks;inserting +Oracle Open Office Math : hyperlinks;relative and absolute +Oracle Open Office Math : hyperlinks;turning off automatic recognition +Oracle Open Office Math : hyperlinks, see also links +Oracle Open Office Math : hyphenation +Oracle Open Office Math : hyphenation;activating for a language +Oracle Open Office Math : hyphenation;minimal number of characters +Oracle Open Office Math : hyphens +Oracle Open Office Math : hyphens;displaying custom (Writer) +Oracle Open Office Math : hyphens;inserting custom +Oracle Open Office Math : icon bars, see toolbars +Oracle Open Office Math : icon sizes +Oracle Open Office Math : identical to relation +Oracle Open Office Math : ignore list for spellcheck +Oracle Open Office Math : ignored font colors +Oracle Open Office Math : illustrations, see pictures +Oracle Open Office Math : image button creation +Oracle Open Office Math : image control creation +Oracle Open Office Math : image of relation +Oracle Open Office Math : ImageMap +Oracle Open Office Math : ImageMap;definition +Oracle Open Office Math : ImageMap;editor +Oracle Open Office Math : ImageMap;hotspot properties +Oracle Open Office Math : images +Oracle Open Office Math : images;ImageMap +Oracle Open Office Math : images;inserting and editing bitmaps +Oracle Open Office Math : images, see also pictures +Oracle Open Office Math : imaginary part of a complex number +Oracle Open Office Math : IME +Oracle Open Office Math : IME;definition +Oracle Open Office Math : IME;showing/hiding +Oracle Open Office Math : import filters +Oracle Open Office Math : import restrictions for Microsoft Office +Oracle Open Office Math : importing +Oracle Open Office Math : importing;bitmaps +Oracle Open Office Math : importing;compatibility settings for text import +Oracle Open Office Math : importing;databases +Oracle Open Office Math : importing;documents in other formats +Oracle Open Office Math : importing;from XML +Oracle Open Office Math : importing;HTML and text documents +Oracle Open Office Math : importing;HTML with META tags +Oracle Open Office Math : importing;Microsoft Office documents with VBA code +Oracle Open Office Math : importing;Oracle Open Office Math formulas +Oracle Open Office Math : importing;tables in text format +Oracle Open Office Math : importing;templates +Oracle Open Office Math : improvement program +Oracle Open Office Math : improvement program - Improvement Program +Oracle Open Office Math : inches +Oracle Open Office Math : included in set operator +Oracle Open Office Math : includes set operator +Oracle Open Office Math : Index tab in Help +Oracle Open Office Math : indexes +Oracle Open Office Math : indexes;adding to formulas +Oracle Open Office Math : indexes;backgrounds +Oracle Open Office Math : indexes;showing/hiding Help index tab +Oracle Open Office Math : indexes and exponents in Oracle Open Office Math +Oracle Open Office Math : indicator lines in text +Oracle Open Office Math : inequation +Oracle Open Office Math : infinity symbol +Oracle Open Office Math : inner joins (Base) +Oracle Open Office Math : input method window +Oracle Open Office Math : insert mode for entering text +Oracle Open Office Math : inserting +Oracle Open Office Math : inserting;brackets +Oracle Open Office Math : inserting;buttons in toolbars +Oracle Open Office Math : inserting;cell ranges from spreadsheets +Oracle Open Office Math : inserting;charts +Oracle Open Office Math : inserting;clipboard options +Oracle Open Office Math : inserting;comments +Oracle Open Office Math : inserting;comments in Oracle Open Office Math +Oracle Open Office Math : inserting;data from text documents +Oracle Open Office Math : inserting;datasource records in spreadsheets +Oracle Open Office Math : inserting;drawings +Oracle Open Office Math : inserting;floating frames +Oracle Open Office Math : inserting;Fontwork objects +Oracle Open Office Math : inserting;form fields +Oracle Open Office Math : inserting;gaps +Oracle Open Office Math : inserting;hyperlinks +Oracle Open Office Math : inserting;line breaks in cells +Oracle Open Office Math : inserting;movies/sounds +Oracle Open Office Math : inserting;new text tables defaults +Oracle Open Office Math : inserting;objects from Gallery +Oracle Open Office Math : inserting;OLE objects +Oracle Open Office Math : inserting;paragraph borders +Oracle Open Office Math : inserting;paragraph bullets +Oracle Open Office Math : inserting;pictures in Gallery +Oracle Open Office Math : inserting;plug-ins +Oracle Open Office Math : inserting;push buttons +Oracle Open Office Math : inserting;special characters +Oracle Open Office Math : inserting;tab stops +Oracle Open Office Math : inserting;text in Oracle Open Office Math +Oracle Open Office Math : inserting;textures on chart bars +Oracle Open Office Math : installing +Oracle Open Office Math : installing;ActiveX control +Oracle Open Office Math : installing;mobile device filters +Oracle Open Office Math : installing;UNO components +Oracle Open Office Math : installing;XML filters +Oracle Open Office Math : instructions +Oracle Open Office Math : instructions;general +Oracle Open Office Math : instructions;Oracle Open Office Math +Oracle Open Office Math : integral limits +Oracle Open Office Math : integrals +Oracle Open Office Math : integrals;example +Oracle Open Office Math : integrals;signs +Oracle Open Office Math : Internet +Oracle Open Office Math : Internet;checking for updates +Oracle Open Office Math : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Math : Internet;presentations +Oracle Open Office Math : Internet;starting searches +Oracle Open Office Math : Internet glossary +Oracle Open Office Math : intersection of sets +Oracle Open Office Math : invert filter +Oracle Open Office Math : invisible areas +Oracle Open Office Math : italic attribute in Oracle Open Office Math +Oracle Open Office Math : italic text +Oracle Open Office Math : iterative references in spreadsheets +Oracle Open Office Math : Java +Oracle Open Office Math : Java;definition +Oracle Open Office Math : Java;setting options +Oracle Open Office Math : JDBC +Oracle Open Office Math : JDBC;databases (Base) +Oracle Open Office Math : JDBC;definition +Oracle Open Office Math : joining +Oracle Open Office Math : joining;paragraphs +Oracle Open Office Math : joining;tables (Base) +Oracle Open Office Math : joins in databases (Base) +Oracle Open Office Math : justifying text +Oracle Open Office Math : kerning +Oracle Open Office Math : kerning;Asian texts +Oracle Open Office Math : kerning;definition +Oracle Open Office Math : kerning;in characters +Oracle Open Office Math : key fields for relations (Base) +Oracle Open Office Math : keyboard +Oracle Open Office Math : keyboard;assigning/editing shortcut keys +Oracle Open Office Math : keyboard;general commands +Oracle Open Office Math : keyboard;removing numbering +Oracle Open Office Math : keys +Oracle Open Office Math : keys;adding push buttons +Oracle Open Office Math : keys;primary keys (Base) +Oracle Open Office Math : kiosk export +Oracle Open Office Math : labels +Oracle Open Office Math : labels;creating and synchronizing +Oracle Open Office Math : labels;for draw objects +Oracle Open Office Math : labels;form functions +Oracle Open Office Math : labels;from databases +Oracle Open Office Math : labels, see also names/callouts +Oracle Open Office Math : lambda-bar symbol +Oracle Open Office Math : languages +Oracle Open Office Math : languages;activating modules +Oracle Open Office Math : languages;Asian support +Oracle Open Office Math : languages;complex text layout +Oracle Open Office Math : languages;locale settings +Oracle Open Office Math : languages;selecting for text +Oracle Open Office Math : languages;setting options +Oracle Open Office Math : languages;spellcheck +Oracle Open Office Math : languages;spellchecking and formatting +Oracle Open Office Math : large handles (Writer) +Oracle Open Office Math : large icons +Oracle Open Office Math : layer arrangement +Oracle Open Office Math : layout +Oracle Open Office Math : layout;importing Word documents +Oracle Open Office Math : layout;pages +Oracle Open Office Math : LDAP server +Oracle Open Office Math : LDAP server;address books (Base) +Oracle Open Office Math : LDAP server;sign on options +Oracle Open Office Math : leading between paragraphs +Oracle Open Office Math : left alignment of paragraphs +Oracle Open Office Math : left arrow symbol +Oracle Open Office Math : left joins (Base) +Oracle Open Office Math : left-justified alignment (Math) +Oracle Open Office Math : legends +Oracle Open Office Math : legends;charts +Oracle Open Office Math : legends;draw objects +Oracle Open Office Math : legends;rounding corners +Oracle Open Office Math : less than or equal to signs +Oracle Open Office Math : less than relations +Oracle Open Office Math : Letter Wizard +Oracle Open Office Math : levels +Oracle Open Office Math : levels;depth stagger +Oracle Open Office Math : levels;macro security +Oracle Open Office Math : limits +Oracle Open Office Math : limits;in Oracle Open Office Math +Oracle Open Office Math : limits;in sums/integrals +Oracle Open Office Math : limits of tables (Writer) +Oracle Open Office Math : line above attribute +Oracle Open Office Math : line breaks +Oracle Open Office Math : line breaks;in cells +Oracle Open Office Math : line breaks;in formulas +Oracle Open Office Math : line spacing +Oracle Open Office Math : line spacing;context menu in paragraphs +Oracle Open Office Math : line spacing;paragraph +Oracle Open Office Math : line styles +Oracle Open Office Math : line styles;applying +Oracle Open Office Math : line styles;defining +Oracle Open Office Math : line through attribute +Oracle Open Office Math : lines +Oracle Open Office Math : lines;defining ends +Oracle Open Office Math : lines;draw functions +Oracle Open Office Math : lines;drawing in text +Oracle Open Office Math : lines;editing points +Oracle Open Office Math : lines;inserting in formulas +Oracle Open Office Math : lines;removing automatic lines +Oracle Open Office Math : lines;scalable +Oracle Open Office Math : lines;with edges +Oracle Open Office Math : lines of text +Oracle Open Office Math : lines of text;alignment +Oracle Open Office Math : links +Oracle Open Office Math : links;between cells and controls +Oracle Open Office Math : links;by drag and drop +Oracle Open Office Math : links;character formats +Oracle Open Office Math : links;definition +Oracle Open Office Math : links;editing hyperlinks +Oracle Open Office Math : links;inserting +Oracle Open Office Math : links;modifying +Oracle Open Office Math : links;opening files with +Oracle Open Office Math : links;relational databases (Base) +Oracle Open Office Math : links;turning off automatic recognition +Oracle Open Office Math : links;updating options (Writer) +Oracle Open Office Math : links;updating specific links +Oracle Open Office Math : list box creation +Oracle Open Office Math : lists +Oracle Open Office Math : lists;data assigned to controls +Oracle Open Office Math : lists;registered databases (Base) +Oracle Open Office Math : lists;regular expressions +Oracle Open Office Math : live presentations on the Internet +Oracle Open Office Math : loading +Oracle Open Office Math : loading;documents +Oracle Open Office Math : loading;documents from other formats +Oracle Open Office Math : loading;HTML documents, automatically +Oracle Open Office Math : loading;Microsoft Office documents with VBA code +Oracle Open Office Math : loading;reloading +Oracle Open Office Math : loading;XML files +Oracle Open Office Math : locale settings +Oracle Open Office Math : logarithms +Oracle Open Office Math : logic symbols +Oracle Open Office Math : logical operators +Oracle Open Office Math : lower limits +Oracle Open Office Math : lowercase letters +Oracle Open Office Math : lowercase letters;font effects +Oracle Open Office Math : Macro Wizard (Base) +Oracle Open Office Math : macros +Oracle Open Office Math : macros;assigning to events in forms +Oracle Open Office Math : macros;attaching new (Base) +Oracle Open Office Math : macros;in MS Office documents +Oracle Open Office Math : macros;interrupting +Oracle Open Office Math : macros;organizing +Oracle Open Office Math : macros;recording +Oracle Open Office Math : macros;security +Oracle Open Office Math : macros;security levels +Oracle Open Office Math : macros;security warning dialog +Oracle Open Office Math : macros;selecting security warnings +Oracle Open Office Math : magnifiers +Oracle Open Office Math : margins +Oracle Open Office Math : margins;pages +Oracle Open Office Math : margins;setting with the mouse +Oracle Open Office Math : margins;shadows +Oracle Open Office Math : markers +Oracle Open Office Math : markers;definition +Oracle Open Office Math : markers;next +Oracle Open Office Math : markers;previous +Oracle Open Office Math : marking changes +Oracle Open Office Math : marking, see selecting +Oracle Open Office Math : Math formula editor +Oracle Open Office Math : mathematical symbols +Oracle Open Office Math : mathematical symbols;catalog +Oracle Open Office Math : mathematical symbols;other +Oracle Open Office Math : matrices +Oracle Open Office Math : matrices;arranging +Oracle Open Office Math : maximum formula size +Oracle Open Office Math : measurement units +Oracle Open Office Math : measurement units;changing on rulers +Oracle Open Office Math : measurement units;converting +Oracle Open Office Math : measurement units;selecting +Oracle Open Office Math : Media Player window +Oracle Open Office Math : menus +Oracle Open Office Math : menus;activating context menus +Oracle Open Office Math : menus;assigning macros +Oracle Open Office Math : menus;customizing +Oracle Open Office Math : merging +Oracle Open Office Math : merging;documents +Oracle Open Office Math : merging;formula parts +Oracle Open Office Math : META tags +Oracle Open Office Math : metrics +Oracle Open Office Math : metrics;converting +Oracle Open Office Math : metrics;document formatting (Writer) +Oracle Open Office Math : metrics;in sheets +Oracle Open Office Math : Microsoft Office +Oracle Open Office Math : Microsoft Office;Access databases (base) +Oracle Open Office Math : Microsoft Office;as default file format +Oracle Open Office Math : Microsoft Office;document import restrictions +Oracle Open Office Math : Microsoft Office;feature comparisons +Oracle Open Office Math : Microsoft Office;importing password protected files +Oracle Open Office Math : Microsoft Office;importing Word documents +Oracle Open Office Math : Microsoft Office;importing/exporting VBA code +Oracle Open Office Math : Microsoft Office;new users information +Oracle Open Office Math : Microsoft Office;opening Microsoft documents +Oracle Open Office Math : Microsoft Office;reassigning document types +Oracle Open Office Math : migrating macros (Base) +Oracle Open Office Math : minus signs +Oracle Open Office Math : minus/plus signs +Oracle Open Office Math : mobile device filters +Oracle Open Office Math : models in XForms +Oracle Open Office Math : modifying, see changing +Oracle Open Office Math : more controls +Oracle Open Office Math : mosaic filter +Oracle Open Office Math : mouse +Oracle Open Office Math : mouse;pointers when using drag and drop +Oracle Open Office Math : mouse;positioning +Oracle Open Office Math : movies +Oracle Open Office Math : moving +Oracle Open Office Math : moving;tab stops on ruler +Oracle Open Office Math : moving;toolbars +Oracle Open Office Math : moving;using guide lines in presentations +Oracle Open Office Math : MS ADO interface (Base) +Oracle Open Office Math : much greater than relation +Oracle Open Office Math : much less than relation +Oracle Open Office Math : multi-line formulas +Oracle Open Office Math : multi-line formulas;aligning +Oracle Open Office Math : multi-line titles in forms +Oracle Open Office Math : multiple documents +Oracle Open Office Math : multiple documents;opening +Oracle Open Office Math : multiple selection +Oracle Open Office Math : multiplication signs +Oracle Open Office Math : music +Oracle Open Office Math : My Documents folder +Oracle Open Office Math : My Documents folder;changing work directory +Oracle Open Office Math : My Documents folder;opening +Oracle Open Office Math : MySQL databases (Base) +Oracle Open Office Math : Nabla operator +Oracle Open Office Math : names +Oracle Open Office Math : names;multi-line titles +Oracle Open Office Math : names;objects +Oracle Open Office Math : names, see also labels/callouts +Oracle Open Office Math : namespace organization in XForms +Oracle Open Office Math : native SQL (Base) +Oracle Open Office Math : natural exponential functions +Oracle Open Office Math : natural logarithms +Oracle Open Office Math : natural numbers +Oracle Open Office Math : navigating +Oracle Open Office Math : navigating;in documents +Oracle Open Office Math : Navigation bar +Oracle Open Office Math : Navigation bar;controls +Oracle Open Office Math : Navigation bar;forms +Oracle Open Office Math : Navigator +Oracle Open Office Math : Navigator;comments +Oracle Open Office Math : Navigator;contents as lists +Oracle Open Office Math : Navigator;docking +Oracle Open Office Math : Navigator;working with +Oracle Open Office Math : network identity options +Oracle Open Office Math : new databases +Oracle Open Office Math : new documents +Oracle Open Office Math : new lines in cells +Oracle Open Office Math : new symbols in Oracle Open Office Math +Oracle Open Office Math : new windows +Oracle Open Office Math : non-breaking dashes +Oracle Open Office Math : non-breaking spaces (Writer) +Oracle Open Office Math : non-printing characters (Writer) +Oracle Open Office Math : not included in set operator +Oracle Open Office Math : NOT operator +Oracle Open Office Math : not subset set operators +Oracle Open Office Math : not superset set operators +Oracle Open Office Math : number formats +Oracle Open Office Math : number formats;codes +Oracle Open Office Math : number formats;formats +Oracle Open Office Math : number formats;recognition in text tables +Oracle Open Office Math : number of pages +Oracle Open Office Math : number of sheets +Oracle Open Office Math : number of tables +Oracle Open Office Math : numbering +Oracle Open Office Math : numbering;options +Oracle Open Office Math : numbering;turning off +Oracle Open Office Math : numbering;using automatically +Oracle Open Office Math : numbers +Oracle Open Office Math : numbers;date, time and currency formats +Oracle Open Office Math : numerical fields in forms +Oracle Open Office Math : objects +Oracle Open Office Math : objects;always moveable (Impress/Draw) +Oracle Open Office Math : objects;arranging within stacks +Oracle Open Office Math : objects;copying when moving in presentations +Oracle Open Office Math : objects;definition +Oracle Open Office Math : objects;displaying in spreadsheets +Oracle Open Office Math : objects;displaying in text documents +Oracle Open Office Math : objects;editing +Oracle Open Office Math : objects;inserting from Gallery +Oracle Open Office Math : objects;inserting OLE objects +Oracle Open Office Math : objects;moving and resizing with mouse +Oracle Open Office Math : objects;naming +Oracle Open Office Math : objects;opening +Oracle Open Office Math : objects;quickly moving to +Oracle Open Office Math : objects;titles and descriptions +Oracle Open Office Math : ODBC +Oracle Open Office Math : ODBC;database (Base) +Oracle Open Office Math : ODBC;definition +Oracle Open Office Math : ODF file formats +Oracle Open Office Math : Office +Oracle Open Office Math : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Math : OLE +Oracle Open Office Math : OLE;definition +Oracle Open Office Math : OLE objects +Oracle Open Office Math : OLE objects;arranging within stacks +Oracle Open Office Math : OLE objects;captions (Writer) +Oracle Open Office Math : OLE objects;inserting +Oracle Open Office Math : OLE objects;number of +Oracle Open Office Math : OLE objects;protecting +Oracle Open Office Math : one and a half line spacing in text +Oracle Open Office Math : online feedback options +Oracle Open Office Math : online registration +Oracle Open Office Math : online update options +Oracle Open Office Math : online updates +Oracle Open Office Math : online updates;checking automatically +Oracle Open Office Math : online updates;checking manually +Oracle Open Office Math : OpenDocument file formats +Oracle Open Office Math : OpenGL +Oracle Open Office Math : OpenGL;definition +Oracle Open Office Math : opening +Oracle Open Office Math : opening;context menus +Oracle Open Office Math : opening;database files +Oracle Open Office Math : opening;dialog settings +Oracle Open Office Math : opening;documents +Oracle Open Office Math : opening;documents from other formats +Oracle Open Office Math : opening;documents on WebDAV server +Oracle Open Office Math : opening;documents with links +Oracle Open Office Math : opening;files, with placeholders +Oracle Open Office Math : opening;forms +Oracle Open Office Math : opening;Microsoft Office files +Oracle Open Office Math : opening;mobile device documents +Oracle Open Office Math : opening;objects +Oracle Open Office Math : opening;reports +Oracle Open Office Math : opening;several files +Oracle Open Office Math : opening;XForms +Oracle Open Office Math : operator brackets +Oracle Open Office Math : operators +Oracle Open Office Math : operators;general +Oracle Open Office Math : operators;in Math +Oracle Open Office Math : operators;list of +Oracle Open Office Math : operators;standard filters +Oracle Open Office Math : operators;unary and binary +Oracle Open Office Math : optional hyphens (Writer) +Oracle Open Office Math : options +Oracle Open Office Math : options;accessibility +Oracle Open Office Math : options;appearance +Oracle Open Office Math : options;compatibility (Writer) +Oracle Open Office Math : options;improvement program +Oracle Open Office Math : options;network identity +Oracle Open Office Math : options;online update +Oracle Open Office Math : options;tools +Oracle Open Office Math : OR operator +Oracle Open Office Math : Oracle databases (base) +Oracle Open Office Math : Oracle Open Office Base data sources +Oracle Open Office Math : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Math : Oracle Open Office documents +Oracle Open Office Math : Oracle Open Office documents;mobile device filters +Oracle Open Office Math : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Math : Oracle Open Office Math +Oracle Open Office Math : Oracle Open Office Math;entering symbols in +Oracle Open Office Math : Oracle Open Office Math;examples +Oracle Open Office Math : Oracle Open Office Math;formatting +Oracle Open Office Math : Oracle Open Office Math;general instructions +Oracle Open Office Math : Oracle Open Office Math;reference list +Oracle Open Office Math : Oracle Open Office Math;relations +Oracle Open Office Math : Oracle Open Office Math start +Oracle Open Office Math : ordering +Oracle Open Office Math : ordering;objects +Oracle Open Office Math : ordinal numbers +Oracle Open Office Math : ordinal numbers;replacing +Oracle Open Office Math : organizing +Oracle Open Office Math : organizing;macros and scripts +Oracle Open Office Math : organizing;namespaces in XForms +Oracle Open Office Math : organizing;styles +Oracle Open Office Math : organizing;templates +Oracle Open Office Math : original by correspondence +Oracle Open Office Math : original size +Oracle Open Office Math : original size;printing in Oracle Open Office Math +Oracle Open Office Math : original size;restoring after cropping +Oracle Open Office Math : orphaned brackets +Oracle Open Office Math : orthogonal relations +Oracle Open Office Math : other operators +Oracle Open Office Math : other operators;list of +Oracle Open Office Math : outlines +Oracle Open Office Math : outlines;font effects +Oracle Open Office Math : outlines;outline symbols +Oracle Open Office Math : outlines;sending to presentations +Oracle Open Office Math : overline attribute +Oracle Open Office Math : overwrite mode +Oracle Open Office Math : owns command +Oracle Open Office Math : packages, see extensions +Oracle Open Office Math : page breaks +Oracle Open Office Math : page breaks;displaying (Calc) +Oracle Open Office Math : page formats +Oracle Open Office Math : page formats;maximizing +Oracle Open Office Math : page formats;restriction +Oracle Open Office Math : page styles +Oracle Open Office Math : page styles;editing/applying with statusbar +Oracle Open Office Math : pages +Oracle Open Office Math : pages;backgrounds in all applications +Oracle Open Office Math : pages;formatting and numbering +Oracle Open Office Math : pages;printing page names in presentations +Oracle Open Office Math : pages;scaling +Oracle Open Office Math : pages;selecting one to print +Oracle Open Office Math : paint box +Oracle Open Office Math : paint can symbol +Oracle Open Office Math : Paintbrush +Oracle Open Office Math : pair kerning +Oracle Open Office Math : Palm file filters +Oracle Open Office Math : paper formats +Oracle Open Office Math : paper size warning +Oracle Open Office Math : paper trays +Oracle Open Office Math : paragraph marks +Oracle Open Office Math : paragraph marks;displaying (Writer) +Oracle Open Office Math : paragraph styles +Oracle Open Office Math : paragraph styles;languages +Oracle Open Office Math : paragraph styles;modifying basic fonts +Oracle Open Office Math : paragraphs +Oracle Open Office Math : paragraphs;alignment +Oracle Open Office Math : paragraphs;Asian typography +Oracle Open Office Math : paragraphs;defining borders +Oracle Open Office Math : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Math : paragraphs;increasing indents of +Oracle Open Office Math : paragraphs;indents, margins and columns +Oracle Open Office Math : paragraphs;inserting bullets +Oracle Open Office Math : paragraphs;joining +Oracle Open Office Math : paragraphs;numbering automatically +Oracle Open Office Math : paragraphs;removing blank ones +Oracle Open Office Math : paragraphs;spacing +Oracle Open Office Math : paragraphs;tab stops +Oracle Open Office Math : parallel relation +Oracle Open Office Math : parameters +Oracle Open Office Math : parameters;command line +Oracle Open Office Math : parameters;queries (Base) +Oracle Open Office Math : parentheses (Math) +Oracle Open Office Math : partial differentiation symbol +Oracle Open Office Math : password as document property +Oracle Open Office Math : passwords for protecting contents +Oracle Open Office Math : pasting +Oracle Open Office Math : pasting;cell ranges +Oracle Open Office Math : pasting;cell ranges from spreadsheets +Oracle Open Office Math : pasting;data from text documents +Oracle Open Office Math : pasting;draw objects +Oracle Open Office Math : pasting;draw objects from other documents +Oracle Open Office Math : pasting;formatted/unformatted text +Oracle Open Office Math : pasting;from data source view +Oracle Open Office Math : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Math : pasting;pictures from other documents +Oracle Open Office Math : pasting;sheet areas in text documents +Oracle Open Office Math : pasting;to Gallery +Oracle Open Office Math : paths +Oracle Open Office Math : paths;changing work directory +Oracle Open Office Math : paths;defaults +Oracle Open Office Math : pattern editor +Oracle Open Office Math : pattern fields +Oracle Open Office Math : pattern fields;form functions +Oracle Open Office Math : patterns for objects +Oracle Open Office Math : PDF +Oracle Open Office Math : PDF;export +Oracle Open Office Math : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Math : personal data input +Oracle Open Office Math : phonetic guide +Oracle Open Office Math : picklist creation +Oracle Open Office Math : picture by correspondence +Oracle Open Office Math : pictures +Oracle Open Office Math : pictures;adding to Gallery +Oracle Open Office Math : pictures;arranging within stacks +Oracle Open Office Math : pictures;assigning macros +Oracle Open Office Math : pictures;backgrounds +Oracle Open Office Math : pictures;captions (Writer) +Oracle Open Office Math : pictures;changing paths +Oracle Open Office Math : pictures;cropping and zooming +Oracle Open Office Math : pictures;displaying in Calc +Oracle Open Office Math : pictures;displaying in Writer (Writer) +Oracle Open Office Math : pictures;drag and drop between documents +Oracle Open Office Math : pictures;drawing +Oracle Open Office Math : pictures;editing +Oracle Open Office Math : pictures;filters +Oracle Open Office Math : pictures;ImageMap +Oracle Open Office Math : pictures;inserting automatically +Oracle Open Office Math : pictures;inserting from Gallery +Oracle Open Office Math : pictures;number of +Oracle Open Office Math : pictures;printing +Oracle Open Office Math : pictures;scaling/resizing +Oracle Open Office Math : pixel editor +Oracle Open Office Math : pixel graphics +Oracle Open Office Math : pixel graphics;inserting and editing +Oracle Open Office Math : pixel patterns +Oracle Open Office Math : placeholders +Oracle Open Office Math : placeholders;in SQL queries +Oracle Open Office Math : placeholders;inserting in formulas +Oracle Open Office Math : placeholders;on opening files +Oracle Open Office Math : placeholders;position of next +Oracle Open Office Math : placeholders;previous marker +Oracle Open Office Math : placing toolbars +Oracle Open Office Math : playing movies and sound files +Oracle Open Office Math : plotting data as charts +Oracle Open Office Math : plug-ins +Oracle Open Office Math : plug-ins;activating and deactivating +Oracle Open Office Math : plug-ins;definition +Oracle Open Office Math : plug-ins;inserting +Oracle Open Office Math : plus signs +Oracle Open Office Math : plus/minus signs +Oracle Open Office Math : pocket device appliances +Oracle Open Office Math : Pocket PC file filters +Oracle Open Office Math : points +Oracle Open Office Math : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Math : polygon drawing +Oracle Open Office Math : pop-art filter +Oracle Open Office Math : portable document format +Oracle Open Office Math : positioning +Oracle Open Office Math : positioning;draw objects and controls +Oracle Open Office Math : positioning;fonts +Oracle Open Office Math : positioning;objects +Oracle Open Office Math : positioning;toolbars +Oracle Open Office Math : post method for form transmissions +Oracle Open Office Math : posterizing filter +Oracle Open Office Math : PostScript +Oracle Open Office Math : PostScript;creating files +Oracle Open Office Math : PostScript;PDF converter, UNIX +Oracle Open Office Math : PowerPoint export +Oracle Open Office Math : powers +Oracle Open Office Math : precision as shown (Calc) +Oracle Open Office Math : predefining fonts +Oracle Open Office Math : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Math : presentations +Oracle Open Office Math : presentations;creating/opening +Oracle Open Office Math : presentations;inserting spreadsheet cells +Oracle Open Office Math : presentations;live on the Internet +Oracle Open Office Math : presentations;print menu +Oracle Open Office Math : presentations;saving +Oracle Open Office Math : presentations;saving automatically +Oracle Open Office Math : presentations;saving in other formats +Oracle Open Office Math : presentations;sending as e-mail +Oracle Open Office Math : presentations;starting with wizard +Oracle Open Office Math : presentations;wizards +Oracle Open Office Math : press buttons, see push buttons +Oracle Open Office Math : previews +Oracle Open Office Math : previews;fonts lists +Oracle Open Office Math : primary keys +Oracle Open Office Math : primary keys;defining +Oracle Open Office Math : primary keys;design view +Oracle Open Office Math : primary keys;inserting (Base) +Oracle Open Office Math : print area selection +Oracle Open Office Math : printer metrics for document formatting (Writer) +Oracle Open Office Math : printers +Oracle Open Office Math : printers;adding, UNIX +Oracle Open Office Math : printers;choosing +Oracle Open Office Math : printers;default printer +Oracle Open Office Math : printers;faxes under UNIX +Oracle Open Office Math : printers;maximum page formats +Oracle Open Office Math : printers;paper trays +Oracle Open Office Math : printers;properties +Oracle Open Office Math : printing +Oracle Open Office Math : printing;black and white +Oracle Open Office Math : printing;brochures +Oracle Open Office Math : printing;colors in grayscale +Oracle Open Office Math : printing;comments +Oracle Open Office Math : printing;copies +Oracle Open Office Math : printing;creating individual jobs +Oracle Open Office Math : printing;dates in presentations +Oracle Open Office Math : printing;directly +Oracle Open Office Math : printing;documents +Oracle Open Office Math : printing;drawings defaults +Oracle Open Office Math : printing;elements in text documents +Oracle Open Office Math : printing;faster +Oracle Open Office Math : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Math : printing;fitting to pages in presentations +Oracle Open Office Math : printing;formulas in Oracle Open Office Math +Oracle Open Office Math : printing;hidden pages of presentations +Oracle Open Office Math : printing;in original size in Oracle Open Office Math +Oracle Open Office Math : printing;left/right pages +Oracle Open Office Math : printing;queries (Base) +Oracle Open Office Math : printing;scaling in Oracle Open Office Math +Oracle Open Office Math : printing;selections +Oracle Open Office Math : printing;text always in black +Oracle Open Office Math : printing;text in reverse order +Oracle Open Office Math : printing;tiling pages in presentations +Oracle Open Office Math : printing;transparencies +Oracle Open Office Math : printing;warnings +Oracle Open Office Math : printing;without scaling in presentations +Oracle Open Office Math : printing speed +Oracle Open Office Math : product +Oracle Open Office Math : programming +Oracle Open Office Math : programming;Oracle Open Office +Oracle Open Office Math : programming;scripting +Oracle Open Office Math : properties +Oracle Open Office Math : properties;fields in databases +Oracle Open Office Math : properties;files +Oracle Open Office Math : properties;form controls +Oracle Open Office Math : properties;forms +Oracle Open Office Math : properties;hotspots +Oracle Open Office Math : properties;printers +Oracle Open Office Math : proportional to relation +Oracle Open Office Math : protected contents +Oracle Open Office Math : protected dashes +Oracle Open Office Math : protected database tables +Oracle Open Office Math : protected documents +Oracle Open Office Math : protected spaces +Oracle Open Office Math : protected spaces;inserting +Oracle Open Office Math : protected spaces;showing (Writer) +Oracle Open Office Math : protecting +Oracle Open Office Math : protecting;contents +Oracle Open Office Math : protecting;recorded changes +Oracle Open Office Math : proxy settings +Oracle Open Office Math : push buttons +Oracle Open Office Math : push buttons;adding to documents +Oracle Open Office Math : push buttons;creating +Oracle Open Office Math : queries +Oracle Open Office Math : queries;copying (Base) +Oracle Open Office Math : queries;creating in design view (Base) +Oracle Open Office Math : queries;creating in SQL view +Oracle Open Office Math : queries;defining (Base) +Oracle Open Office Math : queries;deleting table links (Base) +Oracle Open Office Math : queries;editing in data source view +Oracle Open Office Math : queries;formulating filter conditions (Base) +Oracle Open Office Math : queries;joining tables (Base) +Oracle Open Office Math : queries;missing elements (Base) +Oracle Open Office Math : queries;overview (Base) +Oracle Open Office Math : queries;parameter queries (Base) +Oracle Open Office Math : queries;printing (Base) +Oracle Open Office Math : Query Wizard (Base) +Oracle Open Office Math : Quickstarter +Oracle Open Office Math : quotes +Oracle Open Office Math : quotes;custom +Oracle Open Office Math : quotient set +Oracle Open Office Math : radio button creation +Oracle Open Office Math : range of integral example +Oracle Open Office Math : rational numbers +Oracle Open Office Math : read-only documents +Oracle Open Office Math : read-only documents;cursor +Oracle Open Office Math : read-only documents;database tables on/off +Oracle Open Office Math : read-only documents;editing +Oracle Open Office Math : read-only documents;opening documents as +Oracle Open Office Math : read-only items in Data Navigator +Oracle Open Office Math : real numbers +Oracle Open Office Math : real part of complex numbers +Oracle Open Office Math : recognizing URLs automatically +Oracle Open Office Math : recording +Oracle Open Office Math : recording;changes +Oracle Open Office Math : recording;macros +Oracle Open Office Math : records +Oracle Open Office Math : records;inserting comments +Oracle Open Office Math : records;protecting +Oracle Open Office Math : records;saving +Oracle Open Office Math : records;searching in databases +Oracle Open Office Math : rectangle drawing +Oracle Open Office Math : rectangles with round corners +Oracle Open Office Math : recursions in spreadsheets +Oracle Open Office Math : redo command +Oracle Open Office Math : reduced printing +Oracle Open Office Math : reference lines +Oracle Open Office Math : reference tables +Oracle Open Office Math : reference tables;formulas +Oracle Open Office Math : references +Oracle Open Office Math : references;displaying in color (Calc) +Oracle Open Office Math : references;expanding (Calc) +Oracle Open Office Math : references;iterative (Calc) +Oracle Open Office Math : refreshing formula view +Oracle Open Office Math : register-true +Oracle Open Office Math : register-true;definition +Oracle Open Office Math : registering +Oracle Open Office Math : registering;address books +Oracle Open Office Math : registering;databases (Base) +Oracle Open Office Math : registering;Oracle Open Office +Oracle Open Office Math : regular expressions +Oracle Open Office Math : regular expressions;list of +Oracle Open Office Math : relational databases (Base) +Oracle Open Office Math : relations +Oracle Open Office Math : relations;creating and deleting (Base) +Oracle Open Office Math : relations;in Oracle Open Office Math +Oracle Open Office Math : relations;joining tables (Base) +Oracle Open Office Math : relations;properties (Base) +Oracle Open Office Math : relations operators +Oracle Open Office Math : relations operators;list of +Oracle Open Office Math : relative hyperlinks +Oracle Open Office Math : relative saving of URLs +Oracle Open Office Math : reloading +Oracle Open Office Math : reloading;documents +Oracle Open Office Math : reloading;HTML documents, automatically +Oracle Open Office Math : remarks, see also comments +Oracle Open Office Math : remote configurations +Oracle Open Office Math : remove noise filter +Oracle Open Office Math : removing +Oracle Open Office Math : removing;bullets and numbering +Oracle Open Office Math : removing;form filters +Oracle Open Office Math : removing, see also deleting +Oracle Open Office Math : repeating +Oracle Open Office Math : repeating;commands +Oracle Open Office Math : replacement options +Oracle Open Office Math : replacement table +Oracle Open Office Math : replacing +Oracle Open Office Math : replacing;AutoCorrect function +Oracle Open Office Math : replacing;dashes +Oracle Open Office Math : replacing;ordinal numbers +Oracle Open Office Math : replacing;tab stops (regular expressions) +Oracle Open Office Math : Report Builder +Oracle Open Office Math : reports +Oracle Open Office Math : reports;creating +Oracle Open Office Math : reports;error reports +Oracle Open Office Math : reports;opening and editing +Oracle Open Office Math : reports;templates +Oracle Open Office Math : resetting +Oracle Open Office Math : resetting;templates +Oracle Open Office Math : resizing +Oracle Open Office Math : resizing;fonts +Oracle Open Office Math : resizing;objects, by mouse +Oracle Open Office Math : resizing, see also scaling/zooming +Oracle Open Office Math : resolution when printing bitmaps +Oracle Open Office Math : restoring +Oracle Open Office Math : restoring;default formatting +Oracle Open Office Math : restoring;editing +Oracle Open Office Math : reversed circumflex attribute +Oracle Open Office Math : reversing printing order +Oracle Open Office Math : review function +Oracle Open Office Math : review function;accepting or rejecting changes +Oracle Open Office Math : review function;comparing documents +Oracle Open Office Math : review function;protecting records +Oracle Open Office Math : review function;recording changes example +Oracle Open Office Math : review function;tracking changes +Oracle Open Office Math : rich text control +Oracle Open Office Math : right alignment of paragraphs +Oracle Open Office Math : right angled relations +Oracle Open Office Math : right arrow symbol +Oracle Open Office Math : right joins (Base) +Oracle Open Office Math : right-justified alignment in Oracle Open Office Math +Oracle Open Office Math : right-to-left text +Oracle Open Office Math : roots +Oracle Open Office Math : rotating +Oracle Open Office Math : rotating;3D text +Oracle Open Office Math : round brackets +Oracle Open Office Math : round corners +Oracle Open Office Math : rounding precision (Calc) +Oracle Open Office Math : row headers +Oracle Open Office Math : row headers;displaying (Calc) +Oracle Open Office Math : row headers;highlighting (Calc) +Oracle Open Office Math : rulers +Oracle Open Office Math : rulers;default settings +Oracle Open Office Math : rulers;measurement units +Oracle Open Office Math : rulers;visible in presentations +Oracle Open Office Math : samples and templates +Oracle Open Office Math : saving +Oracle Open Office Math : saving;default file formats +Oracle Open Office Math : saving;dialog settings +Oracle Open Office Math : saving;documents +Oracle Open Office Math : saving;documents for mobile devices +Oracle Open Office Math : saving;documents in other formats +Oracle Open Office Math : saving;documents, automatically +Oracle Open Office Math : saving;in Microsoft Office file format +Oracle Open Office Math : saving;options +Oracle Open Office Math : saving;templates +Oracle Open Office Math : saving;to XML +Oracle Open Office Math : saving;VBA code in Microsoft Office documents +Oracle Open Office Math : saving;with password by default +Oracle Open Office Math : saving as command +Oracle Open Office Math : saving as command;precautions +Oracle Open Office Math : scalable braces +Oracle Open Office Math : scalable lines with ceiling +Oracle Open Office Math : scalable round brackets +Oracle Open Office Math : scaling +Oracle Open Office Math : scaling;font sizes in user interface +Oracle Open Office Math : scaling;fonts +Oracle Open Office Math : scaling;in Oracle Open Office Math +Oracle Open Office Math : scaling;objects +Oracle Open Office Math : scaling;pictures +Oracle Open Office Math : scaling;printing in Oracle Open Office Math +Oracle Open Office Math : scaling;when printing presentations +Oracle Open Office Math : scaling, see also zooming +Oracle Open Office Math : screen +Oracle Open Office Math : screen;full screen views +Oracle Open Office Math : screen;scaling +Oracle Open Office Math : screen magnifiers +Oracle Open Office Math : screen readers +Oracle Open Office Math : script organization +Oracle Open Office Math : scrollbars +Oracle Open Office Math : scrollbars;controls +Oracle Open Office Math : scrollbars;displaying (Calc) +Oracle Open Office Math : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Math : search criteria for database functions in cells +Oracle Open Office Math : search engines +Oracle Open Office Math : search engines;definition +Oracle Open Office Math : search engines;selecting +Oracle Open Office Math : searching +Oracle Open Office Math : searching;all sheets +Oracle Open Office Math : searching;databases +Oracle Open Office Math : searching;form filters +Oracle Open Office Math : searching;Internet +Oracle Open Office Math : searching;tables and forms +Oracle Open Office Math : sections +Oracle Open Office Math : sections;backgrounds +Oracle Open Office Math : security +Oracle Open Office Math : security;digital signatures +Oracle Open Office Math : security;options for documents with macros +Oracle Open Office Math : security;protecting contents +Oracle Open Office Math : security;security levels for macros +Oracle Open Office Math : security;warning dialogs with macros +Oracle Open Office Math : selecting +Oracle Open Office Math : selecting;controls +Oracle Open Office Math : selecting;measurement units +Oracle Open Office Math : selecting;objects +Oracle Open Office Math : selecting;print areas +Oracle Open Office Math : selecting;several files +Oracle Open Office Math : selection clipboard +Oracle Open Office Math : selection frames +Oracle Open Office Math : selection modes in text +Oracle Open Office Math : selection options in formulas +Oracle Open Office Math : sending +Oracle Open Office Math : sending;AutoAbstract function in presentations +Oracle Open Office Math : sending;documents as e-mail +Oracle Open Office Math : sending;documents as faxes +Oracle Open Office Math : separator lines +Oracle Open Office Math : separator lines;defining +Oracle Open Office Math : separators +Oracle Open Office Math : separators;conditional +Oracle Open Office Math : Server Side ImageMap +Oracle Open Office Math : set operations in Oracle Open OfficeMath +Oracle Open Office Math : set operators +Oracle Open Office Math : set operators;list of +Oracle Open Office Math : sets of numbers +Oracle Open Office Math : settings +Oracle Open Office Math : settings;printers +Oracle Open Office Math : settings;program configuration +Oracle Open Office Math : settings;proxies +Oracle Open Office Math : settings;views +Oracle Open Office Math : SGML +Oracle Open Office Math : SGML;definition +Oracle Open Office Math : shadows +Oracle Open Office Math : shadows;areas +Oracle Open Office Math : shadows;borders +Oracle Open Office Math : shadows;characters +Oracle Open Office Math : shadows;characters, using context menu +Oracle Open Office Math : shapes +Oracle Open Office Math : sharing documents +Oracle Open Office Math : sharpening filter +Oracle Open Office Math : sheet tabs +Oracle Open Office Math : sheet tabs;displaying +Oracle Open Office Math : sheets +Oracle Open Office Math : sheets;searching all +Oracle Open Office Math : shortcut keys +Oracle Open Office Math : shortcut keys;assigning macros +Oracle Open Office Math : shortcut keys;general +Oracle Open Office Math : shortcut keys;in databases +Oracle Open Office Math : shortcut keys;in formulas +Oracle Open Office Math : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Math : showing +Oracle Open Office Math : showing;changes +Oracle Open Office Math : showing;docked windows +Oracle Open Office Math : showing;drawings and controls (Writer) +Oracle Open Office Math : showing;live presentations on the Internet +Oracle Open Office Math : showing;toolbars +Oracle Open Office Math : signing documents with digital signatures +Oracle Open Office Math : similar to relations +Oracle Open Office Math : similarity search +Oracle Open Office Math : simple handles (Writer) +Oracle Open Office Math : simplified Chinese +Oracle Open Office Math : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Math : sine function +Oracle Open Office Math : single brackets without group function +Oracle Open Office Math : single sign on options +Oracle Open Office Math : single-line spacing in text +Oracle Open Office Math : sizes +Oracle Open Office Math : sizes;draw objects +Oracle Open Office Math : sizes;of fonts in Oracle Open Office Math +Oracle Open Office Math : sizes;pictures +Oracle Open Office Math : slanting draw objects +Oracle Open Office Math : slash division sign +Oracle Open Office Math : small capitals +Oracle Open Office Math : small gaps +Oracle Open Office Math : small icons +Oracle Open Office Math : smart tag configuration +Oracle Open Office Math : smooth scrolling (Writer) +Oracle Open Office Math : smoothing filter +Oracle Open Office Math : snap grid defaults (Writer/Calc) +Oracle Open Office Math : snapping in presentations and drawings +Oracle Open Office Math : solarization filter +Oracle Open Office Math : sort lists +Oracle Open Office Math : sort lists;copying to in Calc +Oracle Open Office Math : sorting +Oracle Open Office Math : sorting;data in forms +Oracle Open Office Math : sorting;databases +Oracle Open Office Math : sound files +Oracle Open Office Math : spaces +Oracle Open Office Math : spaces;displaying (Writer) +Oracle Open Office Math : spaces;ignoring double +Oracle Open Office Math : spaces;inserting protected spaces +Oracle Open Office Math : spaces;showing protected spaces (Writer) +Oracle Open Office Math : spaces in formulas +Oracle Open Office Math : spacing +Oracle Open Office Math : spacing;between paragraphs in footnotes +Oracle Open Office Math : spacing;font effects +Oracle Open Office Math : spacing;formula elements +Oracle Open Office Math : spacing;lines and paragraphs +Oracle Open Office Math : spacing;tab stops in text documents +Oracle Open Office Math : spacing;tabs in presentations +Oracle Open Office Math : spadmin +Oracle Open Office Math : special characters +Oracle Open Office Math : speech bubbles +Oracle Open Office Math : speed of printing +Oracle Open Office Math : spellcheck +Oracle Open Office Math : spellcheck;activating for a language +Oracle Open Office Math : spellcheck;context menus +Oracle Open Office Math : spellcheck;default languages +Oracle Open Office Math : spellcheck;dialog +Oracle Open Office Math : spellcheck;dictionary of exceptions +Oracle Open Office Math : spellcheck;ignore list +Oracle Open Office Math : spin button creation +Oracle Open Office Math : spoolfiles with Xprinter +Oracle Open Office Math : spreadsheets +Oracle Open Office Math : spreadsheets;as databases (base) +Oracle Open Office Math : spreadsheets;copying areas to text documents +Oracle Open Office Math : spreadsheets;creating/opening +Oracle Open Office Math : spreadsheets;inserting charts +Oracle Open Office Math : spreadsheets;inserting database records +Oracle Open Office Math : spreadsheets;printing +Oracle Open Office Math : spreadsheets;saving +Oracle Open Office Math : spreadsheets;saving automatically +Oracle Open Office Math : spreadsheets;saving in other formats +Oracle Open Office Math : spreadsheets;sending as e-mail +Oracle Open Office Math : SQL +Oracle Open Office Math : SQL;definition +Oracle Open Office Math : SQL;DISTINCT parameter +Oracle Open Office Math : SQL;executing SQL commands +Oracle Open Office Math : SQL;executing SQL statements (Base) +Oracle Open Office Math : SQL;queries (Base) +Oracle Open Office Math : square brackets +Oracle Open Office Math : square drawings +Oracle Open Office Math : square roots +Oracle Open Office Math : stacks +Oracle Open Office Math : standard bar on/off +Oracle Open Office Math : standard filters +Oracle Open Office Math : standard filters;comparison operators +Oracle Open Office Math : standard filters;databases +Oracle Open Office Math : standard printer under UNIX +Oracle Open Office Math : start center +Oracle Open Office Math : start parameters +Oracle Open Office Math : status bar on/off +Oracle Open Office Math : stickers +Oracle Open Office Math : strikethrough +Oracle Open Office Math : strikethrough;characters +Oracle Open Office Math : strikethrough;font effects +Oracle Open Office Math : styles +Oracle Open Office Math : styles;'changed' message +Oracle Open Office Math : styles;copying between documents +Oracle Open Office Math : styles;keyboard shortcuts +Oracle Open Office Math : styles;organizing +Oracle Open Office Math : styles;printing styles used in a document +Oracle Open Office Math : styles;replacing automatically +Oracle Open Office Math : Styles and Formatting window +Oracle Open Office Math : Styles and Formatting window;docking +Oracle Open Office Math : subforms +Oracle Open Office Math : subforms;creating +Oracle Open Office Math : subforms;description +Oracle Open Office Math : submitting forms +Oracle Open Office Math : subscripts +Oracle Open Office Math : subset set operators +Oracle Open Office Math : subtraction signs +Oracle Open Office Math : suffixes in file formats +Oracle Open Office Math : sum range example +Oracle Open Office Math : summation +Oracle Open Office Math : superscripts +Oracle Open Office Math : superset set operators +Oracle Open Office Math : support on the Web +Oracle Open Office Math : symbols +Oracle Open Office Math : symbols;adding in Oracle Open Office Math +Oracle Open Office Math : symbols;entering in Oracle Open Office Math +Oracle Open Office Math : symbols;for complex numbers +Oracle Open Office Math : synchronizing +Oracle Open Office Math : synchronizing;labels and business cards +Oracle Open Office Math : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Math : system address book registration +Oracle Open Office Math : tab stops +Oracle Open Office Math : tab stops;displaying (Writer) +Oracle Open Office Math : tab stops;inserting and editing +Oracle Open Office Math : tab stops;regular expressions +Oracle Open Office Math : tab stops;setting in sheets +Oracle Open Office Math : tab stops;settings +Oracle Open Office Math : tab stops;spacing in presentations +Oracle Open Office Math : tab stops;spacing in text documents +Oracle Open Office Math : table controls +Oracle Open Office Math : table controls;form functions +Oracle Open Office Math : table controls;keyboard-only edit mode +Oracle Open Office Math : table controls;properties +Oracle Open Office Math : table views of databases +Oracle Open Office Math : Table Wizard (Base) +Oracle Open Office Math : tables +Oracle Open Office Math : tables;inserting line breaks +Oracle Open Office Math : tables in databases +Oracle Open Office Math : tables in databases;access rights to (Base) +Oracle Open Office Math : tables in databases;adding to queries +Oracle Open Office Math : tables in databases;browsing and editing +Oracle Open Office Math : tables in databases;copying database tables (Base) +Oracle Open Office Math : tables in databases;creating +Oracle Open Office Math : tables in databases;creating in design view (manually) +Oracle Open Office Math : tables in databases;importing text formats (Base) +Oracle Open Office Math : tables in databases;joining for queries (Base) +Oracle Open Office Math : tables in databases;printing queries (Base) +Oracle Open Office Math : tables in databases;relations (Base) +Oracle Open Office Math : tables in databases;searching +Oracle Open Office Math : tables in spreadsheets +Oracle Open Office Math : tables in spreadsheets;copying data to other applications +Oracle Open Office Math : tables in spreadsheets;defining borders +Oracle Open Office Math : tables in spreadsheets;value highlighting +Oracle Open Office Math : tables in text +Oracle Open Office Math : tables in text;captions +Oracle Open Office Math : tables in text;creating automatically +Oracle Open Office Math : tables in text;default settings +Oracle Open Office Math : tables in text;defining borders +Oracle Open Office Math : tables in text;displaying +Oracle Open Office Math : tables in text;printing +Oracle Open Office Math : tabs +Oracle Open Office Math : tabs;displaying sheet tabs +Oracle Open Office Math : tags +Oracle Open Office Math : tags;definition +Oracle Open Office Math : tags;META tags +Oracle Open Office Math : tangent function +Oracle Open Office Math : templates +Oracle Open Office Math : templates;agendas +Oracle Open Office Math : templates;changing basic fonts +Oracle Open Office Math : templates;database reports +Oracle Open Office Math : templates;deleting +Oracle Open Office Math : templates;editing and saving +Oracle Open Office Math : templates;faxes +Oracle Open Office Math : templates;importing and exporting +Oracle Open Office Math : templates;letters +Oracle Open Office Math : templates;new documents from templates +Oracle Open Office Math : templates;opening documents with +Oracle Open Office Math : templates;organizing +Oracle Open Office Math : terminology +Oracle Open Office Math : terminology;general glossary +Oracle Open Office Math : terminology;Internet glossary +Oracle Open Office Math : testing XML filters +Oracle Open Office Math : text +Oracle Open Office Math : text;animating +Oracle Open Office Math : text;Asian layout +Oracle Open Office Math : text;bold +Oracle Open Office Math : text;coloring +Oracle Open Office Math : text;copying by drag and drop +Oracle Open Office Math : text;CTL languages +Oracle Open Office Math : text;drawing pictures +Oracle Open Office Math : text;font effects +Oracle Open Office Math : text;font sizes +Oracle Open Office Math : text;font styles +Oracle Open Office Math : text;fonts and formats +Oracle Open Office Math : text;Fontwork icons +Oracle Open Office Math : text;hyperlinks +Oracle Open Office Math : text;inserting special characters +Oracle Open Office Math : text;italics +Oracle Open Office Math : text;kerning +Oracle Open Office Math : text;language selection +Oracle Open Office Math : text;line spacing +Oracle Open Office Math : text;overwriting or inserting +Oracle Open Office Math : text;printing in black +Oracle Open Office Math : text;replacing with format +Oracle Open Office Math : text;selection modes +Oracle Open Office Math : text;shadowed +Oracle Open Office Math : text;text/draw objects +Oracle Open Office Math : text attributes +Oracle Open Office Math : text attributes;hyperlinks +Oracle Open Office Math : text attributes;undoing +Oracle Open Office Math : text boxes +Oracle Open Office Math : text boxes;form functions +Oracle Open Office Math : text boxes;positioning +Oracle Open Office Math : text breaks in cells +Oracle Open Office Math : text colors for better accessibility +Oracle Open Office Math : text databases (Base) +Oracle Open Office Math : text documents +Oracle Open Office Math : text documents;creating/opening +Oracle Open Office Math : text documents;importing/exporting +Oracle Open Office Math : text documents;inserting spreadsheet cells +Oracle Open Office Math : text documents;print settings +Oracle Open Office Math : text documents;printing +Oracle Open Office Math : text documents;saving +Oracle Open Office Math : text documents;saving automatically +Oracle Open Office Math : text documents;saving in other formats +Oracle Open Office Math : text documents;sending as e-mail +Oracle Open Office Math : text effects +Oracle Open Office Math : text flow +Oracle Open Office Math : text flow;in cells +Oracle Open Office Math : text formats +Oracle Open Office Math : text formats;databases +Oracle Open Office Math : text formats;pasting +Oracle Open Office Math : text input fields +Oracle Open Office Math : text layout for special languages +Oracle Open Office Math : text mode in Oracle Open Office Math +Oracle Open Office Math : text objects +Oracle Open Office Math : text objects;alignment +Oracle Open Office Math : text objects;draw functions +Oracle Open Office Math : text objects;fonts +Oracle Open Office Math : text objects;in presentations and drawings +Oracle Open Office Math : text overflow in spreadsheet cells +Oracle Open Office Math : text strings +Oracle Open Office Math : text strings;entering in Oracle Open Office Math +Oracle Open Office Math : text, see also text documents, paragraphs and characters +Oracle Open Office Math : TextArt, see Fontwork +Oracle Open Office Math : textures +Oracle Open Office Math : textures;inserting from Gallery +Oracle Open Office Math : textures;on chart bars +Oracle Open Office Math : Thai +Oracle Open Office Math : Thai;entering text +Oracle Open Office Math : Thai;language settings +Oracle Open Office Math : there exists symbol +Oracle Open Office Math : thesaurus +Oracle Open Office Math : thesaurus;activating for a language +Oracle Open Office Math : ticker text +Oracle Open Office Math : tilde as attribute +Oracle Open Office Math : time fields +Oracle Open Office Math : time fields;form functions +Oracle Open Office Math : times +Oracle Open Office Math : times;inserting when printing presentations +Oracle Open Office Math : times, formats +Oracle Open Office Math : tips +Oracle Open Office Math : tips;extended tips in Help +Oracle Open Office Math : title rows +Oracle Open Office Math : title rows;printing in Oracle Open Office Math +Oracle Open Office Math : titles +Oracle Open Office Math : titles;changing +Oracle Open Office Math : titles;editing in charts +Oracle Open Office Math : titles;font effects +Oracle Open Office Math : titles;formatting automatically +Oracle Open Office Math : titles;objects +Oracle Open Office Math : toolbars +Oracle Open Office Math : toolbars;adding buttons +Oracle Open Office Math : toolbars;docking/undocking +Oracle Open Office Math : toolbars;Form Navigation bar +Oracle Open Office Math : toolbars;viewing/closing +Oracle Open Office Math : tools bar +Oracle Open Office Math : tooltips +Oracle Open Office Math : tooltips;extended tips +Oracle Open Office Math : tooltips;help +Oracle Open Office Math : toward relation +Oracle Open Office Math : Track Changes, see review function +Oracle Open Office Math : traditional Chinese +Oracle Open Office Math : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Math : transparency +Oracle Open Office Math : transparency;areas +Oracle Open Office Math : transparency;off for faster printing +Oracle Open Office Math : transparency;saving +Oracle Open Office Math : transparent character as attribute +Oracle Open Office Math : tree view of Help +Oracle Open Office Math : triangle drawing +Oracle Open Office Math : trigonometrical functions +Oracle Open Office Math : triple dot attribute +Oracle Open Office Math : typefaces +Oracle Open Office Math : typefaces;formats +Oracle Open Office Math : typography +Oracle Open Office Math : typography;Asian +Oracle Open Office Math : unary operators +Oracle Open Office Math : unary operators;list of +Oracle Open Office Math : unary operators +Oracle Open Office Math : underline attribute +Oracle Open Office Math : underlining +Oracle Open Office Math : underlining;AutoFormat function +Oracle Open Office Math : underlining;characters +Oracle Open Office Math : underlining;text +Oracle Open Office Math : undocking windows +Oracle Open Office Math : undoing +Oracle Open Office Math : undoing;direct formatting +Oracle Open Office Math : undoing;editing +Oracle Open Office Math : undoing;number of steps +Oracle Open Office Math : unequal sign +Oracle Open Office Math : ungrouping groups +Oracle Open Office Math : union of sets +Oracle Open Office Math : units +Oracle Open Office Math : units;converting +Oracle Open Office Math : units;measurement units +Oracle Open Office Math : universal quantifier symbol +Oracle Open Office Math : UNO components +Oracle Open Office Math : UNO components;Extension Manager +Oracle Open Office Math : UNO components;integrating new +Oracle Open Office Math : up arrow symbol +Oracle Open Office Math : update options +Oracle Open Office Math : updates +Oracle Open Office Math : updates;checking automatically +Oracle Open Office Math : updates;checking manually +Oracle Open Office Math : updating +Oracle Open Office Math : updating;fields and charts, automatically (Writer) +Oracle Open Office Math : updating;links in text documents +Oracle Open Office Math : updating;links, on opening +Oracle Open Office Math : updating;templates +Oracle Open Office Math : upper limits +Oracle Open Office Math : URL +Oracle Open Office Math : URL;changing hyperlink URLs +Oracle Open Office Math : URL;definition +Oracle Open Office Math : URL;in pictures +Oracle Open Office Math : URL;saving absolute/relative paths +Oracle Open Office Math : URL;turning off URL recognition +Oracle Open Office Math : user data +Oracle Open Office Math : user data;input +Oracle Open Office Math : user data;removing when saving +Oracle Open Office Math : user feedback +Oracle Open Office Math : user feedback;automatically +Oracle Open Office Math : user-defined dictionaries +Oracle Open Office Math : user-defined dictionaries;creating +Oracle Open Office Math : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Math : user-defined dictionaries;editing +Oracle Open Office Math : user-defined operators +Oracle Open Office Math : user-defined operators;general +Oracle Open Office Math : user-defined operators;unary and binary +Oracle Open Office Math : user-defined styles +Oracle Open Office Math : user-defined styles;automatically replacing +Oracle Open Office Math : UTF-8/UCS2 support +Oracle Open Office Math : values +Oracle Open Office Math : values;absolute +Oracle Open Office Math : values;rounded as shown (Calc) +Oracle Open Office Math : variables +Oracle Open Office Math : variables;for paths +Oracle Open Office Math : variables;with right exponents +Oracle Open Office Math : VBA code +Oracle Open Office Math : VBA code;loading/saving documents with VBA code +Oracle Open Office Math : vector arrows as attributes +Oracle Open Office Math : version management +Oracle Open Office Math : version numbers of documents +Oracle Open Office Math : versions +Oracle Open Office Math : versions;comparing documents +Oracle Open Office Math : versions;file saving as, restriction +Oracle Open Office Math : versions;merging document versions +Oracle Open Office Math : versions;of a document +Oracle Open Office Math : versions;Oracle Open Office +Oracle Open Office Math : vertical arrangement of elements +Oracle Open Office Math : vertical bars +Oracle Open Office Math : vertical callouts +Oracle Open Office Math : vertical dots symbol +Oracle Open Office Math : vertical elements +Oracle Open Office Math : vertical scrollbars (Writer) +Oracle Open Office Math : vertical text boxes +Oracle Open Office Math : videos +Oracle Open Office Math : viewing +Oracle Open Office Math : viewing;databases +Oracle Open Office Math : viewing;file properties +Oracle Open Office Math : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Math : viewing;toolbars +Oracle Open Office Math : views +Oracle Open Office Math : views;creating database views (Base) +Oracle Open Office Math : views;defaults +Oracle Open Office Math : views;full screen +Oracle Open Office Math : views;icons +Oracle Open Office Math : views;maximum size +Oracle Open Office Math : views;scaling +Oracle Open Office Math : views;zooming out Oracle Open Office Math +Oracle Open Office Math : Visual Basic for Applications +Oracle Open Office Math : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Math : watermarks +Oracle Open Office Math : web documents +Oracle Open Office Math : web documents;XForms +Oracle Open Office Math : Web support +Oracle Open Office Math : WebCast export +Oracle Open Office Math : WebDAV over HTTPS +Oracle Open Office Math : weierstrass p symbol +Oracle Open Office Math : whole numbers +Oracle Open Office Math : wide circumflex attribute +Oracle Open Office Math : wide tilde attribute +Oracle Open Office Math : wide vector arrow attribute +Oracle Open Office Math : widowed brackets +Oracle Open Office Math : windows +Oracle Open Office Math : windows;docking +Oracle Open Office Math : windows;docking definition +Oracle Open Office Math : windows;hiding/showing/docking +Oracle Open Office Math : windows;new +Oracle Open Office Math : wizards +Oracle Open Office Math : wizards;agendas +Oracle Open Office Math : wizards;database queries +Oracle Open Office Math : wizards;database tables (Base) +Oracle Open Office Math : wizards;databases (Base) +Oracle Open Office Math : wizards;document converter +Oracle Open Office Math : wizards;Euro Converter +Oracle Open Office Math : wizards;faxes +Oracle Open Office Math : wizards;forms +Oracle Open Office Math : wizards;letters +Oracle Open Office Math : wizards;macros (Base) +Oracle Open Office Math : wizards;overview +Oracle Open Office Math : wizards;presentations +Oracle Open Office Math : wizards;reports +Oracle Open Office Math : Word documents +Oracle Open Office Math : Word documents;compatibility +Oracle Open Office Math : Word documents;saving as +Oracle Open Office Math : WordArt, see Fontwork +Oracle Open Office Math : words +Oracle Open Office Math : words;automatically replacing +Oracle Open Office Math : words;wrapping in cells +Oracle Open Office Math : words;wrapping in CTL +Oracle Open Office Math : working directory change +Oracle Open Office Math : wrapping text +Oracle Open Office Math : wrapping text;in cells +Oracle Open Office Math : wrapping text;in formulas +Oracle Open Office Math : write protection on/off +Oracle Open Office Math : writing aids options +Oracle Open Office Math : WYSIWYG in fonts lists +Oracle Open Office Math : XForms +Oracle Open Office Math : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Math : XForms;conditions +Oracle Open Office Math : XForms;opening/editing +Oracle Open Office Math : XML converters +Oracle Open Office Math : XML file formats +Oracle Open Office Math : XML filters +Oracle Open Office Math : XML filters;creating/testing +Oracle Open Office Math : XML filters;saving as package/installing/deleting +Oracle Open Office Math : XML filters;settings +Oracle Open Office Math : XML Forms, see XForms +Oracle Open Office Math : XSLT filters, see also XML filters +Oracle Open Office Math : years +Oracle Open Office Math : years;2-digit options +Oracle Open Office Math : zero values +Oracle Open Office Math : zero values;displaying (Calc) +Oracle Open Office Math : zooming +Oracle Open Office Math : zooming;page views +Oracle Open Office Math : zooming;pictures +Oracle Open Office Math : zooming;status bar +Oracle Open Office Math : zooming in on formula display +Oracle Open Office Math : zooming out on formula display +Oracle Open Office Writer : 3D charts +Oracle Open Office Writer : 3D text creation +Oracle Open Office Writer : abbreviation replacement +Oracle Open Office Writer : abbreviations +Oracle Open Office Writer : absolute hyperlinks +Oracle Open Office Writer : absolute saving of URLs +Oracle Open Office Writer : accents +Oracle Open Office Writer : Access databases (base) +Oracle Open Office Writer : access rights for database tables (Base) +Oracle Open Office Writer : accessibility +Oracle Open Office Writer : accessibility;general shortcuts +Oracle Open Office Writer : accessibility;options +Oracle Open Office Writer : accessibility;Oracle Open Office assistive technology +Oracle Open Office Writer : accessibility;Oracle Open Office features +Oracle Open Office Writer : accessibility;Oracle Open Office Writer +Oracle Open Office Writer : activating +Oracle Open Office Writer : activating;context menus +Oracle Open Office Writer : activating;Error Report Tool +Oracle Open Office Writer : activating;extended help tips +Oracle Open Office Writer : activating;plug-ins +Oracle Open Office Writer : ActiveX control +Oracle Open Office Writer : Adabas D databases (base) +Oracle Open Office Writer : add-ons, see UNO components +Oracle Open Office Writer : additional selection mode +Oracle Open Office Writer : address books +Oracle Open Office Writer : address books;exchanging +Oracle Open Office Writer : address books;LDAP server (Base) +Oracle Open Office Writer : address books;registering +Oracle Open Office Writer : address labels from databases +Oracle Open Office Writer : adjusting page margins and cell widths +Oracle Open Office Writer : ADO databases (Base) +Oracle Open Office Writer : Agenda Wizard +Oracle Open Office Writer : aging filter +Oracle Open Office Writer : aligning +Oracle Open Office Writer : aligning;2D charts +Oracle Open Office Writer : aligning;cells +Oracle Open Office Writer : aligning;objects +Oracle Open Office Writer : aligning;paragraphs +Oracle Open Office Writer : aligning;tables in text +Oracle Open Office Writer : aligning;text objects +Oracle Open Office Writer : aligning;titles in charts +Oracle Open Office Writer : alphabetical indexes +Oracle Open Office Writer : alternative fonts +Oracle Open Office Writer : ampersand symbol, see also operators +Oracle Open Office Writer : anchors +Oracle Open Office Writer : anchors;changing +Oracle Open Office Writer : anchors;displaying (Calc) +Oracle Open Office Writer : anchors;options +Oracle Open Office Writer : anchors;types/positions for draw objects +Oracle Open Office Writer : animations +Oracle Open Office Writer : animations;accessibility options +Oracle Open Office Writer : animations;text +Oracle Open Office Writer : appearance options +Oracle Open Office Writer : Arabic +Oracle Open Office Writer : Arabic;entering text +Oracle Open Office Writer : Arabic;language settings +Oracle Open Office Writer : area charts +Oracle Open Office Writer : areas +Oracle Open Office Writer : areas;bitmap patterns +Oracle Open Office Writer : areas;hatched/dotted +Oracle Open Office Writer : areas;shadows +Oracle Open Office Writer : areas;slanting +Oracle Open Office Writer : areas;styles +Oracle Open Office Writer : areas;transparency +Oracle Open Office Writer : arguments in command line +Oracle Open Office Writer : arithmetical operators in formulas +Oracle Open Office Writer : arranging +Oracle Open Office Writer : arranging;headings +Oracle Open Office Writer : arranging;objects +Oracle Open Office Writer : arrows +Oracle Open Office Writer : arrows;defining arrow heads +Oracle Open Office Writer : arrows;defining arrow lines +Oracle Open Office Writer : arrows;drawing in text +Oracle Open Office Writer : ASCII +Oracle Open Office Writer : ASCII;definition +Oracle Open Office Writer : Asian languages +Oracle Open Office Writer : Asian languages;enabling +Oracle Open Office Writer : Asian languages;search options +Oracle Open Office Writer : Asian languages;sorting paragraphs/table rows +Oracle Open Office Writer : Asian Phonetic Guide +Oracle Open Office Writer : Asian typography +Oracle Open Office Writer : aspect ratio +Oracle Open Office Writer : aspect ratio;resizing objects +Oracle Open Office Writer : assigning scripts +Oracle Open Office Writer : assistive technology in Oracle Open Office +Oracle Open Office Writer : attaching toolbars +Oracle Open Office Writer : attachments in e-mails +Oracle Open Office Writer : audio +Oracle Open Office Writer : auto reloading HTML documents +Oracle Open Office Writer : AutoAbstract function for sending text to presentations +Oracle Open Office Writer : AutoCaption function in Oracle Open Office Writer +Oracle Open Office Writer : AutoComplete function in text and list boxes +Oracle Open Office Writer : AutoCorrect function +Oracle Open Office Writer : AutoCorrect function;adding exceptions +Oracle Open Office Writer : AutoCorrect function;context menu +Oracle Open Office Writer : AutoCorrect function;headings +Oracle Open Office Writer : AutoCorrect function;options +Oracle Open Office Writer : AutoCorrect function;pictures and frames +Oracle Open Office Writer : AutoCorrect function;quotes +Oracle Open Office Writer : AutoCorrect function;replacement table +Oracle Open Office Writer : AutoCorrect function;smart tags +Oracle Open Office Writer : AutoCorrect function;switching on and off +Oracle Open Office Writer : AutoCorrect function;text documents +Oracle Open Office Writer : AutoCorrect function;turning off +Oracle Open Office Writer : AutoCorrect function;URL recognition +Oracle Open Office Writer : AutoCorrect function;word completion +Oracle Open Office Writer : AutoFormat function for tables +Oracle Open Office Writer : automatic bullets/numbers +Oracle Open Office Writer : automatic bullets/numbers;AutoCorrect function +Oracle Open Office Writer : automatic captions (Writer) +Oracle Open Office Writer : automatic changes on/off +Oracle Open Office Writer : automatic control focus +Oracle Open Office Writer : automatic heading formatting +Oracle Open Office Writer : automatic hyperlink formatting +Oracle Open Office Writer : automatic hyphenation in text +Oracle Open Office Writer : automatic line breaks +Oracle Open Office Writer : automatic lines/borders in text +Oracle Open Office Writer : automatic numbering +Oracle Open Office Writer : automatic numbering;of objects +Oracle Open Office Writer : automatic saving +Oracle Open Office Writer : automatic spellcheck +Oracle Open Office Writer : automatic word completion +Oracle Open Office Writer : AutoPilots, see wizards +Oracle Open Office Writer : AutoText +Oracle Open Office Writer : AutoValue (Base) +Oracle Open Office Writer : averages in charts +Oracle Open Office Writer : axes +Oracle Open Office Writer : axes;better scaling +Oracle Open Office Writer : axes;formatting +Oracle Open Office Writer : axes;formatting grids +Oracle Open Office Writer : axes;inserting grids +Oracle Open Office Writer : axes;interval marks +Oracle Open Office Writer : axes;showing axes in charts +Oracle Open Office Writer : axes in charts +Oracle Open Office Writer : backgrounds +Oracle Open Office Writer : backgrounds;defining colors/pictures +Oracle Open Office Writer : backgrounds;different pages +Oracle Open Office Writer : backgrounds;frames/sections/indexes +Oracle Open Office Writer : backgrounds;inserting from Gallery +Oracle Open Office Writer : backgrounds;printing +Oracle Open Office Writer : backgrounds;selecting +Oracle Open Office Writer : backgrounds;text objects +Oracle Open Office Writer : backing window +Oracle Open Office Writer : backups +Oracle Open Office Writer : backups;automatic +Oracle Open Office Writer : backups;documents +Oracle Open Office Writer : bar charts +Oracle Open Office Writer : Basic +Oracle Open Office Writer : Basic;fonts for source display +Oracle Open Office Writer : Basic;programming +Oracle Open Office Writer : Basic;recording macros +Oracle Open Office Writer : basic fonts +Oracle Open Office Writer : behavior of rows/columns +Oracle Open Office Writer : Bézier curves +Oracle Open Office Writer : Bézier curves;control points in presentations +Oracle Open Office Writer : bi-directional writing +Oracle Open Office Writer : bibliographies +Oracle Open Office Writer : binding space +Oracle Open Office Writer : bitmaps +Oracle Open Office Writer : bitmaps;inserting and editing +Oracle Open Office Writer : bitmaps;off for faster printing +Oracle Open Office Writer : bitmaps;patterns +Oracle Open Office Writer : black and white printing +Oracle Open Office Writer : black printing in Calc +Oracle Open Office Writer : blank pages with alternating page styles +Oracle Open Office Writer : block protect, see also widows or orphans +Oracle Open Office Writer : block selection mode +Oracle Open Office Writer : blocks of text +Oracle Open Office Writer : bold +Oracle Open Office Writer : bold;AutoFormat function +Oracle Open Office Writer : bold;formatting while typing +Oracle Open Office Writer : bold;text +Oracle Open Office Writer : book previews +Oracle Open Office Writer : book view +Oracle Open Office Writer : booklet printing +Oracle Open Office Writer : bookmarks +Oracle Open Office Writer : bookmarks;Help +Oracle Open Office Writer : bookmarks;inserting +Oracle Open Office Writer : bookmarks;positioning cursor +Oracle Open Office Writer : borders +Oracle Open Office Writer : borders;arranging +Oracle Open Office Writer : borders;automatic drawing on/off +Oracle Open Office Writer : borders;cells on screen (Calc) +Oracle Open Office Writer : borders;for footnotes/endnotes +Oracle Open Office Writer : borders;for headers/footers +Oracle Open Office Writer : borders;for objects +Oracle Open Office Writer : borders;for pages +Oracle Open Office Writer : borders;for paragraphs +Oracle Open Office Writer : borders;for tables +Oracle Open Office Writer : borders;for text tables +Oracle Open Office Writer : borders;shadows +Oracle Open Office Writer : borders;table boundaries (Writer) +Oracle Open Office Writer : borders, see also frames +Oracle Open Office Writer : bound fields +Oracle Open Office Writer : bound fields;controls +Oracle Open Office Writer : boundaries of tables (Writer) +Oracle Open Office Writer : break display (Writer) +Oracle Open Office Writer : brochures +Oracle Open Office Writer : brochures;printing individual +Oracle Open Office Writer : brochures;printing several +Oracle Open Office Writer : brush for copying styles +Oracle Open Office Writer : bubble charts +Oracle Open Office Writer : build numbers of Oracle Open Office +Oracle Open Office Writer : bullet lists +Oracle Open Office Writer : bullet lists;changing levels +Oracle Open Office Writer : bullet lists;creating while typing +Oracle Open Office Writer : bullet lists;formatting options +Oracle Open Office Writer : bullet lists;interrupting +Oracle Open Office Writer : bullet lists;turning on and off +Oracle Open Office Writer : bullets +Oracle Open Office Writer : bullets;adding and editing +Oracle Open Office Writer : bullets;paragraphs +Oracle Open Office Writer : bullets;replacing +Oracle Open Office Writer : bullets;turning off +Oracle Open Office Writer : bullets;using automatically +Oracle Open Office Writer : business cards +Oracle Open Office Writer : business cards;creating and synchronizing +Oracle Open Office Writer : business cards;using templates +Oracle Open Office Writer : button bars, see toolbars +Oracle Open Office Writer : buttons +Oracle Open Office Writer : buttons;adding push buttons +Oracle Open Office Writer : buttons;big/small +Oracle Open Office Writer : buttons;editing hyperlink buttons +Oracle Open Office Writer : buttons;form functions +Oracle Open Office Writer : buttons;toolbars +Oracle Open Office Writer : cache for graphics +Oracle Open Office Writer : calculating +Oracle Open Office Writer : calculating;across multiple text tables +Oracle Open Office Writer : calculating;formulas/mean values +Oracle Open Office Writer : calculating;in text +Oracle Open Office Writer : calculating;in text tables +Oracle Open Office Writer : calculating;iterative references (Calc) +Oracle Open Office Writer : calculating;regression curves +Oracle Open Office Writer : calculating;sums in text tables +Oracle Open Office Writer : callouts +Oracle Open Office Writer : callouts;drawings +Oracle Open Office Writer : capital letters +Oracle Open Office Writer : capital letters;AutoCorrect function +Oracle Open Office Writer : capital letters;avoiding after specific abbreviations +Oracle Open Office Writer : capital letters;changing to small letters +Oracle Open Office Writer : capital letters;changing to small letters after periods +Oracle Open Office Writer : capital letters;font effects +Oracle Open Office Writer : capital letters;starting paragraphs +Oracle Open Office Writer : captions +Oracle Open Office Writer : captions;adding chapter numbers +Oracle Open Office Writer : captions;automatic captions (Writer) +Oracle Open Office Writer : captions;inserting and editing +Oracle Open Office Writer : captions;tables/pictures/frames/OLE objects (Writer) +Oracle Open Office Writer : captions, see also labels/callouts +Oracle Open Office Writer : cascading update (Base) +Oracle Open Office Writer : case sensitivity +Oracle Open Office Writer : case sensitivity;comparing cell contents (Calc) +Oracle Open Office Writer : case sensitivity;searching +Oracle Open Office Writer : cell merges +Oracle Open Office Writer : cells +Oracle Open Office Writer : cells;adapting the width by keyboard +Oracle Open Office Writer : cells;aligning +Oracle Open Office Writer : cells;backgrounds +Oracle Open Office Writer : cells;borders in text tables +Oracle Open Office Writer : cells;calculating sums +Oracle Open Office Writer : cells;coloring (Calc) +Oracle Open Office Writer : cells;cursor positions after input (Calc) +Oracle Open Office Writer : cells;enlarging and reducing in text tables +Oracle Open Office Writer : cells;formatting without effect (Calc) +Oracle Open Office Writer : cells;inserting from spreadsheets +Oracle Open Office Writer : cells;line breaks +Oracle Open Office Writer : cells;linked to controls +Oracle Open Office Writer : cells;merging/splitting +Oracle Open Office Writer : cells;number of +Oracle Open Office Writer : cells;pasting +Oracle Open Office Writer : cells;protecting/unprotecting +Oracle Open Office Writer : cells;resetting formats +Oracle Open Office Writer : cells;showing grid lines (Calc) +Oracle Open Office Writer : centered text +Oracle Open Office Writer : centering +Oracle Open Office Writer : centering;images on HTML pages +Oracle Open Office Writer : centering;text frames on pages +Oracle Open Office Writer : centimeters +Oracle Open Office Writer : central documents +Oracle Open Office Writer : certificates +Oracle Open Office Writer : changes +Oracle Open Office Writer : changes;accepting or rejecting +Oracle Open Office Writer : changes;automatic +Oracle Open Office Writer : changes;comparing to original +Oracle Open Office Writer : changes;protecting +Oracle Open Office Writer : changes;recording +Oracle Open Office Writer : changes;review function +Oracle Open Office Writer : changes;showing +Oracle Open Office Writer : changing +Oracle Open Office Writer : changing;bulleting symbols +Oracle Open Office Writer : changing;cases of text +Oracle Open Office Writer : changing;document titles +Oracle Open Office Writer : changing;field shadings +Oracle Open Office Writer : changing;fields, into text +Oracle Open Office Writer : changing;file associations in Setup program +Oracle Open Office Writer : changing;icon sizes +Oracle Open Office Writer : changing;indents +Oracle Open Office Writer : changing;links +Oracle Open Office Writer : changing;outline levels +Oracle Open Office Writer : changing;page backgrounds +Oracle Open Office Writer : changing;starting numbers in lists +Oracle Open Office Writer : changing;work directory +Oracle Open Office Writer : changing, see also editing and replacing +Oracle Open Office Writer : chapter names in headers +Oracle Open Office Writer : chapter numbering +Oracle Open Office Writer : chapter numbers in captions +Oracle Open Office Writer : character styles +Oracle Open Office Writer : character styles;language selection +Oracle Open Office Writer : character styles;style categories +Oracle Open Office Writer : characters +Oracle Open Office Writer : characters;alternative fonts +Oracle Open Office Writer : characters;Asian layout +Oracle Open Office Writer : characters;bold +Oracle Open Office Writer : characters;coloring +Oracle Open Office Writer : characters;counting +Oracle Open Office Writer : characters;displaying only on screen (Writer) +Oracle Open Office Writer : characters;enabling CTL and Asian characters +Oracle Open Office Writer : characters;finding all +Oracle Open Office Writer : characters;font effects +Oracle Open Office Writer : characters;fonts and formats +Oracle Open Office Writer : characters;hyperlinks +Oracle Open Office Writer : characters;italics +Oracle Open Office Writer : characters;language selection +Oracle Open Office Writer : characters;shadowed +Oracle Open Office Writer : characters;spacing +Oracle Open Office Writer : characters;special +Oracle Open Office Writer : characters;subscript and superscript +Oracle Open Office Writer : characters;underlining +Oracle Open Office Writer : characters;uppercase or lowercase +Oracle Open Office Writer : charcoal sketches filter +Oracle Open Office Writer : chart legends +Oracle Open Office Writer : chart legends;hiding +Oracle Open Office Writer : chart legends;showing icons with labels +Oracle Open Office Writer : chart types +Oracle Open Office Writer : chart types;area +Oracle Open Office Writer : chart types;bubble +Oracle Open Office Writer : chart types;column and bar +Oracle Open Office Writer : chart types;column and line +Oracle Open Office Writer : chart types;line +Oracle Open Office Writer : chart types;net +Oracle Open Office Writer : chart types;pie/donut +Oracle Open Office Writer : chart types;stock +Oracle Open Office Writer : chart types;XY (scatter) +Oracle Open Office Writer : charts +Oracle Open Office Writer : charts;3D views +Oracle Open Office Writer : charts;aligning +Oracle Open Office Writer : charts;arranging within stacks +Oracle Open Office Writer : charts;bars with textures +Oracle Open Office Writer : charts;borders +Oracle Open Office Writer : charts;choosing chart types +Oracle Open Office Writer : charts;colors +Oracle Open Office Writer : charts;copying from Calc into Writer +Oracle Open Office Writer : charts;copying with link to source cell range +Oracle Open Office Writer : charts;data labels +Oracle Open Office Writer : charts;displaying (Calc) +Oracle Open Office Writer : charts;editing axes +Oracle Open Office Writer : charts;editing data +Oracle Open Office Writer : charts;editing legends +Oracle Open Office Writer : charts;editing titles +Oracle Open Office Writer : charts;formatting areas +Oracle Open Office Writer : charts;formatting floors +Oracle Open Office Writer : charts;formatting walls +Oracle Open Office Writer : charts;inserting +Oracle Open Office Writer : charts;labeling +Oracle Open Office Writer : charts;overview +Oracle Open Office Writer : charts;positioning axes +Oracle Open Office Writer : charts;properties +Oracle Open Office Writer : charts;reorganizing +Oracle Open Office Writer : charts;scaling axes +Oracle Open Office Writer : charts;scaling text +Oracle Open Office Writer : charts;shortcuts +Oracle Open Office Writer : charts;showing axes +Oracle Open Office Writer : charts;updating automatically (Writer) +Oracle Open Office Writer : check box creation +Oracle Open Office Writer : checking spelling +Oracle Open Office Writer : checking spelling;all languages +Oracle Open Office Writer : checking spelling;manually +Oracle Open Office Writer : checking spelling;while typing +Oracle Open Office Writer : Chinese writing systems +Oracle Open Office Writer : choosing printers +Oracle Open Office Writer : circle drawings +Oracle Open Office Writer : Client Side ImageMap +Oracle Open Office Writer : clipboard +Oracle Open Office Writer : clipboard;calculating in text +Oracle Open Office Writer : clipboard;cutting +Oracle Open Office Writer : clipboard;pasting +Oracle Open Office Writer : clipboard;pasting formatted/unformatted text +Oracle Open Office Writer : clipboard;selection clipboard +Oracle Open Office Writer : clipboard;Unix +Oracle Open Office Writer : Clippy, see Help Agent +Oracle Open Office Writer : closing +Oracle Open Office Writer : closing;documents +Oracle Open Office Writer : closing;toolbars +Oracle Open Office Writer : collaboration +Oracle Open Office Writer : color bar +Oracle Open Office Writer : colors +Oracle Open Office Writer : colors;adding +Oracle Open Office Writer : colors;appearance +Oracle Open Office Writer : colors;backgrounds +Oracle Open Office Writer : colors;charts +Oracle Open Office Writer : colors;fonts +Oracle Open Office Writer : colors;grid lines and cells (Calc) +Oracle Open Office Writer : colors;ignored text color +Oracle Open Office Writer : colors;models +Oracle Open Office Writer : colors;not printing +Oracle Open Office Writer : colors;printing in grayscale +Oracle Open Office Writer : colors;restriction (Calc) +Oracle Open Office Writer : colors;selection +Oracle Open Office Writer : column and line charts +Oracle Open Office Writer : column charts +Oracle Open Office Writer : column headers +Oracle Open Office Writer : column headers;displaying (Calc) +Oracle Open Office Writer : column headers;highlighting (Calc) +Oracle Open Office Writer : columns +Oracle Open Office Writer : columns;breaks in text tables +Oracle Open Office Writer : columns;inserting in tables +Oracle Open Office Writer : columns;inserting/deleting in tables by keyboard +Oracle Open Office Writer : columns;on text pages +Oracle Open Office Writer : columns;selecting +Oracle Open Office Writer : columns;setting with the mouse +Oracle Open Office Writer : combination charts +Oracle Open Office Writer : combo box creation +Oracle Open Office Writer : command button creation +Oracle Open Office Writer : command buttons, see push buttons +Oracle Open Office Writer : command line parameters +Oracle Open Office Writer : commands +Oracle Open Office Writer : commands;repeating +Oracle Open Office Writer : commands;SQL +Oracle Open Office Writer : comments +Oracle Open Office Writer : comments;inserting/editing/deleting/printing +Oracle Open Office Writer : comments;on changes +Oracle Open Office Writer : comments;printing in text +Oracle Open Office Writer : common terms +Oracle Open Office Writer : common terms;Chinese dictionary +Oracle Open Office Writer : common terms;glossaries +Oracle Open Office Writer : common terms;Internet glossary +Oracle Open Office Writer : comparisons +Oracle Open Office Writer : comparisons;document versions +Oracle Open Office Writer : comparisons;operators in standard filter dialog +Oracle Open Office Writer : compatibility settings for MS Word import +Oracle Open Office Writer : complete screen view +Oracle Open Office Writer : completion of words +Oracle Open Office Writer : complex text layout +Oracle Open Office Writer : complex text layout;definition +Oracle Open Office Writer : complex text layout;enabling +Oracle Open Office Writer : complex text layout, see CTL +Oracle Open Office Writer : compose key to insert special characters +Oracle Open Office Writer : concatenation, see ampersand symbol +Oracle Open Office Writer : concordance files +Oracle Open Office Writer : concordance files;definition +Oracle Open Office Writer : concordance files;indexes +Oracle Open Office Writer : conditional separators +Oracle Open Office Writer : conditional styles +Oracle Open Office Writer : conditional text +Oracle Open Office Writer : conditional text;page counts +Oracle Open Office Writer : conditional text;setting up +Oracle Open Office Writer : conditions +Oracle Open Office Writer : conditions;in fields and sections +Oracle Open Office Writer : conditions;in number formats +Oracle Open Office Writer : conditions;items in Data Navigator +Oracle Open Office Writer : conditions;user data fields +Oracle Open Office Writer : Configuration Manager +Oracle Open Office Writer : configuring +Oracle Open Office Writer : configuring;fax icon +Oracle Open Office Writer : configuring;Oracle Open Office +Oracle Open Office Writer : configuring;toolbars +Oracle Open Office Writer : connections to data sources (Base) +Oracle Open Office Writer : contents protection +Oracle Open Office Writer : context menus +Oracle Open Office Writer : continuation pages +Oracle Open Office Writer : contour editor +Oracle Open Office Writer : contour wrap +Oracle Open Office Writer : control point display in presentations +Oracle Open Office Writer : controls +Oracle Open Office Writer : controls;activating in forms +Oracle Open Office Writer : controls;adding to documents +Oracle Open Office Writer : controls;arranging in forms +Oracle Open Office Writer : controls;arranging within stacks +Oracle Open Office Writer : controls;assigning data sources +Oracle Open Office Writer : controls;assigning macros (Basic) +Oracle Open Office Writer : controls;bound fields/list contents/linked cells +Oracle Open Office Writer : controls;events +Oracle Open Office Writer : controls;focus +Oracle Open Office Writer : controls;formatted fields +Oracle Open Office Writer : controls;grouping +Oracle Open Office Writer : controls;hidden +Oracle Open Office Writer : controls;inserting +Oracle Open Office Writer : controls;multi-line titles +Oracle Open Office Writer : controls;positions and sizes +Oracle Open Office Writer : controls;printing +Oracle Open Office Writer : controls;properties of form controls +Oracle Open Office Writer : controls;properties of table controls +Oracle Open Office Writer : controls;reference by SQL +Oracle Open Office Writer : controls;rich text control +Oracle Open Office Writer : controls;select mode +Oracle Open Office Writer : controls;showing (Writer) +Oracle Open Office Writer : converters +Oracle Open Office Writer : converters;document converter +Oracle Open Office Writer : converters;Euro converter +Oracle Open Office Writer : converters;PostScript, UNIX +Oracle Open Office Writer : converters;XML +Oracle Open Office Writer : converting +Oracle Open Office Writer : converting;fields, into text +Oracle Open Office Writer : converting;Hangul/Hanja +Oracle Open Office Writer : converting;metrics +Oracle Open Office Writer : converting;Microsoft documents +Oracle Open Office Writer : converting;Oracle Open Office documents +Oracle Open Office Writer : converting;Pocket PC formats +Oracle Open Office Writer : converting;sections, into normal text +Oracle Open Office Writer : converting;text, into tables +Oracle Open Office Writer : copies +Oracle Open Office Writer : copies;printing +Oracle Open Office Writer : copies;removing line breaks +Oracle Open Office Writer : copying +Oracle Open Office Writer : copying;by drag and drop +Oracle Open Office Writer : copying;charts from Oracle Open Office Calc +Oracle Open Office Writer : copying;data from text documents +Oracle Open Office Writer : copying;datasource records in spreadsheets +Oracle Open Office Writer : copying;draw objects +Oracle Open Office Writer : copying;draw objects between documents +Oracle Open Office Writer : copying;formatting +Oracle Open Office Writer : copying;from data source view +Oracle Open Office Writer : copying;from Gallery +Oracle Open Office Writer : copying;in Unix +Oracle Open Office Writer : copying;pictures, between documents +Oracle Open Office Writer : copying;sheet areas, to text documents +Oracle Open Office Writer : copying;styles, by fill format mode +Oracle Open Office Writer : copying;styles, from selections +Oracle Open Office Writer : copying;text sections +Oracle Open Office Writer : copying;to Gallery +Oracle Open Office Writer : copyright for Oracle Open Office +Oracle Open Office Writer : corner roundings +Oracle Open Office Writer : counting words +Oracle Open Office Writer : crash reports +Oracle Open Office Writer : criteria of query design (Base) +Oracle Open Office Writer : cropping pictures +Oracle Open Office Writer : cross-references +Oracle Open Office Writer : cross-references;inserting and updating +Oracle Open Office Writer : cross-references;inserting with Navigator +Oracle Open Office Writer : cross-references;modifying +Oracle Open Office Writer : CTL +Oracle Open Office Writer : CTL;(not) wrapping words +Oracle Open Office Writer : CTL;complex text layout languages +Oracle Open Office Writer : CTL;definition +Oracle Open Office Writer : CTL;options +Oracle Open Office Writer : cube drawing +Oracle Open Office Writer : currencies +Oracle Open Office Writer : currencies;converters +Oracle Open Office Writer : currencies;format codes +Oracle Open Office Writer : currency field creation +Oracle Open Office Writer : currency formats +Oracle Open Office Writer : cursor +Oracle Open Office Writer : cursor;allowing in protected areas (Writer) +Oracle Open Office Writer : cursor;direct cursor +Oracle Open Office Writer : cursor;in read-only text +Oracle Open Office Writer : cursor;quickly moving to an object +Oracle Open Office Writer : curves +Oracle Open Office Writer : curves;editing points +Oracle Open Office Writer : curves;properties in line charts/XY charts +Oracle Open Office Writer : custom dictionaries +Oracle Open Office Writer : custom dictionaries;editing +Oracle Open Office Writer : custom dictionaries;removing words from +Oracle Open Office Writer : custom hyphens (Writer) +Oracle Open Office Writer : custom quotes +Oracle Open Office Writer : custom templates +Oracle Open Office Writer : customizing +Oracle Open Office Writer : customizing;events +Oracle Open Office Writer : customizing;keyboard +Oracle Open Office Writer : customizing;menus +Oracle Open Office Writer : customizing;Oracle Open Office +Oracle Open Office Writer : customizing;round corners +Oracle Open Office Writer : customizing;toolbars +Oracle Open Office Writer : cutting +Oracle Open Office Writer : dashes +Oracle Open Office Writer : data +Oracle Open Office Writer : data;filtering in forms +Oracle Open Office Writer : data;forms and subforms +Oracle Open Office Writer : data;read-only +Oracle Open Office Writer : data;sorting in forms +Oracle Open Office Writer : data;user data +Oracle Open Office Writer : data binding change in XForms +Oracle Open Office Writer : data labels in charts +Oracle Open Office Writer : Data Navigator +Oracle Open Office Writer : Data Navigator;adding/editing items +Oracle Open Office Writer : Data Navigator;display options +Oracle Open Office Writer : data ranges in charts +Oracle Open Office Writer : data series +Oracle Open Office Writer : data source browser +Oracle Open Office Writer : data source explorer +Oracle Open Office Writer : data source view +Oracle Open Office Writer : data source view;drag and drop +Oracle Open Office Writer : data source view;overview +Oracle Open Office Writer : data source view;showing +Oracle Open Office Writer : data sources +Oracle Open Office Writer : data sources;as tables +Oracle Open Office Writer : data sources;connection settings (Base) +Oracle Open Office Writer : data sources;copying records to spreadsheets +Oracle Open Office Writer : data sources;displaying current +Oracle Open Office Writer : data sources;LDAP server (Base) +Oracle Open Office Writer : data sources;Oracle Open Office Base +Oracle Open Office Writer : data sources;registering address books +Oracle Open Office Writer : data sources;reports +Oracle Open Office Writer : data sources;setting for stock charts +Oracle Open Office Writer : data sources;viewing +Oracle Open Office Writer : data structure of XForms +Oracle Open Office Writer : data values in charts +Oracle Open Office Writer : data, see also values +Oracle Open Office Writer : database contents +Oracle Open Office Writer : database contents;inserting as tables +Oracle Open Office Writer : database contents;inserting as text +Oracle Open Office Writer : database reports +Oracle Open Office Writer : Database Wizard (Base) +Oracle Open Office Writer : databases +Oracle Open Office Writer : databases;administration through SQL (Base) +Oracle Open Office Writer : databases;ADO (Base) +Oracle Open Office Writer : databases;connecting (Base) +Oracle Open Office Writer : databases;creating +Oracle Open Office Writer : databases;creating bibliographies +Oracle Open Office Writer : databases;creating labels +Oracle Open Office Writer : databases;creating queries +Oracle Open Office Writer : databases;creating reports +Oracle Open Office Writer : databases;creating tables +Oracle Open Office Writer : databases;deleting (Base) +Oracle Open Office Writer : databases;drag and drop (Base) +Oracle Open Office Writer : databases;editing tables +Oracle Open Office Writer : databases;exchanging +Oracle Open Office Writer : databases;form filters +Oracle Open Office Writer : databases;formats (Base) +Oracle Open Office Writer : databases;importing/exporting +Oracle Open Office Writer : databases;in conditions +Oracle Open Office Writer : databases;JDBC (Base) +Oracle Open Office Writer : databases;main page (Base) +Oracle Open Office Writer : databases;ODBC (Base) +Oracle Open Office Writer : databases;overview +Oracle Open Office Writer : databases;registering (Base) +Oracle Open Office Writer : databases;searching records +Oracle Open Office Writer : databases;shortcut keys +Oracle Open Office Writer : databases;sorting +Oracle Open Office Writer : databases;standard filters +Oracle Open Office Writer : databases;text formats +Oracle Open Office Writer : databases;viewing +Oracle Open Office Writer : date fields +Oracle Open Office Writer : date fields;creating +Oracle Open Office Writer : date fields;fixed/variable +Oracle Open Office Writer : date fields;HTML +Oracle Open Office Writer : date fields;properties +Oracle Open Office Writer : date formats +Oracle Open Office Writer : dates +Oracle Open Office Writer : dates;default (Calc) +Oracle Open Office Writer : dates;formatting automatically in tables +Oracle Open Office Writer : dates;inserting +Oracle Open Office Writer : dates;printing in presentations +Oracle Open Office Writer : dates;start 1900/01/01 (Calc) +Oracle Open Office Writer : dates;start 1904/01/01 (Calc) +Oracle Open Office Writer : dBASE +Oracle Open Office Writer : dBASE;database settings (Base) +Oracle Open Office Writer : DDE +Oracle Open Office Writer : DDE;command for inserting sections +Oracle Open Office Writer : DDE;definition +Oracle Open Office Writer : DDE;inserting tables +Oracle Open Office Writer : deactivating +Oracle Open Office Writer : deactivating;plug-ins +Oracle Open Office Writer : deactivating;word completion +Oracle Open Office Writer : decimal places displayed (Calc) +Oracle Open Office Writer : decimal separator key +Oracle Open Office Writer : decimal tab stops +Oracle Open Office Writer : default directories +Oracle Open Office Writer : default filters, see standard filters +Oracle Open Office Writer : default printer +Oracle Open Office Writer : default printer;setting up +Oracle Open Office Writer : default printer;UNIX +Oracle Open Office Writer : default templates +Oracle Open Office Writer : default templates;changing +Oracle Open Office Writer : default templates;defining/resetting +Oracle Open Office Writer : default templates;organizing +Oracle Open Office Writer : defaults +Oracle Open Office Writer : defaults;document formats in file dialogs +Oracle Open Office Writer : defaults;documents +Oracle Open Office Writer : defaults;file formats in Oracle Open Office +Oracle Open Office Writer : defaults;fonts +Oracle Open Office Writer : defaults;grids (Writer/Calc) +Oracle Open Office Writer : defaults;languages +Oracle Open Office Writer : defaults;number formats +Oracle Open Office Writer : defaults;of saving +Oracle Open Office Writer : defaults;program configuration +Oracle Open Office Writer : defaults;tab stops in text +Oracle Open Office Writer : defaults;templates +Oracle Open Office Writer : defaults;views +Oracle Open Office Writer : defining +Oracle Open Office Writer : defining;arrowheads and other line ends +Oracle Open Office Writer : defining;colors +Oracle Open Office Writer : defining;conditions +Oracle Open Office Writer : defining;headers/footers +Oracle Open Office Writer : defining;line styles +Oracle Open Office Writer : defining;object borders +Oracle Open Office Writer : defining;page borders +Oracle Open Office Writer : defining;page styles +Oracle Open Office Writer : defining;paragraph borders +Oracle Open Office Writer : defining;queries (Base) +Oracle Open Office Writer : defining;starting page numbers +Oracle Open Office Writer : defining;table borders +Oracle Open Office Writer : defining;table borders in Writer +Oracle Open Office Writer : deleting +Oracle Open Office Writer : deleting;all direct formatting +Oracle Open Office Writer : deleting;comments +Oracle Open Office Writer : deleting;databases (Base) +Oracle Open Office Writer : deleting;entries of indexes/tables of contents +Oracle Open Office Writer : deleting;footnotes +Oracle Open Office Writer : deleting;heading numbers +Oracle Open Office Writer : deleting;hyperlinks +Oracle Open Office Writer : deleting;indexes/tables of contents +Oracle Open Office Writer : deleting;line breaks +Oracle Open Office Writer : deleting;lines in text +Oracle Open Office Writer : deleting;models/instances +Oracle Open Office Writer : deleting;namespaces in XForms +Oracle Open Office Writer : deleting;numbers in lists +Oracle Open Office Writer : deleting;page breaks +Oracle Open Office Writer : deleting;rows/columns, by keyboard +Oracle Open Office Writer : deleting;tab stops +Oracle Open Office Writer : deleting;tables or table contents +Oracle Open Office Writer : deleting;templates +Oracle Open Office Writer : deleting;words in user-defined dictionaries +Oracle Open Office Writer : deleting;XML filters +Oracle Open Office Writer : demoting heading levels +Oracle Open Office Writer : depth stagger +Oracle Open Office Writer : descriptions for objects +Oracle Open Office Writer : design mode after saving +Oracle Open Office Writer : design view +Oracle Open Office Writer : design view;creating forms +Oracle Open Office Writer : design view;queries/views (Base) +Oracle Open Office Writer : designing +Oracle Open Office Writer : designing;database tables +Oracle Open Office Writer : designing;fonts +Oracle Open Office Writer : designing;queries (Base) +Oracle Open Office Writer : detaching toolbars +Oracle Open Office Writer : dictionaries +Oracle Open Office Writer : dictionaries;common terms in simplified and traditional chinese +Oracle Open Office Writer : dictionaries;creating +Oracle Open Office Writer : dictionaries;editing user-defined +Oracle Open Office Writer : dictionaries;spellcheck +Oracle Open Office Writer : dictionaries;thesaurus +Oracle Open Office Writer : dictionaries, see also languages +Oracle Open Office Writer : digital signatures +Oracle Open Office Writer : digital signatures;getting/managing/applying +Oracle Open Office Writer : digital signatures;overview +Oracle Open Office Writer : digital signatures;WebDAV over HTTPS +Oracle Open Office Writer : direct cursor +Oracle Open Office Writer : direct cursor;restriction +Oracle Open Office Writer : direct cursor;settings +Oracle Open Office Writer : direct formatting +Oracle Open Office Writer : direct formatting;exiting +Oracle Open Office Writer : direct formatting;undoing all +Oracle Open Office Writer : directories +Oracle Open Office Writer : directories;creating new +Oracle Open Office Writer : directories;directory structure +Oracle Open Office Writer : disabled persons +Oracle Open Office Writer : disabling +Oracle Open Office Writer : disabling;field highlighting +Oracle Open Office Writer : disabling;smart tags +Oracle Open Office Writer : disabling;word completion +Oracle Open Office Writer : displaying +Oracle Open Office Writer : displaying;comments in text documents +Oracle Open Office Writer : displaying;hidden text +Oracle Open Office Writer : displaying;non-printing characters (Writer) +Oracle Open Office Writer : displaying;pictures and objects (Writer) +Oracle Open Office Writer : displaying;tables (Writer) +Oracle Open Office Writer : displaying;zero values (Calc) +Oracle Open Office Writer : distances +Oracle Open Office Writer : distinct values in SQL queries +Oracle Open Office Writer : distorting in drawings +Oracle Open Office Writer : distributing XML filters +Oracle Open Office Writer : dividing tables +Oracle Open Office Writer : DocInformation fields +Oracle Open Office Writer : docking +Oracle Open Office Writer : docking;definition +Oracle Open Office Writer : docking;Navigator window +Oracle Open Office Writer : docking;toolbars +Oracle Open Office Writer : docking;windows +Oracle Open Office Writer : Document Converter Wizard +Oracle Open Office Writer : Document Map, see Navigator +Oracle Open Office Writer : document templates +Oracle Open Office Writer : document types in Oracle Open Office +Oracle Open Office Writer : documents +Oracle Open Office Writer : documents;changing titles +Oracle Open Office Writer : documents;closing +Oracle Open Office Writer : documents;comparing +Oracle Open Office Writer : documents;contents as lists +Oracle Open Office Writer : documents;editing time +Oracle Open Office Writer : documents;exporting +Oracle Open Office Writer : documents;importing +Oracle Open Office Writer : documents;languages +Oracle Open Office Writer : documents;master documents and subdocuments +Oracle Open Office Writer : documents;measurement units in +Oracle Open Office Writer : documents;merging +Oracle Open Office Writer : documents;number of pages/tables/sheets +Oracle Open Office Writer : documents;number of words/characters +Oracle Open Office Writer : documents;opening +Oracle Open Office Writer : documents;opening in design mode +Oracle Open Office Writer : documents;opening with templates +Oracle Open Office Writer : documents;organizing +Oracle Open Office Writer : documents;printing +Oracle Open Office Writer : documents;read-only +Oracle Open Office Writer : documents;reloading +Oracle Open Office Writer : documents;saving +Oracle Open Office Writer : documents;saving automatically +Oracle Open Office Writer : documents;saving in other formats +Oracle Open Office Writer : documents;sending as e-mail +Oracle Open Office Writer : documents;styles changed +Oracle Open Office Writer : documents;version management +Oracle Open Office Writer : documents;version numbers +Oracle Open Office Writer : donut charts +Oracle Open Office Writer : dotted areas +Oracle Open Office Writer : double-line spacing in paragraphs +Oracle Open Office Writer : double-line writing in Asian layout +Oracle Open Office Writer : drag and drop +Oracle Open Office Writer : drag and drop;copying and pasting text +Oracle Open Office Writer : drag and drop;creating new styles +Oracle Open Office Writer : drag and drop;data source view +Oracle Open Office Writer : drag and drop;from Gallery to draw objects +Oracle Open Office Writer : drag and drop;overview +Oracle Open Office Writer : drag and drop;pictures +Oracle Open Office Writer : drag and drop;to Gallery +Oracle Open Office Writer : draw objects +Oracle Open Office Writer : draw objects;adding/editing/copying +Oracle Open Office Writer : draw objects;anchoring +Oracle Open Office Writer : draw objects;arranging within stacks +Oracle Open Office Writer : draw objects;copying between documents +Oracle Open Office Writer : draw objects;cross-referencing +Oracle Open Office Writer : draw objects;displaying (Calc) +Oracle Open Office Writer : draw objects;dropping Gallery pictures +Oracle Open Office Writer : draw objects;flipping +Oracle Open Office Writer : draw objects;inserting captions +Oracle Open Office Writer : draw objects;legends +Oracle Open Office Writer : draw objects;positioning and resizing +Oracle Open Office Writer : draw objects;protecting +Oracle Open Office Writer : draw objects;slanting +Oracle Open Office Writer : draw objects;text in +Oracle Open Office Writer : Drawing bar +Oracle Open Office Writer : drawing lines in text +Oracle Open Office Writer : drawings +Oracle Open Office Writer : drawings;creating/opening +Oracle Open Office Writer : drawings;languages +Oracle Open Office Writer : drawings;printing +Oracle Open Office Writer : drawings;printing defaults +Oracle Open Office Writer : drawings;printing in text documents +Oracle Open Office Writer : drawings;saving +Oracle Open Office Writer : drawings;saving automatically +Oracle Open Office Writer : drawings;saving in other formats +Oracle Open Office Writer : drawings;sending as e-mail +Oracle Open Office Writer : drawings;showing (Writer) +Oracle Open Office Writer : drawings, see also draw objects +Oracle Open Office Writer : drop caps insertion +Oracle Open Office Writer : drop-down lists in form functions +Oracle Open Office Writer : e-mail attachments +Oracle Open Office Writer : Edit File icon +Oracle Open Office Writer : edit mode +Oracle Open Office Writer : edit mode;after opening +Oracle Open Office Writer : edit mode;through Enter key (Calc) +Oracle Open Office Writer : Edit Points bar +Oracle Open Office Writer : editing +Oracle Open Office Writer : editing;captions +Oracle Open Office Writer : editing;chart axes +Oracle Open Office Writer : editing;chart data +Oracle Open Office Writer : editing;chart legends +Oracle Open Office Writer : editing;chart titles +Oracle Open Office Writer : editing;comments +Oracle Open Office Writer : editing;concordance files +Oracle Open Office Writer : editing;cross-references +Oracle Open Office Writer : editing;data binding of XForms +Oracle Open Office Writer : editing;database tables and queries +Oracle Open Office Writer : editing;draw objects +Oracle Open Office Writer : editing;Fontwork objects +Oracle Open Office Writer : editing;footnotes/endnotes +Oracle Open Office Writer : editing;hyperlinks +Oracle Open Office Writer : editing;index format +Oracle Open Office Writer : editing;indexes/tables of contents +Oracle Open Office Writer : editing;menus +Oracle Open Office Writer : editing;objects +Oracle Open Office Writer : editing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Writer : editing;pictures +Oracle Open Office Writer : editing;reports +Oracle Open Office Writer : editing;sections +Oracle Open Office Writer : editing;shortcut keys +Oracle Open Office Writer : editing;tab stops +Oracle Open Office Writer : editing;table/index entries +Oracle Open Office Writer : editing;templates +Oracle Open Office Writer : editing;text frames +Oracle Open Office Writer : editing;titles +Oracle Open Office Writer : editing;toolbars +Oracle Open Office Writer : editing;undoing +Oracle Open Office Writer : editing;XForms +Oracle Open Office Writer : editing time of documents +Oracle Open Office Writer : editors +Oracle Open Office Writer : editors;contour editor +Oracle Open Office Writer : editors;formula editor +Oracle Open Office Writer : editors;ImageMap editor +Oracle Open Office Writer : effects +Oracle Open Office Writer : effects;font positions +Oracle Open Office Writer : effects;fonts +Oracle Open Office Writer : effects;Fontwork icons +Oracle Open Office Writer : effects;text animation +Oracle Open Office Writer : ellipse drawing +Oracle Open Office Writer : emphasizing text +Oracle Open Office Writer : empty documents +Oracle Open Office Writer : empty page with alternating page styles +Oracle Open Office Writer : empty paragraph removal +Oracle Open Office Writer : encryption of contents +Oracle Open Office Writer : endnotes +Oracle Open Office Writer : endnotes;inserting and editing +Oracle Open Office Writer : endnotes;spacing +Oracle Open Office Writer : enlarging columns,cells and table rows +Oracle Open Office Writer : entering groups +Oracle Open Office Writer : entering text from right to left +Oracle Open Office Writer : entering text with direct cursor +Oracle Open Office Writer : entries +Oracle Open Office Writer : entries;bibliographies +Oracle Open Office Writer : entries;defining in indexes/tables of contents +Oracle Open Office Writer : entries;in tables of contents, as hyperlinks +Oracle Open Office Writer : envelopes +Oracle Open Office Writer : equal sign, see also operators +Oracle Open Office Writer : equations in formula editor +Oracle Open Office Writer : error bars in charts +Oracle Open Office Writer : error indicators in charts +Oracle Open Office Writer : Error Report Tool +Oracle Open Office Writer : Euro +Oracle Open Office Writer : Euro;currency formats +Oracle Open Office Writer : Euro;Euro Converter Wizard +Oracle Open Office Writer : even/odd pages +Oracle Open Office Writer : even/odd pages;formatting +Oracle Open Office Writer : even/odd pages;printing +Oracle Open Office Writer : events +Oracle Open Office Writer : events;assigning scripts +Oracle Open Office Writer : events;controls +Oracle Open Office Writer : events;customizing +Oracle Open Office Writer : events;in forms +Oracle Open Office Writer : examples for regular expressions +Oracle Open Office Writer : Excel +Oracle Open Office Writer : Excel;saving as +Oracle Open Office Writer : Excel;search criteria +Oracle Open Office Writer : exceptions +Oracle Open Office Writer : exceptions;AutoCorrect function +Oracle Open Office Writer : exceptions;user-defined dictionaries +Oracle Open Office Writer : exchanging databases +Oracle Open Office Writer : exchanging, see also replacing +Oracle Open Office Writer : executing SQL commands +Oracle Open Office Writer : exiting +Oracle Open Office Writer : exiting;direct formatting +Oracle Open Office Writer : exiting;groups +Oracle Open Office Writer : exiting;Oracle Open Office +Oracle Open Office Writer : expanding formatting (Calc) +Oracle Open Office Writer : explorer of data sources +Oracle Open Office Writer : export filters +Oracle Open Office Writer : exporting +Oracle Open Office Writer : exporting;bitmaps +Oracle Open Office Writer : exporting;HTML and text documents +Oracle Open Office Writer : exporting;Microsoft Office documents with VBA code +Oracle Open Office Writer : exporting;spreadsheets to text format +Oracle Open Office Writer : exporting;templates +Oracle Open Office Writer : exporting;to foreign formats +Oracle Open Office Writer : exporting;to HTML +Oracle Open Office Writer : exporting;to Microsoft Office formats +Oracle Open Office Writer : exporting;to PDF +Oracle Open Office Writer : exporting;to PostScript format +Oracle Open Office Writer : exporting;to XML +Oracle Open Office Writer : exporting;XML files +Oracle Open Office Writer : extended tips in Help +Oracle Open Office Writer : extension mode in text +Oracle Open Office Writer : extensions +Oracle Open Office Writer : extensions;Extension Manager +Oracle Open Office Writer : extensions;file formats +Oracle Open Office Writer : external keys (Base) +Oracle Open Office Writer : faster printing +Oracle Open Office Writer : faxes +Oracle Open Office Writer : faxes;configuring Oracle Open Office +Oracle Open Office Writer : faxes;fax programs/fax printers under UNIX +Oracle Open Office Writer : faxes;selecting a fax machine +Oracle Open Office Writer : faxes;sending +Oracle Open Office Writer : faxes;wizards +Oracle Open Office Writer : feedback +Oracle Open Office Writer : feedback;automatically +Oracle Open Office Writer : fields +Oracle Open Office Writer : fields;converting into text +Oracle Open Office Writer : fields;database tables +Oracle Open Office Writer : fields;defining conditions +Oracle Open Office Writer : fields;displaying field codes (Writer) +Oracle Open Office Writer : fields;formatted fields +Oracle Open Office Writer : fields;HTML import and export +Oracle Open Office Writer : fields;input fields in text +Oracle Open Office Writer : fields;inserting time +Oracle Open Office Writer : fields;subject +Oracle Open Office Writer : fields;updating automatically (Writer) +Oracle Open Office Writer : fields;updating/viewing +Oracle Open Office Writer : fields;user data +Oracle Open Office Writer : file associations for Microsoft Office +Oracle Open Office Writer : file filters +Oracle Open Office Writer : file filters;mobile devices +Oracle Open Office Writer : file filters;XML +Oracle Open Office Writer : file formats +Oracle Open Office Writer : file formats;changing Oracle Open Office defaults +Oracle Open Office Writer : file formats;OpenDocument/XML +Oracle Open Office Writer : file formats;saving always in other formats +Oracle Open Office Writer : file selection button +Oracle Open Office Writer : file sharing options for current document +Oracle Open Office Writer : files +Oracle Open Office Writer : files;filters and formats +Oracle Open Office Writer : files;importing +Oracle Open Office Writer : files;opening +Oracle Open Office Writer : files;properties +Oracle Open Office Writer : files;saving +Oracle Open Office Writer : files;saving automatically +Oracle Open Office Writer : files;saving in other formats +Oracle Open Office Writer : files;sending as e-mail +Oracle Open Office Writer : files;version numbers +Oracle Open Office Writer : files and folders in Oracle Open Office +Oracle Open Office Writer : files, see also documents +Oracle Open Office Writer : fill characters with tabulators +Oracle Open Office Writer : fill colors for areas +Oracle Open Office Writer : fill format mode +Oracle Open Office Writer : fill patterns for areas +Oracle Open Office Writer : filter conditions +Oracle Open Office Writer : filter conditions;connecting +Oracle Open Office Writer : filter conditions;in queries (Base) +Oracle Open Office Writer : filtering +Oracle Open Office Writer : filtering;data in databases +Oracle Open Office Writer : filtering;data in forms +Oracle Open Office Writer : filters +Oracle Open Office Writer : filters;comparison operators +Oracle Open Office Writer : filters;for import and export +Oracle Open Office Writer : filters;Navigator +Oracle Open Office Writer : filters;pictures +Oracle Open Office Writer : filters;XML filter settings +Oracle Open Office Writer : Find tab in Help +Oracle Open Office Writer : finding +Oracle Open Office Writer : finding;in all sheets +Oracle Open Office Writer : finding;records in form documents +Oracle Open Office Writer : finding;selections +Oracle Open Office Writer : finding;similarity search +Oracle Open Office Writer : finding;text/text formats/styles/objects +Oracle Open Office Writer : first letters as large capital letters +Oracle Open Office Writer : First Page page style +Oracle Open Office Writer : fitting to pages +Oracle Open Office Writer : fitting to pages;print settings in Math +Oracle Open Office Writer : fitting to pages;print settings in presentations +Oracle Open Office Writer : fixed dates +Oracle Open Office Writer : fixed text +Oracle Open Office Writer : fixed text;form functions +Oracle Open Office Writer : fixing toolbars +Oracle Open Office Writer : flipping draw objects +Oracle Open Office Writer : floating frames in HTML documents +Oracle Open Office Writer : floating titles in headers +Oracle Open Office Writer : floating toolbars +Oracle Open Office Writer : focus of controls +Oracle Open Office Writer : folder creation +Oracle Open Office Writer : font attributes +Oracle Open Office Writer : font attributes;resetting +Oracle Open Office Writer : font lists +Oracle Open Office Writer : font name box +Oracle Open Office Writer : font sizes +Oracle Open Office Writer : font sizes;bullets +Oracle Open Office Writer : font sizes;relative changes +Oracle Open Office Writer : font sizes;scaling on screen +Oracle Open Office Writer : font sizes;text +Oracle Open Office Writer : fonts +Oracle Open Office Writer : fonts;changing in templates +Oracle Open Office Writer : fonts;color ignored +Oracle Open Office Writer : fonts;colors +Oracle Open Office Writer : fonts;default settings +Oracle Open Office Writer : fonts;effects +Oracle Open Office Writer : fonts;for HTML and Basic +Oracle Open Office Writer : fonts;formats +Oracle Open Office Writer : fonts;outlines +Oracle Open Office Writer : fonts;positions in text +Oracle Open Office Writer : fonts;resetting +Oracle Open Office Writer : fonts;shadows +Oracle Open Office Writer : fonts;specifying several +Oracle Open Office Writer : fonts;strikethrough +Oracle Open Office Writer : fonts;styles +Oracle Open Office Writer : fonts;text objects +Oracle Open Office Writer : Fontwork +Oracle Open Office Writer : footers +Oracle Open Office Writer : footers;about +Oracle Open Office Writer : footers;backgrounds +Oracle Open Office Writer : footers;defining for left and right pages +Oracle Open Office Writer : footers;formatting +Oracle Open Office Writer : footers;inserting +Oracle Open Office Writer : footers;with page numbers +Oracle Open Office Writer : footnotes +Oracle Open Office Writer : footnotes;inserting and editing +Oracle Open Office Writer : footnotes;spacing +Oracle Open Office Writer : form controls +Oracle Open Office Writer : form controls;assigning macros +Oracle Open Office Writer : form controls;protecting +Oracle Open Office Writer : form controls;toolbars +Oracle Open Office Writer : form fields +Oracle Open Office Writer : form filters +Oracle Open Office Writer : form letters +Oracle Open Office Writer : Form Navigator +Oracle Open Office Writer : format codes +Oracle Open Office Writer : format codes;numbers +Oracle Open Office Writer : format filling printing in Oracle Open Office Math +Oracle Open Office Writer : Format Paintbrush +Oracle Open Office Writer : formats +Oracle Open Office Writer : formats;Asian layout +Oracle Open Office Writer : formats;copying and pasting +Oracle Open Office Writer : formats;finding and replacing +Oracle Open Office Writer : formats;fonts +Oracle Open Office Writer : formats;maximizing page formats +Oracle Open Office Writer : formats;number and currency formats +Oracle Open Office Writer : formats;of currencies/date/time +Oracle Open Office Writer : formats;on opening and saving +Oracle Open Office Writer : formats;pasting in special formats +Oracle Open Office Writer : formats;positions +Oracle Open Office Writer : formats;resetting +Oracle Open Office Writer : formats;tabulators +Oracle Open Office Writer : formatted fields +Oracle Open Office Writer : formatted fields;form functions +Oracle Open Office Writer : formatted fields;properties +Oracle Open Office Writer : formatting +Oracle Open Office Writer : formatting;Asian typography +Oracle Open Office Writer : formatting;axes in charts +Oracle Open Office Writer : formatting;bold, while typing +Oracle Open Office Writer : formatting;bullets +Oracle Open Office Writer : formatting;changing individual pages +Oracle Open Office Writer : formatting;chart areas +Oracle Open Office Writer : formatting;chart floors +Oracle Open Office Writer : formatting;chart legends +Oracle Open Office Writer : formatting;chart titles +Oracle Open Office Writer : formatting;chart walls +Oracle Open Office Writer : formatting;contour wrap +Oracle Open Office Writer : formatting;copying +Oracle Open Office Writer : formatting;definition +Oracle Open Office Writer : formatting;even/odd pages +Oracle Open Office Writer : formatting;exiting direct formatting +Oracle Open Office Writer : formatting;expanding (Calc) +Oracle Open Office Writer : formatting;font effects +Oracle Open Office Writer : formatting;hyperlinks +Oracle Open Office Writer : formatting;indenting paragraphs +Oracle Open Office Writer : formatting;indexes and tables of contents +Oracle Open Office Writer : formatting;numbered lists +Oracle Open Office Writer : formatting;page numbers +Oracle Open Office Writer : formatting;pages +Oracle Open Office Writer : formatting;printer metrics (Writer) +Oracle Open Office Writer : formatting;register-true text +Oracle Open Office Writer : formatting;undoing +Oracle Open Office Writer : formatting;undoing when writing +Oracle Open Office Writer : formatting styles +Oracle Open Office Writer : formatting styles;importing +Oracle Open Office Writer : formatting styles;styles and templates +Oracle Open Office Writer : forms +Oracle Open Office Writer : forms;browsing +Oracle Open Office Writer : forms;Combo Box/List Box Wizard +Oracle Open Office Writer : forms;creating +Oracle Open Office Writer : forms;data +Oracle Open Office Writer : forms;designing (Base) +Oracle Open Office Writer : forms;events +Oracle Open Office Writer : forms;filtering data +Oracle Open Office Writer : forms;finding records +Oracle Open Office Writer : forms;focus after opening +Oracle Open Office Writer : forms;general information (Base) +Oracle Open Office Writer : forms;grouping controls +Oracle Open Office Writer : forms;HTML filters +Oracle Open Office Writer : forms;Navigator +Oracle Open Office Writer : forms;opening in design mode +Oracle Open Office Writer : forms;properties +Oracle Open Office Writer : forms;sorting data +Oracle Open Office Writer : forms;subforms +Oracle Open Office Writer : forms;wizards +Oracle Open Office Writer : forms;XForms +Oracle Open Office Writer : formula texts +Oracle Open Office Writer : formula texts;printing in Oracle Open Office Math +Oracle Open Office Writer : formulas +Oracle Open Office Writer : formulas;calculating in text +Oracle Open Office Writer : formulas;complex formulas in text +Oracle Open Office Writer : formulas;new +Oracle Open Office Writer : formulas;pasting results in text documents +Oracle Open Office Writer : formulas;starting formula editor +Oracle Open Office Writer : formulas in reports +Oracle Open Office Writer : formulas in reports;editing +Oracle Open Office Writer : formulating conditions +Oracle Open Office Writer : forums and support +Oracle Open Office Writer : frames +Oracle Open Office Writer : frames;anchoring options +Oracle Open Office Writer : frames;around objects +Oracle Open Office Writer : frames;around pages +Oracle Open Office Writer : frames;around paragraphs +Oracle Open Office Writer : frames;around tables +Oracle Open Office Writer : frames;around text tables +Oracle Open Office Writer : frames;AutoCorrect function +Oracle Open Office Writer : frames;backgrounds +Oracle Open Office Writer : frames;captions (Writer) +Oracle Open Office Writer : frames;defining hyperlinks +Oracle Open Office Writer : frames;jumping to +Oracle Open Office Writer : frames;labeling +Oracle Open Office Writer : frames;linking +Oracle Open Office Writer : frames;printing in Oracle Open Office Math +Oracle Open Office Writer : frames;protecting +Oracle Open Office Writer : frames;selection frames +Oracle Open Office Writer : frames;styles +Oracle Open Office Writer : frames;text fitting to frames +Oracle Open Office Writer : frames;unlinking +Oracle Open Office Writer : freeform lines +Oracle Open Office Writer : freeform lines;draw functions +Oracle Open Office Writer : FTP +Oracle Open Office Writer : FTP;opening documents +Oracle Open Office Writer : FTP;saving documents +Oracle Open Office Writer : full joins (Base) +Oracle Open Office Writer : full screen view +Oracle Open Office Writer : full-text search in Help +Oracle Open Office Writer : functions in reports +Oracle Open Office Writer : functions in reports;editing +Oracle Open Office Writer : Gallery +Oracle Open Office Writer : Gallery;adding pictures +Oracle Open Office Writer : Gallery;docking and resizing +Oracle Open Office Writer : Gallery;dragging pictures to draw objects +Oracle Open Office Writer : Gallery;hiding/showing +Oracle Open Office Writer : Gallery;inserting pictures from +Oracle Open Office Writer : get method for form transmissions +Oracle Open Office Writer : getting support +Oracle Open Office Writer : GIF format +Oracle Open Office Writer : glossaries +Oracle Open Office Writer : glossaries;common terms +Oracle Open Office Writer : glossaries;Internet terms +Oracle Open Office Writer : gradients off for faster printing +Oracle Open Office Writer : grammar checker +Oracle Open Office Writer : graphic objects, see draw objects +Oracle Open Office Writer : graphical text art +Oracle Open Office Writer : graphics +Oracle Open Office Writer : graphics;cache +Oracle Open Office Writer : graphics;do not show +Oracle Open Office Writer : graphics;protecting +Oracle Open Office Writer : graphics, see also pictures +Oracle Open Office Writer : grayscale printing +Oracle Open Office Writer : grid controls +Oracle Open Office Writer : grid controls;form functions +Oracle Open Office Writer : grids +Oracle Open Office Writer : grids;defaults (Writer/Calc) +Oracle Open Office Writer : grids;display options (Impress/Draw) +Oracle Open Office Writer : grids;displaying lines (Calc) +Oracle Open Office Writer : grids;formatting axes +Oracle Open Office Writer : grids;inserting in charts +Oracle Open Office Writer : group box creation +Oracle Open Office Writer : groups +Oracle Open Office Writer : groups;entering/exiting/ungrouping +Oracle Open Office Writer : groups;naming +Oracle Open Office Writer : groups;of controls +Oracle Open Office Writer : guides +Oracle Open Office Writer : guides;display options (Impress/Draw) +Oracle Open Office Writer : guides;displaying when moving objects (Impress) +Oracle Open Office Writer : guides;showing (Calc) +Oracle Open Office Writer : guides;showing when moving frames (Writer) +Oracle Open Office Writer : gutter +Oracle Open Office Writer : handles +Oracle Open Office Writer : handles;displaying (Writer) +Oracle Open Office Writer : handles;scaling +Oracle Open Office Writer : handles;showing simple/large handles (Calc) +Oracle Open Office Writer : hanging indents in paragraphs +Oracle Open Office Writer : Hangul/Hanja +Oracle Open Office Writer : hard returns in pasted text +Oracle Open Office Writer : hatching +Oracle Open Office Writer : headers +Oracle Open Office Writer : headers;about +Oracle Open Office Writer : headers;backgrounds +Oracle Open Office Writer : headers;chapter information +Oracle Open Office Writer : headers;defining for left and right pages +Oracle Open Office Writer : headers;formatting +Oracle Open Office Writer : headers;inserting +Oracle Open Office Writer : headings +Oracle Open Office Writer : headings;automatic +Oracle Open Office Writer : headings;entering as text box +Oracle Open Office Writer : headings;jumping to +Oracle Open Office Writer : headings;numbering/paragraph styles +Oracle Open Office Writer : headings;rearranging +Oracle Open Office Writer : headings;repeating in tables +Oracle Open Office Writer : headings;starting with tab stops +Oracle Open Office Writer : headings;switching levels by keyboard +Oracle Open Office Writer : Hebrew +Oracle Open Office Writer : Hebrew;entering text +Oracle Open Office Writer : Hebrew;language settings +Oracle Open Office Writer : Help +Oracle Open Office Writer : Help;bookmarks +Oracle Open Office Writer : Help;extended tips on/off +Oracle Open Office Writer : Help;full-text search +Oracle Open Office Writer : Help;Help tips +Oracle Open Office Writer : Help;keywords +Oracle Open Office Writer : Help;navigation pane showing/hiding +Oracle Open Office Writer : Help;style sheets +Oracle Open Office Writer : Help;topics +Oracle Open Office Writer : Help Agent +Oracle Open Office Writer : Help Agent;help +Oracle Open Office Writer : Help Agent;options +Oracle Open Office Writer : Help tips +Oracle Open Office Writer : Help tips;fields +Oracle Open Office Writer : Help tips;hiding +Oracle Open Office Writer : hidden controls in Form Navigator +Oracle Open Office Writer : hidden fields display (Writer) +Oracle Open Office Writer : hidden pages +Oracle Open Office Writer : hidden pages;printing in presentations +Oracle Open Office Writer : hidden text +Oracle Open Office Writer : hidden text;displaying +Oracle Open Office Writer : hidden text;showing (Writer) +Oracle Open Office Writer : hiding +Oracle Open Office Writer : hiding;changes +Oracle Open Office Writer : hiding;chart legends +Oracle Open Office Writer : hiding;database fields +Oracle Open Office Writer : hiding;docked windows +Oracle Open Office Writer : hiding;navigation pane in Help window +Oracle Open Office Writer : hiding;rulers +Oracle Open Office Writer : hiding;sections +Oracle Open Office Writer : hiding;text, from specific users +Oracle Open Office Writer : hiding;text, with conditions +Oracle Open Office Writer : high contrast mode +Oracle Open Office Writer : highlighting changes +Oracle Open Office Writer : Hindi +Oracle Open Office Writer : Hindi;entering text +Oracle Open Office Writer : Hindi;language settings +Oracle Open Office Writer : homepage creation +Oracle Open Office Writer : horizontal lines +Oracle Open Office Writer : horizontal rulers +Oracle Open Office Writer : horizontal scrollbars (Writer) +Oracle Open Office Writer : hotspots +Oracle Open Office Writer : hotspots;adding to images +Oracle Open Office Writer : hotspots;properties +Oracle Open Office Writer : HowTos for charts +Oracle Open Office Writer : HTML +Oracle Open Office Writer : HTML;compatibility settings +Oracle Open Office Writer : HTML;definition +Oracle Open Office Writer : HTML;export character set +Oracle Open Office Writer : HTML;fonts for source display +Oracle Open Office Writer : HTML;importing META tags +Oracle Open Office Writer : HTML;live presentations +Oracle Open Office Writer : HTML;special tags for fields +Oracle Open Office Writer : HTML documents +Oracle Open Office Writer : HTML documents;auto reloading +Oracle Open Office Writer : HTML documents;creating from text documents +Oracle Open Office Writer : HTML documents;headers and footers +Oracle Open Office Writer : HTML documents;importing/exporting +Oracle Open Office Writer : HTML documents;inserting linked sections +Oracle Open Office Writer : HTML documents;META tags in +Oracle Open Office Writer : HTML documents;new +Oracle Open Office Writer : HTML documents;source text +Oracle Open Office Writer : hyperlinks +Oracle Open Office Writer : hyperlinks;assigning macros +Oracle Open Office Writer : hyperlinks;character formats +Oracle Open Office Writer : hyperlinks;definition +Oracle Open Office Writer : hyperlinks;deleting +Oracle Open Office Writer : hyperlinks;editing +Oracle Open Office Writer : hyperlinks;for objects +Oracle Open Office Writer : hyperlinks;in tables of contents and indexes +Oracle Open Office Writer : hyperlinks;inserting +Oracle Open Office Writer : hyperlinks;inserting from Navigator +Oracle Open Office Writer : hyperlinks;jumping to +Oracle Open Office Writer : hyperlinks;relative and absolute +Oracle Open Office Writer : hyperlinks;turning off automatic recognition +Oracle Open Office Writer : hyperlinks, see also links +Oracle Open Office Writer : hyphenation +Oracle Open Office Writer : hyphenation;activating for a language +Oracle Open Office Writer : hyphenation;manual/automatic +Oracle Open Office Writer : hyphenation;minimal number of characters +Oracle Open Office Writer : hyphenation;preventing for specific words +Oracle Open Office Writer : hyphens +Oracle Open Office Writer : hyphens;displaying custom (Writer) +Oracle Open Office Writer : hyphens;inserting custom +Oracle Open Office Writer : icon bars, see toolbars +Oracle Open Office Writer : icon sizes +Oracle Open Office Writer : if-then queries as fields +Oracle Open Office Writer : ignore list for spellcheck +Oracle Open Office Writer : ignored font colors +Oracle Open Office Writer : illumination +Oracle Open Office Writer : illumination;3D charts +Oracle Open Office Writer : illustrations, see pictures +Oracle Open Office Writer : image button creation +Oracle Open Office Writer : image control creation +Oracle Open Office Writer : ImageMap +Oracle Open Office Writer : ImageMap;definition +Oracle Open Office Writer : ImageMap;editor +Oracle Open Office Writer : ImageMap;hotspot properties +Oracle Open Office Writer : images +Oracle Open Office Writer : images;do not show +Oracle Open Office Writer : images;ImageMap +Oracle Open Office Writer : images;inserting and editing bitmaps +Oracle Open Office Writer : images;inserting in text +Oracle Open Office Writer : images, see also pictures +Oracle Open Office Writer : IME +Oracle Open Office Writer : IME;definition +Oracle Open Office Writer : IME;showing/hiding +Oracle Open Office Writer : import filters +Oracle Open Office Writer : import restrictions for Microsoft Office +Oracle Open Office Writer : importing +Oracle Open Office Writer : importing;bitmaps +Oracle Open Office Writer : importing;compatibility settings for text import +Oracle Open Office Writer : importing;databases +Oracle Open Office Writer : importing;documents in other formats +Oracle Open Office Writer : importing;from XML +Oracle Open Office Writer : importing;HTML and text documents +Oracle Open Office Writer : importing;HTML with META tags +Oracle Open Office Writer : importing;Microsoft Office documents with VBA code +Oracle Open Office Writer : importing;styles from other files +Oracle Open Office Writer : importing;tables in text format +Oracle Open Office Writer : importing;templates +Oracle Open Office Writer : improvement program +Oracle Open Office Writer : improvement program - Improvement Program +Oracle Open Office Writer : inches +Oracle Open Office Writer : indents +Oracle Open Office Writer : indents;in text +Oracle Open Office Writer : indents;setting on rulers +Oracle Open Office Writer : Index tab in Help +Oracle Open Office Writer : indexes +Oracle Open Office Writer : indexes;alphabetical indexes +Oracle Open Office Writer : indexes;backgrounds +Oracle Open Office Writer : indexes;creating bibliographies +Oracle Open Office Writer : indexes;creating user-defined indexes +Oracle Open Office Writer : indexes;defining entries in +Oracle Open Office Writer : indexes;editing or deleting entries +Oracle Open Office Writer : indexes;editing/updating/deleting +Oracle Open Office Writer : indexes;formatting +Oracle Open Office Writer : indexes;master documents +Oracle Open Office Writer : indexes;multiple documents +Oracle Open Office Writer : indexes;showing/hiding Help index tab +Oracle Open Office Writer : indexes;unprotecting +Oracle Open Office Writer : indicator lines in text +Oracle Open Office Writer : initial capitals in titles +Oracle Open Office Writer : inner joins (Base) +Oracle Open Office Writer : input fields in text +Oracle Open Office Writer : input method window +Oracle Open Office Writer : insert mode for entering text +Oracle Open Office Writer : inserting +Oracle Open Office Writer : inserting;buttons in toolbars +Oracle Open Office Writer : inserting;captions +Oracle Open Office Writer : inserting;cell ranges from spreadsheets +Oracle Open Office Writer : inserting;chapter numbers in captions +Oracle Open Office Writer : inserting;charts +Oracle Open Office Writer : inserting;clipboard options +Oracle Open Office Writer : inserting;comments +Oracle Open Office Writer : inserting;cross-references +Oracle Open Office Writer : inserting;data from text documents +Oracle Open Office Writer : inserting;datasource records in spreadsheets +Oracle Open Office Writer : inserting;date fields +Oracle Open Office Writer : inserting;drawings +Oracle Open Office Writer : inserting;envelopes +Oracle Open Office Writer : inserting;floating frames +Oracle Open Office Writer : inserting;Fontwork objects +Oracle Open Office Writer : inserting;footnotes/endnotes +Oracle Open Office Writer : inserting;form fields +Oracle Open Office Writer : inserting;from Gallery into text +Oracle Open Office Writer : inserting;horizontal lines +Oracle Open Office Writer : inserting;hyperlinks +Oracle Open Office Writer : inserting;hyperlinks from Navigator +Oracle Open Office Writer : inserting;input fields +Oracle Open Office Writer : inserting;line breaks in cells +Oracle Open Office Writer : inserting;lines under headers/above footers +Oracle Open Office Writer : inserting;movies/sounds +Oracle Open Office Writer : inserting;new text tables defaults +Oracle Open Office Writer : inserting;numbering +Oracle Open Office Writer : inserting;objects from Gallery +Oracle Open Office Writer : inserting;OLE objects +Oracle Open Office Writer : inserting;page breaks +Oracle Open Office Writer : inserting;page numbers +Oracle Open Office Writer : inserting;paragraph borders +Oracle Open Office Writer : inserting;paragraph bullets +Oracle Open Office Writer : inserting;paragraphs before/after tables +Oracle Open Office Writer : inserting;pictures +Oracle Open Office Writer : inserting;pictures in Gallery +Oracle Open Office Writer : inserting;pictures, by dialog +Oracle Open Office Writer : inserting;plug-ins +Oracle Open Office Writer : inserting;push buttons +Oracle Open Office Writer : inserting;rows/columns, by keyboard +Oracle Open Office Writer : inserting;scanned images +Oracle Open Office Writer : inserting;sections +Oracle Open Office Writer : inserting;special characters +Oracle Open Office Writer : inserting;tab stops +Oracle Open Office Writer : inserting;tables in text +Oracle Open Office Writer : inserting;text blocks +Oracle Open Office Writer : inserting;text documents +Oracle Open Office Writer : inserting;text frames +Oracle Open Office Writer : inserting;textures on chart bars +Oracle Open Office Writer : installing +Oracle Open Office Writer : installing;ActiveX control +Oracle Open Office Writer : installing;mobile device filters +Oracle Open Office Writer : installing;smart tags +Oracle Open Office Writer : installing;UNO components +Oracle Open Office Writer : installing;XML filters +Oracle Open Office Writer : instructions +Oracle Open Office Writer : instructions;general +Oracle Open Office Writer : instructions;Oracle Open Office Writer +Oracle Open Office Writer : Internet +Oracle Open Office Writer : Internet;checking for updates +Oracle Open Office Writer : Internet;Internet Explorer for displaying Oracle Open Office documents +Oracle Open Office Writer : Internet;presentations +Oracle Open Office Writer : Internet;starting searches +Oracle Open Office Writer : Internet glossary +Oracle Open Office Writer : interrupting numbered lists +Oracle Open Office Writer : invert filter +Oracle Open Office Writer : invisible areas +Oracle Open Office Writer : invisible characters +Oracle Open Office Writer : invisible characters;finding +Oracle Open Office Writer : italic text +Oracle Open Office Writer : iterative references in spreadsheets +Oracle Open Office Writer : Java +Oracle Open Office Writer : Java;definition +Oracle Open Office Writer : Java;setting options +Oracle Open Office Writer : JDBC +Oracle Open Office Writer : JDBC;databases (Base) +Oracle Open Office Writer : JDBC;definition +Oracle Open Office Writer : joining +Oracle Open Office Writer : joining;numbered lists +Oracle Open Office Writer : joining;paragraphs +Oracle Open Office Writer : joining;tables (Base) +Oracle Open Office Writer : joins in databases (Base) +Oracle Open Office Writer : jumping +Oracle Open Office Writer : jumping;to bookmarks +Oracle Open Office Writer : jumping;to text elements +Oracle Open Office Writer : justifying text +Oracle Open Office Writer : juxtaposing tables +Oracle Open Office Writer : kerning +Oracle Open Office Writer : kerning;Asian texts +Oracle Open Office Writer : kerning;definition +Oracle Open Office Writer : kerning;in characters +Oracle Open Office Writer : key fields for relations (Base) +Oracle Open Office Writer : keyboard +Oracle Open Office Writer : keyboard;accessibility Oracle Open Office Writer +Oracle Open Office Writer : keyboard;adding or deleting rows/columns +Oracle Open Office Writer : keyboard;assigning/editing shortcut keys +Oracle Open Office Writer : keyboard;bold formatting +Oracle Open Office Writer : keyboard;general commands +Oracle Open Office Writer : keyboard;modifying the behavior of rows/columns +Oracle Open Office Writer : keyboard;navigating and selecting in text +Oracle Open Office Writer : keyboard;removing numbering +Oracle Open Office Writer : keyboard;resizing rows/columns +Oracle Open Office Writer : keys +Oracle Open Office Writer : keys;adding push buttons +Oracle Open Office Writer : keys;primary keys (Base) +Oracle Open Office Writer : kiosk export +Oracle Open Office Writer : labels +Oracle Open Office Writer : labels;creating and synchronizing +Oracle Open Office Writer : labels;for charts +Oracle Open Office Writer : labels;for draw objects +Oracle Open Office Writer : labels;form functions +Oracle Open Office Writer : labels;from databases +Oracle Open Office Writer : labels, see also names/callouts +Oracle Open Office Writer : landscape and portrait +Oracle Open Office Writer : languages +Oracle Open Office Writer : languages;activating modules +Oracle Open Office Writer : languages;Asian support +Oracle Open Office Writer : languages;complex text layout +Oracle Open Office Writer : languages;locale settings +Oracle Open Office Writer : languages;recognition of +Oracle Open Office Writer : languages;selecting for text +Oracle Open Office Writer : languages;setting options +Oracle Open Office Writer : languages;spellcheck +Oracle Open Office Writer : languages;spellchecking and formatting +Oracle Open Office Writer : large handles (Writer) +Oracle Open Office Writer : large icons +Oracle Open Office Writer : layer arrangement +Oracle Open Office Writer : layout +Oracle Open Office Writer : layout;importing Word documents +Oracle Open Office Writer : layout;pages +Oracle Open Office Writer : LDAP server +Oracle Open Office Writer : LDAP server;address books (Base) +Oracle Open Office Writer : LDAP server;sign on options +Oracle Open Office Writer : leading between paragraphs +Oracle Open Office Writer : left alignment of paragraphs +Oracle Open Office Writer : left joins (Base) +Oracle Open Office Writer : Left Page page style +Oracle Open Office Writer : legends +Oracle Open Office Writer : legends;charts +Oracle Open Office Writer : legends;draw objects +Oracle Open Office Writer : legends;rounding corners +Oracle Open Office Writer : legends, see also captions +Oracle Open Office Writer : Letter Wizard +Oracle Open Office Writer : letters +Oracle Open Office Writer : letters;creating form letters +Oracle Open Office Writer : letters;inserting envelopes +Oracle Open Office Writer : levels +Oracle Open Office Writer : levels;changing outline levels +Oracle Open Office Writer : levels;depth stagger +Oracle Open Office Writer : levels;macro security +Oracle Open Office Writer : lexicon, see thesaurus +Oracle Open Office Writer : limits of tables (Writer) +Oracle Open Office Writer : line breaks +Oracle Open Office Writer : line breaks;in cells +Oracle Open Office Writer : line breaks;removing +Oracle Open Office Writer : line charts +Oracle Open Office Writer : line numbers +Oracle Open Office Writer : line spacing +Oracle Open Office Writer : line spacing;context menu in paragraphs +Oracle Open Office Writer : line spacing;paragraph +Oracle Open Office Writer : line styles +Oracle Open Office Writer : line styles;applying +Oracle Open Office Writer : line styles;defining +Oracle Open Office Writer : lines +Oracle Open Office Writer : lines;automatic drawing on/off +Oracle Open Office Writer : lines;defining ends +Oracle Open Office Writer : lines;draw functions +Oracle Open Office Writer : lines;drawing in text +Oracle Open Office Writer : lines;editing points +Oracle Open Office Writer : lines;footnotes/endnotes +Oracle Open Office Writer : lines;inserting horizontal lines +Oracle Open Office Writer : lines;removing automatic lines +Oracle Open Office Writer : lines;under headers/above footers +Oracle Open Office Writer : lines of text +Oracle Open Office Writer : lines of text;alignment +Oracle Open Office Writer : lines of text;indents +Oracle Open Office Writer : lines of text;numbering +Oracle Open Office Writer : lines of text;register-true +Oracle Open Office Writer : lines of text;sorting paragraphs +Oracle Open Office Writer : links +Oracle Open Office Writer : links;between cells and controls +Oracle Open Office Writer : links;by drag and drop +Oracle Open Office Writer : links;character formats +Oracle Open Office Writer : links;definition +Oracle Open Office Writer : links;editing hyperlinks +Oracle Open Office Writer : links;inserting +Oracle Open Office Writer : links;inserting sections +Oracle Open Office Writer : links;inserting text documents as +Oracle Open Office Writer : links;modifying +Oracle Open Office Writer : links;opening files with +Oracle Open Office Writer : links;relational databases (Base) +Oracle Open Office Writer : links;text frames +Oracle Open Office Writer : links;turning off automatic recognition +Oracle Open Office Writer : links;updating options (Writer) +Oracle Open Office Writer : links;updating specific links +Oracle Open Office Writer : list box creation +Oracle Open Office Writer : lists +Oracle Open Office Writer : lists;automatic numbering +Oracle Open Office Writer : lists;AutoText shortcuts +Oracle Open Office Writer : lists;changing levels +Oracle Open Office Writer : lists;combining numbered lists +Oracle Open Office Writer : lists;data assigned to controls +Oracle Open Office Writer : lists;registered databases (Base) +Oracle Open Office Writer : lists;regular expressions +Oracle Open Office Writer : lists;removing/interrupting numbering +Oracle Open Office Writer : live presentations on the Internet +Oracle Open Office Writer : loading +Oracle Open Office Writer : loading;documents +Oracle Open Office Writer : loading;documents from other formats +Oracle Open Office Writer : loading;HTML documents, automatically +Oracle Open Office Writer : loading;Microsoft Office documents with VBA code +Oracle Open Office Writer : loading;reloading +Oracle Open Office Writer : loading;styles from other files +Oracle Open Office Writer : loading;XML files +Oracle Open Office Writer : locale settings +Oracle Open Office Writer : logarithmic scaling along axes +Oracle Open Office Writer : logical expressions +Oracle Open Office Writer : lowercase letters +Oracle Open Office Writer : lowercase letters;font effects +Oracle Open Office Writer : lowercase letters;text +Oracle Open Office Writer : lowering outline levels +Oracle Open Office Writer : Macro Wizard (Base) +Oracle Open Office Writer : macros +Oracle Open Office Writer : macros;assigning to events in forms +Oracle Open Office Writer : macros;attaching new (Base) +Oracle Open Office Writer : macros;in MS Office documents +Oracle Open Office Writer : macros;interrupting +Oracle Open Office Writer : macros;organizing +Oracle Open Office Writer : macros;recording +Oracle Open Office Writer : macros;security +Oracle Open Office Writer : macros;security levels +Oracle Open Office Writer : macros;security warning dialog +Oracle Open Office Writer : macros;selecting security warnings +Oracle Open Office Writer : magnifiers +Oracle Open Office Writer : mail merge +Oracle Open Office Writer : manual hyphenation in text +Oracle Open Office Writer : manual numbering in text +Oracle Open Office Writer : manual page breaks +Oracle Open Office Writer : marginal numbers on text pages +Oracle Open Office Writer : margins +Oracle Open Office Writer : margins;pages +Oracle Open Office Writer : margins;setting with the mouse +Oracle Open Office Writer : margins;shadows +Oracle Open Office Writer : marking changes +Oracle Open Office Writer : marking, see selecting +Oracle Open Office Writer : master documents +Oracle Open Office Writer : master documents;creating/editing/exporting +Oracle Open Office Writer : master documents;indexes +Oracle Open Office Writer : master documents;properties +Oracle Open Office Writer : matching conditional text in fields +Oracle Open Office Writer : Math formula editor +Oracle Open Office Writer : mean value lines in charts +Oracle Open Office Writer : measurement units +Oracle Open Office Writer : measurement units;changing on rulers +Oracle Open Office Writer : measurement units;converting +Oracle Open Office Writer : measurement units;selecting +Oracle Open Office Writer : Media Player window +Oracle Open Office Writer : menus +Oracle Open Office Writer : menus;activating context menus +Oracle Open Office Writer : menus;assigning macros +Oracle Open Office Writer : menus;customizing +Oracle Open Office Writer : merging +Oracle Open Office Writer : merging;cells +Oracle Open Office Writer : merging;cells, by keyboard +Oracle Open Office Writer : merging;documents +Oracle Open Office Writer : merging;indexes +Oracle Open Office Writer : merging;numbered lists +Oracle Open Office Writer : merging;tables +Oracle Open Office Writer : META tags +Oracle Open Office Writer : metrics +Oracle Open Office Writer : metrics;converting +Oracle Open Office Writer : metrics;document formatting (Writer) +Oracle Open Office Writer : metrics;in sheets +Oracle Open Office Writer : Microsoft Office +Oracle Open Office Writer : Microsoft Office;Access databases (base) +Oracle Open Office Writer : Microsoft Office;as default file format +Oracle Open Office Writer : Microsoft Office;document import restrictions +Oracle Open Office Writer : Microsoft Office;feature comparisons +Oracle Open Office Writer : Microsoft Office;importing password protected files +Oracle Open Office Writer : Microsoft Office;importing Word documents +Oracle Open Office Writer : Microsoft Office;importing/exporting VBA code +Oracle Open Office Writer : Microsoft Office;new users information +Oracle Open Office Writer : Microsoft Office;opening Microsoft documents +Oracle Open Office Writer : Microsoft Office;reassigning document types +Oracle Open Office Writer : migrating macros (Base) +Oracle Open Office Writer : mirrored page layout +Oracle Open Office Writer : mobile device filters +Oracle Open Office Writer : models in XForms +Oracle Open Office Writer : modifying, see changing +Oracle Open Office Writer : months +Oracle Open Office Writer : months;automatically completing +Oracle Open Office Writer : more controls +Oracle Open Office Writer : mosaic filter +Oracle Open Office Writer : mouse +Oracle Open Office Writer : mouse;moving and copying text +Oracle Open Office Writer : mouse;pointers when using drag and drop +Oracle Open Office Writer : mouse;positioning +Oracle Open Office Writer : movies +Oracle Open Office Writer : moving +Oracle Open Office Writer : moving;headings +Oracle Open Office Writer : moving;objects and frames +Oracle Open Office Writer : moving;tab stops on ruler +Oracle Open Office Writer : moving;text sections +Oracle Open Office Writer : moving;toolbars +Oracle Open Office Writer : moving;using guide lines in presentations +Oracle Open Office Writer : MS ADO interface (Base) +Oracle Open Office Writer : multi-column text +Oracle Open Office Writer : multi-line titles in forms +Oracle Open Office Writer : multi-page tables +Oracle Open Office Writer : multi-page view of documents +Oracle Open Office Writer : multiple documents +Oracle Open Office Writer : multiple documents;indexes +Oracle Open Office Writer : multiple documents;opening +Oracle Open Office Writer : multiple selection +Oracle Open Office Writer : music +Oracle Open Office Writer : My Documents folder +Oracle Open Office Writer : My Documents folder;changing work directory +Oracle Open Office Writer : My Documents folder;opening +Oracle Open Office Writer : MySQL databases (Base) +Oracle Open Office Writer : names +Oracle Open Office Writer : names;chapter names in headers +Oracle Open Office Writer : names;multi-line titles +Oracle Open Office Writer : names;objects +Oracle Open Office Writer : names, see also labels/callouts +Oracle Open Office Writer : namespace organization in XForms +Oracle Open Office Writer : native SQL (Base) +Oracle Open Office Writer : navigating +Oracle Open Office Writer : navigating;in documents +Oracle Open Office Writer : navigating;in text, with keyboard +Oracle Open Office Writer : Navigation bar +Oracle Open Office Writer : Navigation bar;controls +Oracle Open Office Writer : Navigation bar;forms +Oracle Open Office Writer : Navigator +Oracle Open Office Writer : Navigator;comments +Oracle Open Office Writer : Navigator;contents as lists +Oracle Open Office Writer : Navigator;docking +Oracle Open Office Writer : Navigator;docking and resizing +Oracle Open Office Writer : Navigator;heading levels and chapters +Oracle Open Office Writer : Navigator;inserting hyperlinks +Oracle Open Office Writer : Navigator;master documents +Oracle Open Office Writer : Navigator;overview in texts +Oracle Open Office Writer : Navigator;working with +Oracle Open Office Writer : net charts +Oracle Open Office Writer : network identity options +Oracle Open Office Writer : networks and AutoText directories +Oracle Open Office Writer : new databases +Oracle Open Office Writer : new documents +Oracle Open Office Writer : new lines in cells +Oracle Open Office Writer : new page styles from selection +Oracle Open Office Writer : new windows +Oracle Open Office Writer : next page number in footers +Oracle Open Office Writer : non-breaking dashes +Oracle Open Office Writer : non-breaking spaces (Writer) +Oracle Open Office Writer : non-printing characters (Writer) +Oracle Open Office Writer : non-printing text +Oracle Open Office Writer : number formats +Oracle Open Office Writer : number formats;codes +Oracle Open Office Writer : number formats;formats +Oracle Open Office Writer : number formats;recognition in text tables +Oracle Open Office Writer : number of characters +Oracle Open Office Writer : number of pages +Oracle Open Office Writer : number of sheets +Oracle Open Office Writer : number of tables +Oracle Open Office Writer : number of words +Oracle Open Office Writer : numbering +Oracle Open Office Writer : numbering;captions +Oracle Open Office Writer : numbering;changing the level of +Oracle Open Office Writer : numbering;combining +Oracle Open Office Writer : numbering;headings +Oracle Open Office Writer : numbering;lines +Oracle Open Office Writer : numbering;lists, while typing +Oracle Open Office Writer : numbering;manually/by styles +Oracle Open Office Writer : numbering;options +Oracle Open Office Writer : numbering;pages +Oracle Open Office Writer : numbering;paragraphs, on and off +Oracle Open Office Writer : numbering;quotations/similar items +Oracle Open Office Writer : numbering;removing/interrupting +Oracle Open Office Writer : numbering;style categories +Oracle Open Office Writer : numbering;turning off +Oracle Open Office Writer : numbering;using automatically +Oracle Open Office Writer : numbers +Oracle Open Office Writer : numbers;automatic recognition in text tables +Oracle Open Office Writer : numbers;date, time and currency formats +Oracle Open Office Writer : numbers;line numbering +Oracle Open Office Writer : numbers;lists +Oracle Open Office Writer : numerical fields in forms +Oracle Open Office Writer : objects +Oracle Open Office Writer : objects;always moveable (Impress/Draw) +Oracle Open Office Writer : objects;anchoring options +Oracle Open Office Writer : objects;arranging within stacks +Oracle Open Office Writer : objects;captioning +Oracle Open Office Writer : objects;captioning automatically +Oracle Open Office Writer : objects;contour wrap +Oracle Open Office Writer : objects;copying when moving in presentations +Oracle Open Office Writer : objects;cross-referencing +Oracle Open Office Writer : objects;defining borders +Oracle Open Office Writer : objects;defining hyperlinks +Oracle Open Office Writer : objects;definition +Oracle Open Office Writer : objects;displaying in spreadsheets +Oracle Open Office Writer : objects;displaying in text documents +Oracle Open Office Writer : objects;editing +Oracle Open Office Writer : objects;finding by Navigator +Oracle Open Office Writer : objects;inserting from Gallery +Oracle Open Office Writer : objects;inserting OLE objects +Oracle Open Office Writer : objects;moving and resizing with keyboard +Oracle Open Office Writer : objects;moving and resizing with mouse +Oracle Open Office Writer : objects;naming +Oracle Open Office Writer : objects;opening +Oracle Open Office Writer : objects;properties of charts +Oracle Open Office Writer : objects;quickly moving to +Oracle Open Office Writer : objects;quickly moving to, within text +Oracle Open Office Writer : objects;titles and descriptions +Oracle Open Office Writer : ODBC +Oracle Open Office Writer : ODBC;database (Base) +Oracle Open Office Writer : ODBC;definition +Oracle Open Office Writer : ODF file formats +Oracle Open Office Writer : Office +Oracle Open Office Writer : Office;Microsoft Office and Oracle Open Office +Oracle Open Office Writer : OLE +Oracle Open Office Writer : OLE;definition +Oracle Open Office Writer : OLE objects +Oracle Open Office Writer : OLE objects;arranging within stacks +Oracle Open Office Writer : OLE objects;borders +Oracle Open Office Writer : OLE objects;captions (Writer) +Oracle Open Office Writer : OLE objects;cross-referencing +Oracle Open Office Writer : OLE objects;inserting +Oracle Open Office Writer : OLE objects;inserting tables in +Oracle Open Office Writer : OLE objects;number of +Oracle Open Office Writer : OLE objects;protecting +Oracle Open Office Writer : one and a half line spacing in text +Oracle Open Office Writer : online feedback options +Oracle Open Office Writer : online registration +Oracle Open Office Writer : online update options +Oracle Open Office Writer : online updates +Oracle Open Office Writer : online updates;checking automatically +Oracle Open Office Writer : online updates;checking manually +Oracle Open Office Writer : OpenDocument file formats +Oracle Open Office Writer : OpenGL +Oracle Open Office Writer : OpenGL;definition +Oracle Open Office Writer : opening +Oracle Open Office Writer : opening;context menus +Oracle Open Office Writer : opening;database files +Oracle Open Office Writer : opening;dialog settings +Oracle Open Office Writer : opening;documents +Oracle Open Office Writer : opening;documents from other formats +Oracle Open Office Writer : opening;documents on WebDAV server +Oracle Open Office Writer : opening;documents with links +Oracle Open Office Writer : opening;files, with placeholders +Oracle Open Office Writer : opening;forms +Oracle Open Office Writer : opening;Microsoft Office files +Oracle Open Office Writer : opening;mobile device documents +Oracle Open Office Writer : opening;objects +Oracle Open Office Writer : opening;reports +Oracle Open Office Writer : opening;several files +Oracle Open Office Writer : opening;XForms +Oracle Open Office Writer : operators +Oracle Open Office Writer : operators;in formulas +Oracle Open Office Writer : operators;standard filters +Oracle Open Office Writer : optional hyphens (Writer) +Oracle Open Office Writer : options +Oracle Open Office Writer : options;accessibility +Oracle Open Office Writer : options;appearance +Oracle Open Office Writer : options;compatibility (Writer) +Oracle Open Office Writer : options;improvement program +Oracle Open Office Writer : options;network identity +Oracle Open Office Writer : options;online update +Oracle Open Office Writer : options;smart tags +Oracle Open Office Writer : options;tools +Oracle Open Office Writer : Oracle databases (base) +Oracle Open Office Writer : Oracle Open Office Base data sources +Oracle Open Office Writer : Oracle Open Office Basic scripts in HTML documents +Oracle Open Office Writer : Oracle Open Office documents +Oracle Open Office Writer : Oracle Open Office documents;mobile device filters +Oracle Open Office Writer : Oracle Open Office documents;viewing and editing in Internet Explorer +Oracle Open Office Writer : Oracle Open Office Math start +Oracle Open Office Writer : Oracle Open Office Writer +Oracle Open Office Writer : Oracle Open Office Writer;instructions +Oracle Open Office Writer : Oracle Open Office Writer;special HTML tags +Oracle Open Office Writer : order of chart data +Oracle Open Office Writer : ordering +Oracle Open Office Writer : ordering;objects +Oracle Open Office Writer : ordering;printing in reverse order +Oracle Open Office Writer : ordinal numbers +Oracle Open Office Writer : ordinal numbers;replacing +Oracle Open Office Writer : organizing +Oracle Open Office Writer : organizing;footnotes +Oracle Open Office Writer : organizing;macros and scripts +Oracle Open Office Writer : organizing;namespaces in XForms +Oracle Open Office Writer : organizing;styles +Oracle Open Office Writer : organizing;templates +Oracle Open Office Writer : organizing;templates (guide) +Oracle Open Office Writer : orientation of pages +Oracle Open Office Writer : original size +Oracle Open Office Writer : original size;printing in Oracle Open Office Math +Oracle Open Office Writer : original size;restoring after cropping +Oracle Open Office Writer : orphans +Oracle Open Office Writer : outlines +Oracle Open Office Writer : outlines;arranging chapters +Oracle Open Office Writer : outlines;font effects +Oracle Open Office Writer : outlines;numbering +Oracle Open Office Writer : outlines;outline symbols +Oracle Open Office Writer : outlines;sending to presentations +Oracle Open Office Writer : overviews +Oracle Open Office Writer : overviews;Navigator in text documents +Oracle Open Office Writer : overviews;printing multi-page view +Oracle Open Office Writer : overwrite mode +Oracle Open Office Writer : packages, see extensions +Oracle Open Office Writer : page breaks +Oracle Open Office Writer : page breaks;displaying (Calc) +Oracle Open Office Writer : page breaks;inserting and deleting +Oracle Open Office Writer : page breaks;tables +Oracle Open Office Writer : page counts +Oracle Open Office Writer : page formats +Oracle Open Office Writer : page formats;changing individual pages +Oracle Open Office Writer : page formats;maximizing +Oracle Open Office Writer : page formats;restriction +Oracle Open Office Writer : page margins on rulers +Oracle Open Office Writer : page numbers +Oracle Open Office Writer : page numbers;continuation pages +Oracle Open Office Writer : page numbers;footers +Oracle Open Office Writer : page numbers;inserting/defining/formatting +Oracle Open Office Writer : page styles +Oracle Open Office Writer : page styles;backgrounds +Oracle Open Office Writer : page styles;changing +Oracle Open Office Writer : page styles;changing from selection +Oracle Open Office Writer : page styles;creating and applying +Oracle Open Office Writer : page styles;editing/applying with statusbar +Oracle Open Office Writer : page styles;left and right pages +Oracle Open Office Writer : page styles;orientation/scope +Oracle Open Office Writer : page styles;page numbering +Oracle Open Office Writer : page styles;style categories +Oracle Open Office Writer : pages +Oracle Open Office Writer : pages;backgrounds +Oracle Open Office Writer : pages;backgrounds in all applications +Oracle Open Office Writer : pages;continuation pages +Oracle Open Office Writer : pages;defining borders +Oracle Open Office Writer : pages;formatting and numbering +Oracle Open Office Writer : pages;inserting/deleting page breaks +Oracle Open Office Writer : pages;jumping to +Oracle Open Office Writer : pages;left and right pages +Oracle Open Office Writer : pages;number of +Oracle Open Office Writer : pages;numbers and count of +Oracle Open Office Writer : pages;orientation +Oracle Open Office Writer : pages;previews +Oracle Open Office Writer : pages;printing multiple on one sheet +Oracle Open Office Writer : pages;printing page names in presentations +Oracle Open Office Writer : pages;register-true +Oracle Open Office Writer : pages;scaling +Oracle Open Office Writer : pages;selecting one to print +Oracle Open Office Writer : paint box +Oracle Open Office Writer : paint can symbol +Oracle Open Office Writer : Paintbrush +Oracle Open Office Writer : pair kerning +Oracle Open Office Writer : Palm file filters +Oracle Open Office Writer : paper formats +Oracle Open Office Writer : paper orientation +Oracle Open Office Writer : paper size warning +Oracle Open Office Writer : paper tray selection +Oracle Open Office Writer : paper trays +Oracle Open Office Writer : paragraph marks +Oracle Open Office Writer : paragraph marks;displaying (Writer) +Oracle Open Office Writer : paragraph marks;removing +Oracle Open Office Writer : paragraph marks;searching +Oracle Open Office Writer : paragraph styles +Oracle Open Office Writer : paragraph styles;languages +Oracle Open Office Writer : paragraph styles;modifying basic fonts +Oracle Open Office Writer : paragraph styles;numbering +Oracle Open Office Writer : paragraph styles;style categories +Oracle Open Office Writer : paragraphs +Oracle Open Office Writer : paragraphs;alignment +Oracle Open Office Writer : paragraphs;Asian typography +Oracle Open Office Writer : paragraphs;automatic numbering +Oracle Open Office Writer : paragraphs;backgrounds +Oracle Open Office Writer : paragraphs;bulleted +Oracle Open Office Writer : paragraphs;defining borders +Oracle Open Office Writer : paragraphs;hidden paragraphs (Writer) +Oracle Open Office Writer : paragraphs;hiding +Oracle Open Office Writer : paragraphs;increasing indents of +Oracle Open Office Writer : paragraphs;indents +Oracle Open Office Writer : paragraphs;indents, margins and columns +Oracle Open Office Writer : paragraphs;inserting before/after tables +Oracle Open Office Writer : paragraphs;inserting bullets +Oracle Open Office Writer : paragraphs;joining +Oracle Open Office Writer : paragraphs;keeping together at breaks +Oracle Open Office Writer : paragraphs;line numbers +Oracle Open Office Writer : paragraphs;moving by keyboard +Oracle Open Office Writer : paragraphs;numbering automatically +Oracle Open Office Writer : paragraphs;numbering non-consecutive +Oracle Open Office Writer : paragraphs;numbering on/off +Oracle Open Office Writer : paragraphs;register-true +Oracle Open Office Writer : paragraphs;removing blank ones +Oracle Open Office Writer : paragraphs;spacing +Oracle Open Office Writer : paragraphs;tab stops +Oracle Open Office Writer : parameters +Oracle Open Office Writer : parameters;command line +Oracle Open Office Writer : parameters;queries (Base) +Oracle Open Office Writer : password as document property +Oracle Open Office Writer : passwords for protecting contents +Oracle Open Office Writer : pasting +Oracle Open Office Writer : pasting;cell ranges +Oracle Open Office Writer : pasting;cell ranges from spreadsheets +Oracle Open Office Writer : pasting;cut/copied text sections +Oracle Open Office Writer : pasting;data from text documents +Oracle Open Office Writer : pasting;draw objects +Oracle Open Office Writer : pasting;draw objects from other documents +Oracle Open Office Writer : pasting;formatted/unformatted text +Oracle Open Office Writer : pasting;from data source view +Oracle Open Office Writer : pasting;from data sources to Oracle Open Office Calc +Oracle Open Office Writer : pasting;pictures from other documents +Oracle Open Office Writer : pasting;results of formulas +Oracle Open Office Writer : pasting;sheet areas in text documents +Oracle Open Office Writer : pasting;to Gallery +Oracle Open Office Writer : paths +Oracle Open Office Writer : paths;changing work directory +Oracle Open Office Writer : paths;defaults +Oracle Open Office Writer : pattern editor +Oracle Open Office Writer : pattern fields +Oracle Open Office Writer : pattern fields;form functions +Oracle Open Office Writer : patterns for objects +Oracle Open Office Writer : PDF +Oracle Open Office Writer : PDF;export +Oracle Open Office Writer : PDF;PostScript to PDF converter, UNIX +Oracle Open Office Writer : personal data input +Oracle Open Office Writer : phonetic guide +Oracle Open Office Writer : picklist creation +Oracle Open Office Writer : pictures +Oracle Open Office Writer : pictures;adding to Gallery +Oracle Open Office Writer : pictures;anchoring options +Oracle Open Office Writer : pictures;arranging within stacks +Oracle Open Office Writer : pictures;assigning macros +Oracle Open Office Writer : pictures;backgrounds +Oracle Open Office Writer : pictures;borders +Oracle Open Office Writer : pictures;captions (Writer) +Oracle Open Office Writer : pictures;changing paths +Oracle Open Office Writer : pictures;cropping and zooming +Oracle Open Office Writer : pictures;cross-referencing +Oracle Open Office Writer : pictures;defining hyperlinks +Oracle Open Office Writer : pictures;displaying in Calc +Oracle Open Office Writer : pictures;displaying in Writer (Writer) +Oracle Open Office Writer : pictures;do not show +Oracle Open Office Writer : pictures;drag and drop between documents +Oracle Open Office Writer : pictures;drawing +Oracle Open Office Writer : pictures;editing +Oracle Open Office Writer : pictures;filters +Oracle Open Office Writer : pictures;ImageMap +Oracle Open Office Writer : pictures;inserting automatically +Oracle Open Office Writer : pictures;inserting by dialog +Oracle Open Office Writer : pictures;inserting from Draw +Oracle Open Office Writer : pictures;inserting from Gallery +Oracle Open Office Writer : pictures;inserting from Gallery into text +Oracle Open Office Writer : pictures;inserting options +Oracle Open Office Writer : pictures;number of +Oracle Open Office Writer : pictures;printing +Oracle Open Office Writer : pictures;scaling/resizing +Oracle Open Office Writer : pictures;scanning +Oracle Open Office Writer : pie charts +Oracle Open Office Writer : pie charts;options +Oracle Open Office Writer : pie charts;types +Oracle Open Office Writer : pixel editor +Oracle Open Office Writer : pixel graphics +Oracle Open Office Writer : pixel graphics;inserting and editing +Oracle Open Office Writer : pixel patterns +Oracle Open Office Writer : placeholders +Oracle Open Office Writer : placeholders;in SQL queries +Oracle Open Office Writer : placeholders;on opening files +Oracle Open Office Writer : placing toolbars +Oracle Open Office Writer : playing movies and sound files +Oracle Open Office Writer : plotting data as charts +Oracle Open Office Writer : plug-ins +Oracle Open Office Writer : plug-ins;activating and deactivating +Oracle Open Office Writer : plug-ins;definition +Oracle Open Office Writer : plug-ins;inserting +Oracle Open Office Writer : pocket device appliances +Oracle Open Office Writer : Pocket PC file filters +Oracle Open Office Writer : points +Oracle Open Office Writer : points;reducing editing points when snapping (Impress/Draw) +Oracle Open Office Writer : polygon drawing +Oracle Open Office Writer : pop-art filter +Oracle Open Office Writer : portable document format +Oracle Open Office Writer : portrait and landscape +Oracle Open Office Writer : positioning +Oracle Open Office Writer : positioning;axes +Oracle Open Office Writer : positioning;draw objects and controls +Oracle Open Office Writer : positioning;fonts +Oracle Open Office Writer : positioning;objects +Oracle Open Office Writer : positioning;objects (guide) +Oracle Open Office Writer : positioning;toolbars +Oracle Open Office Writer : post method for form transmissions +Oracle Open Office Writer : posterizing filter +Oracle Open Office Writer : PostScript +Oracle Open Office Writer : PostScript;creating files +Oracle Open Office Writer : PostScript;PDF converter, UNIX +Oracle Open Office Writer : PowerPoint export +Oracle Open Office Writer : precision as shown (Calc) +Oracle Open Office Writer : predefining fonts +Oracle Open Office Writer : predictive text, see also AutoCorrect function/AutoFill function/AutoInput function/word completion/text completion +Oracle Open Office Writer : presentations +Oracle Open Office Writer : presentations;creating/opening +Oracle Open Office Writer : presentations;inserting spreadsheet cells +Oracle Open Office Writer : presentations;live on the Internet +Oracle Open Office Writer : presentations;print menu +Oracle Open Office Writer : presentations;saving +Oracle Open Office Writer : presentations;saving automatically +Oracle Open Office Writer : presentations;saving in other formats +Oracle Open Office Writer : presentations;sending as e-mail +Oracle Open Office Writer : presentations;starting with wizard +Oracle Open Office Writer : presentations;wizards +Oracle Open Office Writer : press buttons, see push buttons +Oracle Open Office Writer : previews +Oracle Open Office Writer : previews;book preview +Oracle Open Office Writer : previews;fonts lists +Oracle Open Office Writer : previews;print layouts +Oracle Open Office Writer : primary keys +Oracle Open Office Writer : primary keys;defining +Oracle Open Office Writer : primary keys;design view +Oracle Open Office Writer : primary keys;inserting (Base) +Oracle Open Office Writer : print area selection +Oracle Open Office Writer : print layout checks +Oracle Open Office Writer : printer metrics for document formatting (Writer) +Oracle Open Office Writer : printers +Oracle Open Office Writer : printers;adding, UNIX +Oracle Open Office Writer : printers;choosing +Oracle Open Office Writer : printers;default printer +Oracle Open Office Writer : printers;faxes under UNIX +Oracle Open Office Writer : printers;maximum page formats +Oracle Open Office Writer : printers;paper trays +Oracle Open Office Writer : printers;properties +Oracle Open Office Writer : printing +Oracle Open Office Writer : printing;AutoText shortcuts +Oracle Open Office Writer : printing;black and white +Oracle Open Office Writer : printing;brochures +Oracle Open Office Writer : printing;colors in grayscale +Oracle Open Office Writer : printing;comments +Oracle Open Office Writer : printing;copies +Oracle Open Office Writer : printing;creating individual jobs +Oracle Open Office Writer : printing;dates in presentations +Oracle Open Office Writer : printing;directly +Oracle Open Office Writer : printing;documents +Oracle Open Office Writer : printing;drawings defaults +Oracle Open Office Writer : printing;elements in text documents +Oracle Open Office Writer : printing;faster +Oracle Open Office Writer : printing;fitting to pages in Oracle Open Office Math +Oracle Open Office Writer : printing;fitting to pages in presentations +Oracle Open Office Writer : printing;formulas in Oracle Open Office Math +Oracle Open Office Writer : printing;hidden pages of presentations +Oracle Open Office Writer : printing;hiding text frames from printing +Oracle Open Office Writer : printing;in original size in Oracle Open Office Math +Oracle Open Office Writer : printing;individual brochures +Oracle Open Office Writer : printing;left/right pages +Oracle Open Office Writer : printing;multiple pages per sheet +Oracle Open Office Writer : printing;portrait/landscape format +Oracle Open Office Writer : printing;previews +Oracle Open Office Writer : printing;queries (Base) +Oracle Open Office Writer : printing;reverse order +Oracle Open Office Writer : printing;scaling in Oracle Open Office Math +Oracle Open Office Writer : printing;selections +Oracle Open Office Writer : printing;text always in black +Oracle Open Office Writer : printing;text in reverse order +Oracle Open Office Writer : printing;tiling pages in presentations +Oracle Open Office Writer : printing;transparencies +Oracle Open Office Writer : printing;warnings +Oracle Open Office Writer : printing;without scaling in presentations +Oracle Open Office Writer : printing speed +Oracle Open Office Writer : programming +Oracle Open Office Writer : programming;Oracle Open Office +Oracle Open Office Writer : programming;scripting +Oracle Open Office Writer : promoting heading levels +Oracle Open Office Writer : properties +Oracle Open Office Writer : properties;charts +Oracle Open Office Writer : properties;fields +Oracle Open Office Writer : properties;fields in databases +Oracle Open Office Writer : properties;files +Oracle Open Office Writer : properties;form controls +Oracle Open Office Writer : properties;forms +Oracle Open Office Writer : properties;hotspots +Oracle Open Office Writer : properties;printers +Oracle Open Office Writer : properties;smooth lines in line charts/XY charts +Oracle Open Office Writer : proportional distribution of tables +Oracle Open Office Writer : protected contents +Oracle Open Office Writer : protected dashes +Oracle Open Office Writer : protected database tables +Oracle Open Office Writer : protected documents +Oracle Open Office Writer : protected spaces +Oracle Open Office Writer : protected spaces;inserting +Oracle Open Office Writer : protected spaces;showing (Writer) +Oracle Open Office Writer : protecting +Oracle Open Office Writer : protecting;contents +Oracle Open Office Writer : protecting;recorded changes +Oracle Open Office Writer : protecting;sections +Oracle Open Office Writer : protecting;tables and sections +Oracle Open Office Writer : protecting;text flow +Oracle Open Office Writer : proxy settings +Oracle Open Office Writer : push buttons +Oracle Open Office Writer : push buttons;adding to documents +Oracle Open Office Writer : push buttons;creating +Oracle Open Office Writer : queries +Oracle Open Office Writer : queries;copying (Base) +Oracle Open Office Writer : queries;creating in design view (Base) +Oracle Open Office Writer : queries;creating in SQL view +Oracle Open Office Writer : queries;defining (Base) +Oracle Open Office Writer : queries;deleting table links (Base) +Oracle Open Office Writer : queries;editing in data source view +Oracle Open Office Writer : queries;formulating filter conditions (Base) +Oracle Open Office Writer : queries;joining tables (Base) +Oracle Open Office Writer : queries;missing elements (Base) +Oracle Open Office Writer : queries;overview (Base) +Oracle Open Office Writer : queries;parameter queries (Base) +Oracle Open Office Writer : queries;printing (Base) +Oracle Open Office Writer : Query Wizard (Base) +Oracle Open Office Writer : Quickstarter +Oracle Open Office Writer : quotation marks +Oracle Open Office Writer : quotation marks;changing automatically +Oracle Open Office Writer : quotes +Oracle Open Office Writer : quotes;custom +Oracle Open Office Writer : radar charts, see net charts +Oracle Open Office Writer : radio button creation +Oracle Open Office Writer : read-only documents +Oracle Open Office Writer : read-only documents;cursor +Oracle Open Office Writer : read-only documents;database tables on/off +Oracle Open Office Writer : read-only documents;editing +Oracle Open Office Writer : read-only documents;opening documents as +Oracle Open Office Writer : read-only items in Data Navigator +Oracle Open Office Writer : read-only sections +Oracle Open Office Writer : rearranging headings +Oracle Open Office Writer : recognition +Oracle Open Office Writer : recognition;languages +Oracle Open Office Writer : recognition;numbers +Oracle Open Office Writer : recognizing URLs automatically +Oracle Open Office Writer : recording +Oracle Open Office Writer : recording;changes +Oracle Open Office Writer : recording;macros +Oracle Open Office Writer : records +Oracle Open Office Writer : records;inserting comments +Oracle Open Office Writer : records;protecting +Oracle Open Office Writer : records;saving +Oracle Open Office Writer : records;searching in databases +Oracle Open Office Writer : rectangle drawing +Oracle Open Office Writer : rectangles with round corners +Oracle Open Office Writer : recursions in spreadsheets +Oracle Open Office Writer : redo command +Oracle Open Office Writer : reduced printing +Oracle Open Office Writer : reduced printing of multiple pages +Oracle Open Office Writer : reducing rows and columns in text tables +Oracle Open Office Writer : reference lines +Oracle Open Office Writer : references +Oracle Open Office Writer : references;displaying in color (Calc) +Oracle Open Office Writer : references;expanding (Calc) +Oracle Open Office Writer : references;in Writer tables +Oracle Open Office Writer : references;inserting cross-references +Oracle Open Office Writer : references;iterative (Calc) +Oracle Open Office Writer : references;modifying cross-references +Oracle Open Office Writer : refusing word completions +Oracle Open Office Writer : register-true +Oracle Open Office Writer : register-true;definition +Oracle Open Office Writer : register-true;pages and paragraphs +Oracle Open Office Writer : registering +Oracle Open Office Writer : registering;address books +Oracle Open Office Writer : registering;databases (Base) +Oracle Open Office Writer : registering;Oracle Open Office +Oracle Open Office Writer : regression curves in charts +Oracle Open Office Writer : regular expressions +Oracle Open Office Writer : regular expressions;list of +Oracle Open Office Writer : regular expressions;searching +Oracle Open Office Writer : rejecting word completions +Oracle Open Office Writer : related words in thesaurus +Oracle Open Office Writer : relational databases (Base) +Oracle Open Office Writer : relations +Oracle Open Office Writer : relations;creating and deleting (Base) +Oracle Open Office Writer : relations;joining tables (Base) +Oracle Open Office Writer : relations;properties (Base) +Oracle Open Office Writer : relative distribution of table cells +Oracle Open Office Writer : relative hyperlinks +Oracle Open Office Writer : relative saving of URLs +Oracle Open Office Writer : reloading +Oracle Open Office Writer : reloading;documents +Oracle Open Office Writer : reloading;HTML documents, automatically +Oracle Open Office Writer : remarks, see also comments +Oracle Open Office Writer : remote configurations +Oracle Open Office Writer : remove noise filter +Oracle Open Office Writer : removing +Oracle Open Office Writer : removing;bullets and numbering +Oracle Open Office Writer : removing;bullets in text documents +Oracle Open Office Writer : removing;cell protection in text documents +Oracle Open Office Writer : removing;form filters +Oracle Open Office Writer : removing;subdocuments +Oracle Open Office Writer : removing, see also deleting +Oracle Open Office Writer : reorganizing charts +Oracle Open Office Writer : repeating +Oracle Open Office Writer : repeating;commands +Oracle Open Office Writer : repeating;table headings after page breaks +Oracle Open Office Writer : replacement options +Oracle Open Office Writer : replacement table +Oracle Open Office Writer : replacing +Oracle Open Office Writer : replacing;AutoCorrect function +Oracle Open Office Writer : replacing;dashes +Oracle Open Office Writer : replacing;databases +Oracle Open Office Writer : replacing;fields, by text +Oracle Open Office Writer : replacing;objects from Gallery +Oracle Open Office Writer : replacing;ordinal numbers +Oracle Open Office Writer : replacing;tab stops (regular expressions) +Oracle Open Office Writer : replacing;text and text formats +Oracle Open Office Writer : Report Builder +Oracle Open Office Writer : reports +Oracle Open Office Writer : reports;creating +Oracle Open Office Writer : reports;error reports +Oracle Open Office Writer : reports;opening and editing +Oracle Open Office Writer : reports;templates +Oracle Open Office Writer : resetting +Oracle Open Office Writer : resetting;fonts +Oracle Open Office Writer : resetting;templates +Oracle Open Office Writer : resizing +Oracle Open Office Writer : resizing;aspect ratio +Oracle Open Office Writer : resizing;objects and frames, by keyboard +Oracle Open Office Writer : resizing;objects, by mouse +Oracle Open Office Writer : resizing;rows and columns in text tables +Oracle Open Office Writer : resizing;text frames, by mouse +Oracle Open Office Writer : resizing;windows +Oracle Open Office Writer : resizing, see also scaling/zooming +Oracle Open Office Writer : resolution when printing bitmaps +Oracle Open Office Writer : restoring +Oracle Open Office Writer : restoring;default formatting +Oracle Open Office Writer : restoring;editing +Oracle Open Office Writer : reversing printing order +Oracle Open Office Writer : review function +Oracle Open Office Writer : review function;accepting or rejecting changes +Oracle Open Office Writer : review function;comparing documents +Oracle Open Office Writer : review function;protecting records +Oracle Open Office Writer : review function;recording changes example +Oracle Open Office Writer : review function;tracking changes +Oracle Open Office Writer : rich text control +Oracle Open Office Writer : right alignment of paragraphs +Oracle Open Office Writer : right indents in paragraphs +Oracle Open Office Writer : right joins (Base) +Oracle Open Office Writer : right pages +Oracle Open Office Writer : right-to-left text +Oracle Open Office Writer : rising outline levels +Oracle Open Office Writer : rotating +Oracle Open Office Writer : rotating;3D text +Oracle Open Office Writer : rotating;text +Oracle Open Office Writer : round corners +Oracle Open Office Writer : rounding precision (Calc) +Oracle Open Office Writer : row breaks in text tables +Oracle Open Office Writer : row headers +Oracle Open Office Writer : row headers;displaying (Calc) +Oracle Open Office Writer : row headers;highlighting (Calc) +Oracle Open Office Writer : rows +Oracle Open Office Writer : rows;inserting in tables, using icon +Oracle Open Office Writer : rows;inserting/deleting in tables by keyboard +Oracle Open Office Writer : rows;register-true text +Oracle Open Office Writer : rows;selecting +Oracle Open Office Writer : rulers +Oracle Open Office Writer : rulers;default settings +Oracle Open Office Writer : rulers;measurement units +Oracle Open Office Writer : rulers;using rulers +Oracle Open Office Writer : rulers;visible in presentations +Oracle Open Office Writer : rules +Oracle Open Office Writer : running titles in headers +Oracle Open Office Writer : samples and templates +Oracle Open Office Writer : saving +Oracle Open Office Writer : saving;default file formats +Oracle Open Office Writer : saving;dialog settings +Oracle Open Office Writer : saving;documents +Oracle Open Office Writer : saving;documents for mobile devices +Oracle Open Office Writer : saving;documents in other formats +Oracle Open Office Writer : saving;documents, automatically +Oracle Open Office Writer : saving;in HTML format +Oracle Open Office Writer : saving;in Microsoft Office file format +Oracle Open Office Writer : saving;options +Oracle Open Office Writer : saving;templates +Oracle Open Office Writer : saving;to XML +Oracle Open Office Writer : saving;VBA code in Microsoft Office documents +Oracle Open Office Writer : saving;with password by default +Oracle Open Office Writer : saving as command +Oracle Open Office Writer : saving as command;precautions +Oracle Open Office Writer : scaling +Oracle Open Office Writer : scaling;axes +Oracle Open Office Writer : scaling;font sizes in user interface +Oracle Open Office Writer : scaling;objects +Oracle Open Office Writer : scaling;pictures +Oracle Open Office Writer : scaling;printing in Oracle Open Office Math +Oracle Open Office Writer : scaling;text frames, by mouse +Oracle Open Office Writer : scaling;text in charts +Oracle Open Office Writer : scaling;when printing presentations +Oracle Open Office Writer : scaling, see also zooming +Oracle Open Office Writer : scanning pictures +Oracle Open Office Writer : scatter charts +Oracle Open Office Writer : scope of page styles +Oracle Open Office Writer : screen +Oracle Open Office Writer : screen;full screen views +Oracle Open Office Writer : screen;scaling +Oracle Open Office Writer : screen magnifiers +Oracle Open Office Writer : screen readers +Oracle Open Office Writer : script organization +Oracle Open Office Writer : scrollbars +Oracle Open Office Writer : scrollbars;controls +Oracle Open Office Writer : scrollbars;displaying (Calc) +Oracle Open Office Writer : scrollbars;horizontal and vertical (Writer) +Oracle Open Office Writer : search criteria for database functions in cells +Oracle Open Office Writer : search engines +Oracle Open Office Writer : search engines;definition +Oracle Open Office Writer : search engines;selecting +Oracle Open Office Writer : searching +Oracle Open Office Writer : searching;all sheets +Oracle Open Office Writer : searching;cross-references +Oracle Open Office Writer : searching;databases +Oracle Open Office Writer : searching;form filters +Oracle Open Office Writer : searching;formats +Oracle Open Office Writer : searching;Internet +Oracle Open Office Writer : searching;repeating a search +Oracle Open Office Writer : searching;synonyms +Oracle Open Office Writer : searching;tables and forms +Oracle Open Office Writer : searching;with wildcards +Oracle Open Office Writer : searching, see also finding +Oracle Open Office Writer : secondary axes in charts +Oracle Open Office Writer : sections +Oracle Open Office Writer : sections;backgrounds +Oracle Open Office Writer : sections;columns in/use of +Oracle Open Office Writer : sections;defining conditions +Oracle Open Office Writer : sections;editing +Oracle Open Office Writer : sections;hiding +Oracle Open Office Writer : sections;inserting +Oracle Open Office Writer : sections;inserting external content +Oracle Open Office Writer : sections;inserting sections by DDE +Oracle Open Office Writer : sections;moving and copying +Oracle Open Office Writer : sections;protecting/unprotecting +Oracle Open Office Writer : security +Oracle Open Office Writer : security;digital signatures +Oracle Open Office Writer : security;options for documents with macros +Oracle Open Office Writer : security;protecting contents +Oracle Open Office Writer : security;security levels for macros +Oracle Open Office Writer : security;warning dialogs with macros +Oracle Open Office Writer : selecting +Oracle Open Office Writer : selecting;controls +Oracle Open Office Writer : selecting;measurement units +Oracle Open Office Writer : selecting;objects +Oracle Open Office Writer : selecting;paper trays +Oracle Open Office Writer : selecting;print areas +Oracle Open Office Writer : selecting;several files +Oracle Open Office Writer : selecting;tables +Oracle Open Office Writer : selecting;text, with keyboard +Oracle Open Office Writer : selection clipboard +Oracle Open Office Writer : selection frames +Oracle Open Office Writer : selection modes in text +Oracle Open Office Writer : sending +Oracle Open Office Writer : sending;AutoAbstract function in presentations +Oracle Open Office Writer : sending;documents as e-mail +Oracle Open Office Writer : sending;documents as faxes +Oracle Open Office Writer : separation, see hyphenation +Oracle Open Office Writer : separator lines +Oracle Open Office Writer : separator lines;AutoCorrect function +Oracle Open Office Writer : separator lines;defining +Oracle Open Office Writer : separators +Oracle Open Office Writer : separators;conditional +Oracle Open Office Writer : serial letters +Oracle Open Office Writer : Server Side ImageMap +Oracle Open Office Writer : settings +Oracle Open Office Writer : settings;direct cursor +Oracle Open Office Writer : settings;printers +Oracle Open Office Writer : settings;program configuration +Oracle Open Office Writer : settings;proxies +Oracle Open Office Writer : settings;views +Oracle Open Office Writer : settings;word completion +Oracle Open Office Writer : SGML +Oracle Open Office Writer : SGML;definition +Oracle Open Office Writer : shadows +Oracle Open Office Writer : shadows;areas +Oracle Open Office Writer : shadows;borders +Oracle Open Office Writer : shadows;characters +Oracle Open Office Writer : shadows;characters, using context menu +Oracle Open Office Writer : shadows;headers/footers +Oracle Open Office Writer : shapes +Oracle Open Office Writer : sharing documents +Oracle Open Office Writer : sharpening filter +Oracle Open Office Writer : sheet tabs +Oracle Open Office Writer : sheet tabs;displaying +Oracle Open Office Writer : sheets +Oracle Open Office Writer : sheets;searching all +Oracle Open Office Writer : shortcut keys +Oracle Open Office Writer : shortcut keys;assigning macros +Oracle Open Office Writer : shortcut keys;bold formatting +Oracle Open Office Writer : shortcut keys;charts +Oracle Open Office Writer : shortcut keys;general +Oracle Open Office Writer : shortcut keys;in databases +Oracle Open Office Writer : shortcut keys;in text documents +Oracle Open Office Writer : shortcut keys;Oracle Open Office accessibility +Oracle Open Office Writer : showing +Oracle Open Office Writer : showing;changes +Oracle Open Office Writer : showing;docked windows +Oracle Open Office Writer : showing;drawings and controls (Writer) +Oracle Open Office Writer : showing;live presentations on the Internet +Oracle Open Office Writer : showing;rulers +Oracle Open Office Writer : showing;toolbars +Oracle Open Office Writer : sideways orientation of pages +Oracle Open Office Writer : signing documents with digital signatures +Oracle Open Office Writer : similarity search +Oracle Open Office Writer : simple handles (Writer) +Oracle Open Office Writer : simplified Chinese +Oracle Open Office Writer : simplified Chinese;conversion to traditional Chinese +Oracle Open Office Writer : single sign on options +Oracle Open Office Writer : single-line spacing in text +Oracle Open Office Writer : sizes +Oracle Open Office Writer : sizes;draw objects +Oracle Open Office Writer : sizes;pictures +Oracle Open Office Writer : slanting draw objects +Oracle Open Office Writer : small capitals +Oracle Open Office Writer : small capitals (guide) +Oracle Open Office Writer : small icons +Oracle Open Office Writer : smart tag configuration +Oracle Open Office Writer : smart tags +Oracle Open Office Writer : smooth scrolling (Writer) +Oracle Open Office Writer : smoothing filter +Oracle Open Office Writer : snap grid defaults (Writer/Calc) +Oracle Open Office Writer : snapping in presentations and drawings +Oracle Open Office Writer : solarization filter +Oracle Open Office Writer : sort lists +Oracle Open Office Writer : sort lists;copying to in Calc +Oracle Open Office Writer : sorting +Oracle Open Office Writer : sorting;data in forms +Oracle Open Office Writer : sorting;databases +Oracle Open Office Writer : sorting;paragraphs in special languages +Oracle Open Office Writer : sorting;paragraphs/table rows +Oracle Open Office Writer : sound files +Oracle Open Office Writer : spaces +Oracle Open Office Writer : spaces;displaying (Writer) +Oracle Open Office Writer : spaces;ignoring double +Oracle Open Office Writer : spaces;inserting protected spaces +Oracle Open Office Writer : spaces;showing protected spaces (Writer) +Oracle Open Office Writer : spacing +Oracle Open Office Writer : spacing;between paragraphs in footnotes +Oracle Open Office Writer : spacing;endnotes/footnotes +Oracle Open Office Writer : spacing;font effects +Oracle Open Office Writer : spacing;lines and paragraphs +Oracle Open Office Writer : spacing;register-true text +Oracle Open Office Writer : spacing;tab stops in text documents +Oracle Open Office Writer : spacing;tabs in presentations +Oracle Open Office Writer : spadmin +Oracle Open Office Writer : special characters +Oracle Open Office Writer : speech bubbles +Oracle Open Office Writer : speed of printing +Oracle Open Office Writer : spellcheck +Oracle Open Office Writer : spellcheck;activating for a language +Oracle Open Office Writer : spellcheck;activating for all languages +Oracle Open Office Writer : spellcheck;AutoSpellcheck on/off +Oracle Open Office Writer : spellcheck;checking text documents manually +Oracle Open Office Writer : spellcheck;context menus +Oracle Open Office Writer : spellcheck;default languages +Oracle Open Office Writer : spellcheck;dialog +Oracle Open Office Writer : spellcheck;dictionary of exceptions +Oracle Open Office Writer : spellcheck;ignore list +Oracle Open Office Writer : spelling in thesaurus +Oracle Open Office Writer : spin button creation +Oracle Open Office Writer : splitting cells +Oracle Open Office Writer : splitting cells;by keyboard +Oracle Open Office Writer : splitting cells;by menu command +Oracle Open Office Writer : splitting tables +Oracle Open Office Writer : splitting tables;at cursor position +Oracle Open Office Writer : splitting tables;row breaks +Oracle Open Office Writer : spoolfiles with Xprinter +Oracle Open Office Writer : spreadsheets +Oracle Open Office Writer : spreadsheets;as databases (base) +Oracle Open Office Writer : spreadsheets;copying areas to text documents +Oracle Open Office Writer : spreadsheets;creating/opening +Oracle Open Office Writer : spreadsheets;inserting charts +Oracle Open Office Writer : spreadsheets;inserting database records +Oracle Open Office Writer : spreadsheets;inserting tables from +Oracle Open Office Writer : spreadsheets;printing +Oracle Open Office Writer : spreadsheets;saving +Oracle Open Office Writer : spreadsheets;saving automatically +Oracle Open Office Writer : spreadsheets;saving in other formats +Oracle Open Office Writer : spreadsheets;sending as e-mail +Oracle Open Office Writer : SQL +Oracle Open Office Writer : SQL;definition +Oracle Open Office Writer : SQL;DISTINCT parameter +Oracle Open Office Writer : SQL;executing SQL commands +Oracle Open Office Writer : SQL;executing SQL statements (Base) +Oracle Open Office Writer : SQL;queries (Base) +Oracle Open Office Writer : square drawings +Oracle Open Office Writer : standard bar on/off +Oracle Open Office Writer : standard deviation in charts +Oracle Open Office Writer : standard filters +Oracle Open Office Writer : standard filters;comparison operators +Oracle Open Office Writer : standard filters;databases +Oracle Open Office Writer : standard printer under UNIX +Oracle Open Office Writer : start center +Oracle Open Office Writer : start parameters +Oracle Open Office Writer : starting page numbers +Oracle Open Office Writer : statistical functions +Oracle Open Office Writer : statistics in charts +Oracle Open Office Writer : status bar on/off +Oracle Open Office Writer : stickers +Oracle Open Office Writer : stock charts +Oracle Open Office Writer : storing bibliographic information +Oracle Open Office Writer : strikethrough +Oracle Open Office Writer : strikethrough;characters +Oracle Open Office Writer : strikethrough;font effects +Oracle Open Office Writer : styles +Oracle Open Office Writer : styles;'changed' message +Oracle Open Office Writer : styles;categories +Oracle Open Office Writer : styles;conditional +Oracle Open Office Writer : styles;copying between documents +Oracle Open Office Writer : styles;creating from selections +Oracle Open Office Writer : styles;finding +Oracle Open Office Writer : styles;for pages +Oracle Open Office Writer : styles;importing from other files +Oracle Open Office Writer : styles;keyboard shortcuts +Oracle Open Office Writer : styles;master documents +Oracle Open Office Writer : styles;organizing +Oracle Open Office Writer : styles;page numbers +Oracle Open Office Writer : styles;printing styles used in a document +Oracle Open Office Writer : styles;replacing automatically +Oracle Open Office Writer : styles;styles and templates +Oracle Open Office Writer : styles;table styles +Oracle Open Office Writer : styles;transferring +Oracle Open Office Writer : styles;updating from selections +Oracle Open Office Writer : Styles and Formatting window +Oracle Open Office Writer : Styles and Formatting window;applying styles +Oracle Open Office Writer : Styles and Formatting window;docking +Oracle Open Office Writer : Styles and Formatting window;docking and resizing +Oracle Open Office Writer : Styles and Formatting window;updating from selections +Oracle Open Office Writer : Stylist, see Styles and Formatting window +Oracle Open Office Writer : subdocuments +Oracle Open Office Writer : subdocuments;creating/editing/removing +Oracle Open Office Writer : subdocuments;properties +Oracle Open Office Writer : subforms +Oracle Open Office Writer : subforms;creating +Oracle Open Office Writer : subforms;description +Oracle Open Office Writer : subject fields +Oracle Open Office Writer : submitting forms +Oracle Open Office Writer : subscript text +Oracle Open Office Writer : subsidiary documents +Oracle Open Office Writer : suffixes in file formats +Oracle Open Office Writer : sums of table cell series +Oracle Open Office Writer : superscript text +Oracle Open Office Writer : support on the Web +Oracle Open Office Writer : switching off +Oracle Open Office Writer : switching off;hyphenation for specific words +Oracle Open Office Writer : switching off;word completion +Oracle Open Office Writer : synchronizing +Oracle Open Office Writer : synchronizing;labels and business cards +Oracle Open Office Writer : synchronizing;Pocket PC and Oracle Open Office formats +Oracle Open Office Writer : synonyms in thesaurus +Oracle Open Office Writer : system address book registration +Oracle Open Office Writer : tab stops +Oracle Open Office Writer : tab stops;before headings +Oracle Open Office Writer : tab stops;displaying (Writer) +Oracle Open Office Writer : tab stops;inserting and editing +Oracle Open Office Writer : tab stops;inserting in lists +Oracle Open Office Writer : tab stops;regular expressions +Oracle Open Office Writer : tab stops;setting in sheets +Oracle Open Office Writer : tab stops;settings +Oracle Open Office Writer : tab stops;spacing in presentations +Oracle Open Office Writer : tab stops;spacing in text documents +Oracle Open Office Writer : table cells +Oracle Open Office Writer : table cells;adjusting the width on rulers +Oracle Open Office Writer : table cells;calculating sums +Oracle Open Office Writer : table cells;enlarging/reducing in text +Oracle Open Office Writer : table controls +Oracle Open Office Writer : table controls;form functions +Oracle Open Office Writer : table controls;keyboard-only edit mode +Oracle Open Office Writer : table controls;properties +Oracle Open Office Writer : table mode selection +Oracle Open Office Writer : table views of databases +Oracle Open Office Writer : Table Wizard (Base) +Oracle Open Office Writer : tables +Oracle Open Office Writer : tables;adapting the width by keyboard +Oracle Open Office Writer : tables;allowing page breaks +Oracle Open Office Writer : tables;AutoFormat function +Oracle Open Office Writer : tables;backgrounds +Oracle Open Office Writer : tables;calculating across +Oracle Open Office Writer : tables;calculating sums +Oracle Open Office Writer : tables;converting to text +Oracle Open Office Writer : tables;cross-referencing +Oracle Open Office Writer : tables;defining borders +Oracle Open Office Writer : tables;deleting +Oracle Open Office Writer : tables;deleting page breaks before +Oracle Open Office Writer : tables;editing by keyboard +Oracle Open Office Writer : tables;editing with the keyboard +Oracle Open Office Writer : tables;heading repetition after page breaks +Oracle Open Office Writer : tables;inserting columns in +Oracle Open Office Writer : tables;inserting line breaks +Oracle Open Office Writer : tables;inserting rows +Oracle Open Office Writer : tables;inserting text before +Oracle Open Office Writer : tables;inserting text tables +Oracle Open Office Writer : tables;jumping to +Oracle Open Office Writer : tables;labeling +Oracle Open Office Writer : tables;merging +Oracle Open Office Writer : tables;merging cells +Oracle Open Office Writer : tables;number recognition +Oracle Open Office Writer : tables;performing calculations in +Oracle Open Office Writer : tables;positioning +Oracle Open Office Writer : tables;protecting/unprotecting cells +Oracle Open Office Writer : tables;resizing/juxtaposing +Oracle Open Office Writer : tables;selecting +Oracle Open Office Writer : tables;sorting rows +Oracle Open Office Writer : tables;splitting +Oracle Open Office Writer : tables;start/end of document +Oracle Open Office Writer : tables;text flow around text tables +Oracle Open Office Writer : tables in databases +Oracle Open Office Writer : tables in databases;access rights to (Base) +Oracle Open Office Writer : tables in databases;adding to queries +Oracle Open Office Writer : tables in databases;browsing and editing +Oracle Open Office Writer : tables in databases;copying database tables (Base) +Oracle Open Office Writer : tables in databases;creating +Oracle Open Office Writer : tables in databases;creating in design view (manually) +Oracle Open Office Writer : tables in databases;importing text formats (Base) +Oracle Open Office Writer : tables in databases;joining for queries (Base) +Oracle Open Office Writer : tables in databases;printing queries (Base) +Oracle Open Office Writer : tables in databases;relations (Base) +Oracle Open Office Writer : tables in databases;searching +Oracle Open Office Writer : tables in spreadsheets +Oracle Open Office Writer : tables in spreadsheets;copying data to other applications +Oracle Open Office Writer : tables in spreadsheets;defining borders +Oracle Open Office Writer : tables in spreadsheets;inserting in text +Oracle Open Office Writer : tables in spreadsheets;value highlighting +Oracle Open Office Writer : tables in text +Oracle Open Office Writer : tables in text;captions +Oracle Open Office Writer : tables in text;creating automatically +Oracle Open Office Writer : tables in text;default settings +Oracle Open Office Writer : tables in text;defining borders +Oracle Open Office Writer : tables in text;displaying +Oracle Open Office Writer : tables in text;printing +Oracle Open Office Writer : tables of contents +Oracle Open Office Writer : tables of contents;creating and updating +Oracle Open Office Writer : tables of contents;defining entries in +Oracle Open Office Writer : tables of contents;editing and deleting +Oracle Open Office Writer : tables of contents;editing or deleting entries +Oracle Open Office Writer : tables of contents;formatting +Oracle Open Office Writer : tables of contents;hyperlinks as entries +Oracle Open Office Writer : tables of contents;unprotecting +Oracle Open Office Writer : tabs +Oracle Open Office Writer : tabs;displaying sheet tabs +Oracle Open Office Writer : tags +Oracle Open Office Writer : tags;definition +Oracle Open Office Writer : tags;in Oracle Open Office Writer +Oracle Open Office Writer : tags;META tags +Oracle Open Office Writer : templates +Oracle Open Office Writer : templates;agendas +Oracle Open Office Writer : templates;changing basic fonts +Oracle Open Office Writer : templates;creating document templates +Oracle Open Office Writer : templates;database reports +Oracle Open Office Writer : templates;default templates +Oracle Open Office Writer : templates;deleting +Oracle Open Office Writer : templates;editing and saving +Oracle Open Office Writer : templates;faxes +Oracle Open Office Writer : templates;importing and exporting +Oracle Open Office Writer : templates;letters +Oracle Open Office Writer : templates;new documents from templates +Oracle Open Office Writer : templates;opening documents with +Oracle Open Office Writer : templates;organizing +Oracle Open Office Writer : templates;organizing (guide) +Oracle Open Office Writer : templates;updating from selections +Oracle Open Office Writer : terminology +Oracle Open Office Writer : terminology;general glossary +Oracle Open Office Writer : terminology;Internet glossary +Oracle Open Office Writer : testing XML filters +Oracle Open Office Writer : text +Oracle Open Office Writer : text;animating +Oracle Open Office Writer : text;Asian layout +Oracle Open Office Writer : text;backgrounds +Oracle Open Office Writer : text;bold +Oracle Open Office Writer : text;coloring +Oracle Open Office Writer : text;conditional text +Oracle Open Office Writer : text;converting to tables +Oracle Open Office Writer : text;copying by drag and drop +Oracle Open Office Writer : text;CTL languages +Oracle Open Office Writer : text;cursor +Oracle Open Office Writer : text;drawing pictures +Oracle Open Office Writer : text;emphasizing +Oracle Open Office Writer : text;font effects +Oracle Open Office Writer : text;font sizes +Oracle Open Office Writer : text;font styles +Oracle Open Office Writer : text;fonts and formats +Oracle Open Office Writer : text;Fontwork icons +Oracle Open Office Writer : text;formatting around objects +Oracle Open Office Writer : text;formatting bold while typing +Oracle Open Office Writer : text;hiding +Oracle Open Office Writer : text;hiding from specific users, with conditions +Oracle Open Office Writer : text;hyperlinks +Oracle Open Office Writer : text;input fields +Oracle Open Office Writer : text;inserting pictures from Draw +Oracle Open Office Writer : text;inserting pictures in +Oracle Open Office Writer : text;inserting special characters +Oracle Open Office Writer : text;italics +Oracle Open Office Writer : text;kerning +Oracle Open Office Writer : text;language selection +Oracle Open Office Writer : text;line numbers +Oracle Open Office Writer : text;line spacing +Oracle Open Office Writer : text;multi-column +Oracle Open Office Writer : text;navigating and selecting with keyboard +Oracle Open Office Writer : text;non-printable +Oracle Open Office Writer : text;number of words/characters +Oracle Open Office Writer : text;overwriting or inserting +Oracle Open Office Writer : text;printing in black +Oracle Open Office Writer : text;replacing with format +Oracle Open Office Writer : text;rotating +Oracle Open Office Writer : text;selection modes +Oracle Open Office Writer : text;shadowed +Oracle Open Office Writer : text;sorting paragraphs +Oracle Open Office Writer : text;subscript and superscript +Oracle Open Office Writer : text;text/draw objects +Oracle Open Office Writer : text;turning off automatic correction +Oracle Open Office Writer : text;uppercase or lowercase +Oracle Open Office Writer : text animation +Oracle Open Office Writer : text attributes +Oracle Open Office Writer : text attributes;hyperlinks +Oracle Open Office Writer : text attributes;undoing +Oracle Open Office Writer : text blocks +Oracle Open Office Writer : text boxes +Oracle Open Office Writer : text boxes;form functions +Oracle Open Office Writer : text boxes;positioning +Oracle Open Office Writer : text breaks in cells +Oracle Open Office Writer : text colors for better accessibility +Oracle Open Office Writer : text columns +Oracle Open Office Writer : text databases (Base) +Oracle Open Office Writer : text documents +Oracle Open Office Writer : text documents;creating/opening +Oracle Open Office Writer : text documents;default templates +Oracle Open Office Writer : text documents;importing/exporting +Oracle Open Office Writer : text documents;inserting Calc charts +Oracle Open Office Writer : text documents;inserting spreadsheet cells +Oracle Open Office Writer : text documents;merging +Oracle Open Office Writer : text documents;print settings +Oracle Open Office Writer : text documents;printing +Oracle Open Office Writer : text documents;publishing in HTML +Oracle Open Office Writer : text documents;saving +Oracle Open Office Writer : text documents;saving automatically +Oracle Open Office Writer : text documents;saving in other formats +Oracle Open Office Writer : text documents;sending as e-mail +Oracle Open Office Writer : text documents;shortcut keys in +Oracle Open Office Writer : text documents;word completion settings +Oracle Open Office Writer : text effects +Oracle Open Office Writer : text flow +Oracle Open Office Writer : text flow;around text tables +Oracle Open Office Writer : text flow;at breaks +Oracle Open Office Writer : text flow;from frame to frame +Oracle Open Office Writer : text flow;in cells +Oracle Open Office Writer : text formats +Oracle Open Office Writer : text formats;copying and pasting +Oracle Open Office Writer : text formats;databases +Oracle Open Office Writer : text formats;finding +Oracle Open Office Writer : text formats;pasting +Oracle Open Office Writer : text frames +Oracle Open Office Writer : text frames;centering on pages +Oracle Open Office Writer : text frames;inserting/editing/linking +Oracle Open Office Writer : text frames;labeling +Oracle Open Office Writer : text grid for Asian layout +Oracle Open Office Writer : text input fields +Oracle Open Office Writer : text layout for special languages +Oracle Open Office Writer : text objects +Oracle Open Office Writer : text objects;alignment +Oracle Open Office Writer : text objects;draw functions +Oracle Open Office Writer : text objects;fonts +Oracle Open Office Writer : text objects;in presentations and drawings +Oracle Open Office Writer : text overflow in spreadsheet cells +Oracle Open Office Writer : text scaling in charts +Oracle Open Office Writer : text wrap around objects +Oracle Open Office Writer : text, see also text documents, paragraphs and characters +Oracle Open Office Writer : TextArt, see Fontwork +Oracle Open Office Writer : textures +Oracle Open Office Writer : textures;inserting from Gallery +Oracle Open Office Writer : textures;on chart bars +Oracle Open Office Writer : Thai +Oracle Open Office Writer : Thai;entering text +Oracle Open Office Writer : Thai;language settings +Oracle Open Office Writer : thesaurus +Oracle Open Office Writer : thesaurus;activating for a language +Oracle Open Office Writer : thesaurus;related words +Oracle Open Office Writer : ticker text +Oracle Open Office Writer : time fields +Oracle Open Office Writer : time fields;form functions +Oracle Open Office Writer : time fields;HTML +Oracle Open Office Writer : time fields;inserting +Oracle Open Office Writer : times +Oracle Open Office Writer : times;inserting when printing presentations +Oracle Open Office Writer : times, formats +Oracle Open Office Writer : tips +Oracle Open Office Writer : tips;extended tips in Help +Oracle Open Office Writer : title pages +Oracle Open Office Writer : title pages;centering text on +Oracle Open Office Writer : title pages;page styles +Oracle Open Office Writer : title rows +Oracle Open Office Writer : title rows;printing in Oracle Open Office Math +Oracle Open Office Writer : titles +Oracle Open Office Writer : titles;alignment (charts) +Oracle Open Office Writer : titles;changing +Oracle Open Office Writer : titles;editing in charts +Oracle Open Office Writer : titles;font effects +Oracle Open Office Writer : titles;formatting automatically +Oracle Open Office Writer : titles;formatting charts +Oracle Open Office Writer : titles;objects +Oracle Open Office Writer : toolbars +Oracle Open Office Writer : toolbars;adding buttons +Oracle Open Office Writer : toolbars;docking/undocking +Oracle Open Office Writer : toolbars;Form Navigation bar +Oracle Open Office Writer : toolbars;viewing/closing +Oracle Open Office Writer : tools bar +Oracle Open Office Writer : tooltips +Oracle Open Office Writer : tooltips;extended tips +Oracle Open Office Writer : tooltips;help +Oracle Open Office Writer : totals in text tables +Oracle Open Office Writer : Track Changes, see review function +Oracle Open Office Writer : traditional Chinese +Oracle Open Office Writer : traditional Chinese;conversion to simplified Chinese +Oracle Open Office Writer : transparency +Oracle Open Office Writer : transparency;areas +Oracle Open Office Writer : transparency;off for faster printing +Oracle Open Office Writer : transparency;saving +Oracle Open Office Writer : tree view of Help +Oracle Open Office Writer : trend lines in charts +Oracle Open Office Writer : triangle drawing +Oracle Open Office Writer : trigonometric functions +Oracle Open Office Writer : turning off automatic correction +Oracle Open Office Writer : typefaces +Oracle Open Office Writer : typefaces;formats +Oracle Open Office Writer : typography +Oracle Open Office Writer : typography;Asian +Oracle Open Office Writer : underlining +Oracle Open Office Writer : underlining;AutoFormat function +Oracle Open Office Writer : underlining;characters +Oracle Open Office Writer : underlining;quick +Oracle Open Office Writer : underlining;text +Oracle Open Office Writer : undocking windows +Oracle Open Office Writer : undoing +Oracle Open Office Writer : undoing;direct formatting +Oracle Open Office Writer : undoing;editing +Oracle Open Office Writer : undoing;number of steps +Oracle Open Office Writer : ungrouping groups +Oracle Open Office Writer : units +Oracle Open Office Writer : units;converting +Oracle Open Office Writer : units;measurement units +Oracle Open Office Writer : unlinking frames +Oracle Open Office Writer : UNO components +Oracle Open Office Writer : UNO components;Extension Manager +Oracle Open Office Writer : UNO components;integrating new +Oracle Open Office Writer : unprotecting tables of contents and indexes +Oracle Open Office Writer : update options +Oracle Open Office Writer : updates +Oracle Open Office Writer : updates;checking automatically +Oracle Open Office Writer : updates;checking manually +Oracle Open Office Writer : updating +Oracle Open Office Writer : updating;cross-references +Oracle Open Office Writer : updating;fields +Oracle Open Office Writer : updating;fields and charts, automatically (Writer) +Oracle Open Office Writer : updating;indexes/tables of contents +Oracle Open Office Writer : updating;linked sections, manually +Oracle Open Office Writer : updating;links in text documents +Oracle Open Office Writer : updating;links, on opening +Oracle Open Office Writer : updating;styles, from selections +Oracle Open Office Writer : updating;tables of contents +Oracle Open Office Writer : updating;templates +Oracle Open Office Writer : updating;text documents +Oracle Open Office Writer : uppercase +Oracle Open Office Writer : uppercase;changing to lowercase +Oracle Open Office Writer : uppercase;formatting text +Oracle Open Office Writer : URL +Oracle Open Office Writer : URL;changing hyperlink URLs +Oracle Open Office Writer : URL;definition +Oracle Open Office Writer : URL;in pictures +Oracle Open Office Writer : URL;saving absolute/relative paths +Oracle Open Office Writer : URL;turning off URL recognition +Oracle Open Office Writer : user data +Oracle Open Office Writer : user data;in conditions +Oracle Open Office Writer : user data;input +Oracle Open Office Writer : user data;querying +Oracle Open Office Writer : user data;removing when saving +Oracle Open Office Writer : user feedback +Oracle Open Office Writer : user feedback;automatically +Oracle Open Office Writer : user variables in conditions/fields +Oracle Open Office Writer : user-defined dictionaries +Oracle Open Office Writer : user-defined dictionaries;creating +Oracle Open Office Writer : user-defined dictionaries;dictionary of exceptions +Oracle Open Office Writer : user-defined dictionaries;editing +Oracle Open Office Writer : user-defined dictionaries;removing words from +Oracle Open Office Writer : user-defined fields, restriction +Oracle Open Office Writer : user-defined indexes +Oracle Open Office Writer : user-defined styles +Oracle Open Office Writer : user-defined styles;automatically replacing +Oracle Open Office Writer : UTF-8/UCS2 support +Oracle Open Office Writer : values +Oracle Open Office Writer : values;rounded as shown (Calc) +Oracle Open Office Writer : variable dates +Oracle Open Office Writer : variables +Oracle Open Office Writer : variables;document properties +Oracle Open Office Writer : variables;for hiding text +Oracle Open Office Writer : variables;for paths +Oracle Open Office Writer : variables;in conditions +Oracle Open Office Writer : variances in charts +Oracle Open Office Writer : VBA code +Oracle Open Office Writer : VBA code;loading/saving documents with VBA code +Oracle Open Office Writer : version management +Oracle Open Office Writer : version numbers of documents +Oracle Open Office Writer : versions +Oracle Open Office Writer : versions;comparing documents +Oracle Open Office Writer : versions;file saving as, restriction +Oracle Open Office Writer : versions;merging document versions +Oracle Open Office Writer : versions;of a document +Oracle Open Office Writer : versions;Oracle Open Office +Oracle Open Office Writer : vertical callouts +Oracle Open Office Writer : vertical rulers +Oracle Open Office Writer : vertical scrollbars (Writer) +Oracle Open Office Writer : vertical text boxes +Oracle Open Office Writer : videos +Oracle Open Office Writer : viewing +Oracle Open Office Writer : viewing;databases +Oracle Open Office Writer : viewing;fields +Oracle Open Office Writer : viewing;file properties +Oracle Open Office Writer : viewing;Oracle Open Office documents in Internet Explorer +Oracle Open Office Writer : viewing;toolbars +Oracle Open Office Writer : views +Oracle Open Office Writer : views;creating database views (Base) +Oracle Open Office Writer : views;defaults +Oracle Open Office Writer : views;full screen +Oracle Open Office Writer : views;icons +Oracle Open Office Writer : views;scaling +Oracle Open Office Writer : Visual Basic for Applications +Oracle Open Office Writer : Visual Basic for Applications;loading/saving documents with VBA code +Oracle Open Office Writer : watermarks +Oracle Open Office Writer : web documents +Oracle Open Office Writer : web documents;XForms +Oracle Open Office Writer : Web support +Oracle Open Office Writer : WebCast export +Oracle Open Office Writer : WebDAV over HTTPS +Oracle Open Office Writer : weekdays +Oracle Open Office Writer : weekdays;automatically completing +Oracle Open Office Writer : widows +Oracle Open Office Writer : wildcards, see regular expressions +Oracle Open Office Writer : windows +Oracle Open Office Writer : windows;docking +Oracle Open Office Writer : windows;docking definition +Oracle Open Office Writer : windows;hiding/showing/docking +Oracle Open Office Writer : windows;new +Oracle Open Office Writer : wizards +Oracle Open Office Writer : wizards;agendas +Oracle Open Office Writer : wizards;database queries +Oracle Open Office Writer : wizards;database tables (Base) +Oracle Open Office Writer : wizards;databases (Base) +Oracle Open Office Writer : wizards;document converter +Oracle Open Office Writer : wizards;Euro Converter +Oracle Open Office Writer : wizards;faxes +Oracle Open Office Writer : wizards;form letters +Oracle Open Office Writer : wizards;forms +Oracle Open Office Writer : wizards;letters +Oracle Open Office Writer : wizards;macros (Base) +Oracle Open Office Writer : wizards;overview +Oracle Open Office Writer : wizards;presentations +Oracle Open Office Writer : wizards;reports +Oracle Open Office Writer : word completion +Oracle Open Office Writer : word completion;settings +Oracle Open Office Writer : word completion;using/disabling +Oracle Open Office Writer : word counts +Oracle Open Office Writer : Word documents +Oracle Open Office Writer : Word documents;compatibility +Oracle Open Office Writer : Word documents;saving as +Oracle Open Office Writer : WordArt, see Fontwork +Oracle Open Office Writer : words +Oracle Open Office Writer : words;automatic replacement on/off +Oracle Open Office Writer : words;automatically replacing +Oracle Open Office Writer : words;backgrounds +Oracle Open Office Writer : words;counting in text +Oracle Open Office Writer : words;disabling spellcheck +Oracle Open Office Writer : words;wrapping in cells +Oracle Open Office Writer : words;wrapping in CTL +Oracle Open Office Writer : words;wrapping/not wrapping in text +Oracle Open Office Writer : working directory change +Oracle Open Office Writer : wrapping text +Oracle Open Office Writer : wrapping text;editing contours +Oracle Open Office Writer : wrapping text;in cells +Oracle Open Office Writer : write protection on/off +Oracle Open Office Writer : writing aids options +Oracle Open Office Writer : writing with direct cursor +Oracle Open Office Writer : WYSIWYG in fonts lists +Oracle Open Office Writer : X axes +Oracle Open Office Writer : X axes;grid formatting +Oracle Open Office Writer : X axes;positioning +Oracle Open Office Writer : X axes;scaling +Oracle Open Office Writer : X axes;showing +Oracle Open Office Writer : XForms +Oracle Open Office Writer : XForms;adding/editing/deleting/organizing namespaces +Oracle Open Office Writer : XForms;conditions +Oracle Open Office Writer : XForms;opening/editing +Oracle Open Office Writer : XML converters +Oracle Open Office Writer : XML file formats +Oracle Open Office Writer : XML filters +Oracle Open Office Writer : XML filters;creating/testing +Oracle Open Office Writer : XML filters;saving as package/installing/deleting +Oracle Open Office Writer : XML filters;settings +Oracle Open Office Writer : XML Forms, see XForms +Oracle Open Office Writer : XSLT filters, see also XML filters +Oracle Open Office Writer : XY charts +Oracle Open Office Writer : Y axes +Oracle Open Office Writer : Y axes;formatting +Oracle Open Office Writer : Y axes;grid formatting +Oracle Open Office Writer : Y axes;positioning +Oracle Open Office Writer : Y axes;scaling +Oracle Open Office Writer : Y axes;showing +Oracle Open Office Writer : years +Oracle Open Office Writer : years;2-digit options +Oracle Open Office Writer : Z axes +Oracle Open Office Writer : Z axes;grid formatting +Oracle Open Office Writer : Z axes;showing +Oracle Open Office Writer : zero values +Oracle Open Office Writer : zero values;displaying (Calc) +Oracle Open Office Writer : zooming +Oracle Open Office Writer : zooming;page views +Oracle Open Office Writer : zooming;pictures +Oracle Open Office Writer : zooming;status bar Oracle Open Office Draw : 3D charts Oracle Open Office Draw : 3D objects Oracle Open Office Draw : 3D objects;assembling @@ -19213,6 +19312,8 @@ Oracle Open Office Draw : 3D objects;inserting Oracle Open Office Draw : 3D rotation objects Oracle Open Office Draw : 3D rotation objects;converting to Oracle Open Office Draw : 3D rotation objects;generating +Oracle Open Office Draw : 3D scenes +Oracle Open Office Draw : 3D scenes;creating Oracle Open Office Draw : 3D text creation Oracle Open Office Draw : abbreviation replacement Oracle Open Office Draw : absolute hyperlinks @@ -19318,10 +19419,8 @@ Oracle Open Office Draw : AutoCorrect function;options Oracle Open Office Draw : AutoCorrect function;pictures and frames Oracle Open Office Draw : AutoCorrect function;quotes Oracle Open Office Draw : AutoCorrect function;replacement table -Oracle Open Office Draw : AutoCorrect function;switching on and off in Calc +Oracle Open Office Draw : AutoCorrect function;switching on and off Oracle Open Office Draw : AutoCorrect function;URL recognition -Oracle Open Office Draw : AutoFormat function -Oracle Open Office Draw : AutoFormat function;switching on and off Oracle Open Office Draw : automatic captions (Writer) Oracle Open Office Draw : automatic control focus Oracle Open Office Draw : automatic hyperlink formatting @@ -19542,6 +19641,7 @@ Oracle Open Office Draw : clipboard;pasting Oracle Open Office Draw : clipboard;pasting formatted/unformatted text Oracle Open Office Draw : clipboard;selection clipboard Oracle Open Office Draw : clipboard;Unix +Oracle Open Office Draw : Clippy, see Help Agent Oracle Open Office Draw : closing Oracle Open Office Draw : closing;documents Oracle Open Office Draw : closing;shapes @@ -19557,9 +19657,9 @@ Oracle Open Office Draw : colors;default colors Oracle Open Office Draw : colors;defining and saving Oracle Open Office Draw : colors;defining gradients interactively Oracle Open Office Draw : colors;displaying presentations -Oracle Open Office Draw : colors;fill format Oracle Open Office Draw : colors;fonts Oracle Open Office Draw : colors;grid lines and cells (Calc) +Oracle Open Office Draw : colors;ignored text color Oracle Open Office Draw : colors;loading lists Oracle Open Office Draw : colors;models Oracle Open Office Draw : colors;not printing @@ -19588,7 +19688,6 @@ Oracle Open Office Draw : commands Oracle Open Office Draw : commands;repeating Oracle Open Office Draw : commands;SQL Oracle Open Office Draw : comments -Oracle Open Office Draw : comments;displaying (Calc) Oracle Open Office Draw : comments;inserting/editing/deleting/printing Oracle Open Office Draw : comments;on changes Oracle Open Office Draw : comments;printing in text @@ -19598,7 +19697,7 @@ Oracle Open Office Draw : common terms;glossaries Oracle Open Office Draw : common terms;Internet glossary Oracle Open Office Draw : comparisons Oracle Open Office Draw : comparisons;document versions -Oracle Open Office Draw : comparisons;operators in default filter dialog +Oracle Open Office Draw : comparisons;operators in standard filter dialog Oracle Open Office Draw : compatibility settings for MS Word import Oracle Open Office Draw : complete screen view Oracle Open Office Draw : complex text layout @@ -19656,6 +19755,7 @@ Oracle Open Office Draw : controls;rich text control Oracle Open Office Draw : controls;select mode Oracle Open Office Draw : controls;showing (Writer) Oracle Open Office Draw : converters +Oracle Open Office Draw : converters;document converter Oracle Open Office Draw : converters;Euro converter Oracle Open Office Draw : converters;PostScript, UNIX Oracle Open Office Draw : converters;XML @@ -19705,6 +19805,7 @@ Oracle Open Office Draw : CTL;(not) wrapping words Oracle Open Office Draw : CTL;complex text layout languages Oracle Open Office Draw : CTL;definition Oracle Open Office Draw : CTL;options +Oracle Open Office Draw : cube drawing Oracle Open Office Draw : cubes Oracle Open Office Draw : currencies Oracle Open Office Draw : currencies;converters @@ -19828,9 +19929,7 @@ Oracle Open Office Draw : decimal separator key Oracle Open Office Draw : decimal tab stops Oracle Open Office Draw : decreasing sizes of views Oracle Open Office Draw : default directories -Oracle Open Office Draw : default filters -Oracle Open Office Draw : default filters;comparison operators -Oracle Open Office Draw : default filters;databases +Oracle Open Office Draw : default filters, see standard filters Oracle Open Office Draw : default printer Oracle Open Office Draw : default printer;setting up Oracle Open Office Draw : default printer;UNIX @@ -19838,8 +19937,8 @@ Oracle Open Office Draw : default templates Oracle Open Office Draw : default templates;changing Oracle Open Office Draw : default templates;organizing Oracle Open Office Draw : defaults +Oracle Open Office Draw : defaults;document formats in file dialogs Oracle Open Office Draw : defaults;documents -Oracle Open Office Draw : defaults;file formats in file dialogs Oracle Open Office Draw : defaults;file formats in Oracle Open Office Oracle Open Office Draw : defaults;fonts Oracle Open Office Draw : defaults;grids (Writer/Calc) @@ -19905,7 +20004,6 @@ Oracle Open Office Draw : directories;directory structure Oracle Open Office Draw : disabled persons Oracle Open Office Draw : display qualities of presentations Oracle Open Office Draw : displaying -Oracle Open Office Draw : displaying;comments (Calc) Oracle Open Office Draw : displaying;comments in text documents Oracle Open Office Draw : displaying;non-printing characters (Writer) Oracle Open Office Draw : displaying;pictures and objects (Writer) @@ -20053,6 +20151,7 @@ Oracle Open Office Draw : effects;fonts Oracle Open Office Draw : effects;Fontwork icons Oracle Open Office Draw : effects;preview Oracle Open Office Draw : effects;sounds +Oracle Open Office Draw : ellipse drawing Oracle Open Office Draw : ellipses Oracle Open Office Draw : ellipses;segments Oracle Open Office Draw : ellipses;toolbars @@ -20163,6 +20262,7 @@ Oracle Open Office Draw : files;saving in other formats Oracle Open Office Draw : files;sending as e-mail Oracle Open Office Draw : files;version numbers Oracle Open Office Draw : files and folders in Oracle Open Office +Oracle Open Office Draw : files, see also documents Oracle Open Office Draw : fill characters with tabulators Oracle Open Office Draw : fill colors for areas Oracle Open Office Draw : fill format mode @@ -20209,8 +20309,8 @@ Oracle Open Office Draw : font sizes;relative changes Oracle Open Office Draw : font sizes;scaling on screen Oracle Open Office Draw : font sizes;text Oracle Open Office Draw : fonts -Oracle Open Office Draw : fonts;adding under UNIX Oracle Open Office Draw : fonts;changing in templates +Oracle Open Office Draw : fonts;color ignored Oracle Open Office Draw : fonts;colors Oracle Open Office Draw : fonts;default settings Oracle Open Office Draw : fonts;effects @@ -20223,7 +20323,7 @@ Oracle Open Office Draw : fonts;specifying several Oracle Open Office Draw : fonts;strikethrough Oracle Open Office Draw : fonts;styles Oracle Open Office Draw : fonts;text objects -Oracle Open Office Draw : Fontwork icons +Oracle Open Office Draw : Fontwork Oracle Open Office Draw : footers Oracle Open Office Draw : footers;backgrounds Oracle Open Office Draw : footers;slide masters @@ -20432,15 +20532,19 @@ Oracle Open Office Draw : hiding;navigation pane in Help window Oracle Open Office Draw : hiding;slides Oracle Open Office Draw : hiding;subpoints Oracle Open Office Draw : high contrast mode +Oracle Open Office Draw : highlighting changes Oracle Open Office Draw : Hindi Oracle Open Office Draw : Hindi;entering text Oracle Open Office Draw : Hindi;language settings Oracle Open Office Draw : horizontal scrollbars (Writer) Oracle Open Office Draw : hot spots in flowcharts Oracle Open Office Draw : hotspots +Oracle Open Office Draw : hotspots;adding to images +Oracle Open Office Draw : hotspots;properties Oracle Open Office Draw : HowTos for charts Oracle Open Office Draw : Howtos for Draw Oracle Open Office Draw : HTML +Oracle Open Office Draw : HTML;compatibility settings Oracle Open Office Draw : HTML;definition Oracle Open Office Draw : HTML;export character set Oracle Open Office Draw : HTML;exporting from presentations @@ -20474,6 +20578,7 @@ Oracle Open Office Draw : hyphens;inserting custom Oracle Open Office Draw : icon bars, see toolbars Oracle Open Office Draw : icon sizes Oracle Open Office Draw : ignore list for spellcheck +Oracle Open Office Draw : ignored font colors Oracle Open Office Draw : illumination Oracle Open Office Draw : illumination;3D charts Oracle Open Office Draw : illustrations, see pictures @@ -20482,6 +20587,7 @@ Oracle Open Office Draw : image control creation Oracle Open Office Draw : ImageMap Oracle Open Office Draw : ImageMap;definition Oracle Open Office Draw : ImageMap;editor +Oracle Open Office Draw : ImageMap;hotspot properties Oracle Open Office Draw : images Oracle Open Office Draw : images;ImageMap Oracle Open Office Draw : images;inserting @@ -20505,6 +20611,7 @@ Oracle Open Office Draw : importing;presentations with HTML Oracle Open Office Draw : importing;tables in text format Oracle Open Office Draw : importing;templates Oracle Open Office Draw : improvement program +Oracle Open Office Draw : improvement program - Improvement Program Oracle Open Office Draw : in front of object command Oracle Open Office Draw : inches Oracle Open Office Draw : including spreadsheets @@ -20912,7 +21019,7 @@ Oracle Open Office Draw : opening;dialog settings Oracle Open Office Draw : opening;documents Oracle Open Office Draw : opening;documents from other formats Oracle Open Office Draw : opening;documents on WebDAV server -Oracle Open Office Draw : opening;files with links +Oracle Open Office Draw : opening;documents with links Oracle Open Office Draw : opening;files, with placeholders Oracle Open Office Draw : opening;forms Oracle Open Office Draw : opening;Microsoft Office files @@ -20922,7 +21029,7 @@ Oracle Open Office Draw : opening;reports Oracle Open Office Draw : opening;several files Oracle Open Office Draw : opening;XForms Oracle Open Office Draw : operators -Oracle Open Office Draw : operators;default filters +Oracle Open Office Draw : operators;standard filters Oracle Open Office Draw : optional hyphens (Writer) Oracle Open Office Draw : options Oracle Open Office Draw : options;accessibility @@ -20983,6 +21090,7 @@ Oracle Open Office Draw : pages;scaling Oracle Open Office Draw : pages;selecting one to print Oracle Open Office Draw : paint box Oracle Open Office Draw : paint can symbol +Oracle Open Office Draw : Paintbrush Oracle Open Office Draw : pair kerning Oracle Open Office Draw : Palm file filters Oracle Open Office Draw : paper formats @@ -21009,6 +21117,7 @@ Oracle Open Office Draw : paragraphs;tab stops Oracle Open Office Draw : parameters Oracle Open Office Draw : parameters;command line Oracle Open Office Draw : parameters;queries (Base) +Oracle Open Office Draw : password as document property Oracle Open Office Draw : passwords for protecting contents Oracle Open Office Draw : pasting Oracle Open Office Draw : pasting;cell ranges @@ -21128,7 +21237,6 @@ Oracle Open Office Draw : presentations;starting Oracle Open Office Draw : presentations;starting with wizard Oracle Open Office Draw : presentations;window / full screen Oracle Open Office Draw : presentations;wizards -Oracle Open Office Draw : Presenter Console shortcuts Oracle Open Office Draw : press buttons, see push buttons Oracle Open Office Draw : previews Oracle Open Office Draw : previews;fonts lists @@ -21187,6 +21295,7 @@ Oracle Open Office Draw : properties;fields in databases Oracle Open Office Draw : properties;files Oracle Open Office Draw : properties;form controls Oracle Open Office Draw : properties;forms +Oracle Open Office Draw : properties;hotspots Oracle Open Office Draw : properties;printers Oracle Open Office Draw : properties;smooth lines in line charts/XY charts Oracle Open Office Draw : protected contents @@ -21239,6 +21348,7 @@ Oracle Open Office Draw : records;inserting comments Oracle Open Office Draw : records;protecting Oracle Open Office Draw : records;saving Oracle Open Office Draw : records;searching in databases +Oracle Open Office Draw : rectangle drawing Oracle Open Office Draw : rectangles Oracle Open Office Draw : rectangles with round corners Oracle Open Office Draw : recursions in spreadsheets @@ -21310,6 +21420,7 @@ Oracle Open Office Draw : review function;accepting or rejecting changes Oracle Open Office Draw : review function;comparing documents Oracle Open Office Draw : review function;protecting records Oracle Open Office Draw : review function;recording changes example +Oracle Open Office Draw : review function;tracking changes Oracle Open Office Draw : rich text control Oracle Open Office Draw : right alignment of paragraphs Oracle Open Office Draw : right joins (Base) @@ -21414,7 +21525,6 @@ Oracle Open Office Draw : settings Oracle Open Office Draw : settings;printers Oracle Open Office Draw : settings;program configuration Oracle Open Office Draw : settings;proxies -Oracle Open Office Draw : settings;tracking changes Oracle Open Office Draw : settings;views Oracle Open Office Draw : SGML Oracle Open Office Draw : SGML;definition @@ -21423,6 +21533,7 @@ Oracle Open Office Draw : shadows;areas Oracle Open Office Draw : shadows;borders Oracle Open Office Draw : shadows;characters Oracle Open Office Draw : shadows;characters, using context menu +Oracle Open Office Draw : shapes Oracle Open Office Draw : sharing documents Oracle Open Office Draw : sharpening filter Oracle Open Office Draw : shearing objects @@ -21456,7 +21567,7 @@ Oracle Open Office Draw : signing documents with digital signatures Oracle Open Office Draw : similarity search Oracle Open Office Draw : simple handles (Writer) Oracle Open Office Draw : simplified Chinese -Oracle Open Office Draw : simplified Chinese;translating to traditional Chinese +Oracle Open Office Draw : simplified Chinese;conversion to traditional Chinese Oracle Open Office Draw : single sign on options Oracle Open Office Draw : single-line spacing in text Oracle Open Office Draw : sizes @@ -21571,7 +21682,9 @@ Oracle Open Office Draw : SQL;queries (Base) Oracle Open Office Draw : square drawings Oracle Open Office Draw : standard bar on/off Oracle Open Office Draw : standard deviation in charts -Oracle Open Office Draw : standard filters in databases +Oracle Open Office Draw : standard filters +Oracle Open Office Draw : standard filters;comparison operators +Oracle Open Office Draw : standard filters;databases Oracle Open Office Draw : standard printer under UNIX Oracle Open Office Draw : start center Oracle Open Office Draw : start parameters @@ -21785,8 +21898,9 @@ Oracle Open Office Draw : tooltips Oracle Open Office Draw : tooltips;extended tips Oracle Open Office Draw : tooltips;help Oracle Open Office Draw : torus +Oracle Open Office Draw : Track Changes, see review function Oracle Open Office Draw : traditional Chinese -Oracle Open Office Draw : traditional Chinese;translating to simplified chinese +Oracle Open Office Draw : traditional Chinese;conversion to simplified Chinese Oracle Open Office Draw : transition effects Oracle Open Office Draw : transparency Oracle Open Office Draw : transparency;adjusting @@ -21796,8 +21910,8 @@ Oracle Open Office Draw : transparency;off for faster printing Oracle Open Office Draw : transparency;saving Oracle Open Office Draw : tree view of Help Oracle Open Office Draw : trend lines in charts +Oracle Open Office Draw : triangle drawing Oracle Open Office Draw : typefaces -Oracle Open Office Draw : typefaces;adding under UNIX Oracle Open Office Draw : typefaces;formats Oracle Open Office Draw : typography Oracle Open Office Draw : typography;Asian -- cgit From 52ae943f4e4de022f49d89e1b81164778c5d9011 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Fri, 15 Oct 2010 09:51:37 +0200 Subject: automationdev300m87: #i112208 - Delete local file --- .../framework/optional/includes/CJK_CollationDialogue_1.inc | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc b/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc index 18f0f0de1d2f..d450415dd970 100644 --- a/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc +++ b/testautomation/framework/optional/includes/CJK_CollationDialogue_1.inc @@ -496,7 +496,8 @@ testcase tStrokeSort Dim i , j as Integer - testFile = "sortTest.sxw" + testFile = gTesttoolPath & "framework\optional\input\CJK\sortTest.sxw" + testFile = convertpath( testFile ) aCorrectSequence = Array( "1" , "2" , "3" , "4" ,"5" ) j = UBound(aCorrectSequence) @@ -527,7 +528,7 @@ testcase tStrokeSort Call hNewDocument '/// Open a test file and check No Grid checkbox - hFileOpenLocally( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) + hFileOpenLocally( testfile ) hUseAsyncSlot( "EditSelectAll" ) '/// Open Tools/Sort @@ -571,6 +572,7 @@ testcase tStrokeSort next i Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -585,7 +587,9 @@ testcase tPinyinSort Dim i , j as Integer - testFile = "sortTest.sxw" + testFile = gTesttoolPath & "framework\optional\input\CJK\sortTest.sxw" + testFile = convertpath( testFile ) + aCorrectSequence = Array( "2" , "3" , "4" , "1" , "5" ) j = UBound(aCorrectSequence) @@ -616,7 +620,7 @@ testcase tPinyinSort Call hNewDocument '/// Open a test file and check No Grid checkbox - hFileOpenLocally( gTesttoolPath + "framework\optional\input\CJK\" + testFile ) + hFileOpenLocally( testfile ) hUseAsyncSlot( "EditSelectAll" ) '/// Open Tools/Sort @@ -662,6 +666,7 @@ testcase tPinyinSort next i Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase -- cgit From e051a47abe2de5d5977e977fcd24b6f2dcf876bd Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Fri, 15 Oct 2010 09:54:19 +0200 Subject: automationdev300m87: #i112208 - More verbosity - again. --- testautomation/global/tools/includes/required/t_files.inc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index 65969e0b74a7..ee75fb99bd80 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -624,11 +624,10 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean sTargetPath = hFileGetLocalPath( sSourcePath ) ' The path + file ' For debugging purposes set global variable gVerbose to TRUE - if ( gVerbose ) then - printlog( CFN & "Copying file" ) - printlog( CFN & "From: " & sSourcePath ) - printlog( CFN & "To..: " & sTargetPath ) - endif + + printlog( CFN & "Copying file" ) + printlog( CFN & "From: " & sSourcePath ) + printlog( CFN & "To..: " & sTargetPath ) ' Copy the file from anywhere to the local user directory if it does not ' exist. This behavior was discussed on IRC -- cgit From fe271642a6e4bc987bfdeda333e4da8818642a83 Mon Sep 17 00:00:00 2001 From: "Oliver Craemer [oc]" Date: Fri, 15 Oct 2010 12:54:50 +0200 Subject: #112208 # Problems due to hFileOpenLocally in Spreadsheet fixed --- .../spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc | 12 ++++++------ .../spreadsheet/required/includes/c_upd_formatmenu2.inc | 2 ++ .../spreadsheet/required/includes/c_upd_formatmenu3.inc | 5 +++++ .../spreadsheet/required/includes/c_upd_toolsmenu.inc | 3 +++ testautomation/spreadsheet/tools/includes/c_l10n_tools.inc | 2 ++ 5 files changed, 18 insertions(+), 6 deletions(-) diff --git a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc index 2514945a6d42..ee2bd27879d8 100644 --- a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc +++ b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc @@ -40,9 +40,9 @@ testcase tIBIS111099 Dim testdoc as string - testdoc = convertpath(gOfficePath & "user/work/111099.xls") - Printlog "Copy testdocument locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls"),gOfficePath + ConvertPath("user/work/111099.xls") + testdoc = convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls") +' Printlog "Copy testdocument locally" +' app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls"),gOfficePath + ConvertPath("user/work/111099.xls") printlog " Open the test document" hFileOpenLocally(testdoc) '/// Invoke Control Toolbar @@ -70,10 +70,10 @@ testcase tIBIS111158 Dim testdoc as string Dim testString as string - testdoc = convertpath(gOfficePath & "user/work/111158.xls") + testdoc = convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls") - Printlog "Copy testdocument locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls"),gOfficePath + ConvertPath("user/work/111158.xls") +' Printlog "Copy testdocument locally" +' app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls"),gOfficePath + ConvertPath("user/work/111158.xls") printlog " Open the test document" hFileOpenLocally(testdoc) Kontext "Standardbar" diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc index d405237fe4a7..03040d7c4613 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc @@ -664,6 +664,7 @@ testcase tFormatAlignment '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase @@ -767,6 +768,7 @@ testcase tFormatGroup '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc index 6b305f53a0a3..d4b4092a61c7 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc @@ -129,6 +129,7 @@ testcase tFormatGraphicPositionAndSize '/// Close document printlog " Close document" call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase @@ -369,6 +370,7 @@ testcase tFormatGraphicLine '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase @@ -911,6 +913,7 @@ testcase tFormatGraphicArea '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase @@ -1027,6 +1030,7 @@ testcase tFormatGraphicText '/// Close document printlog " Close document" call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase @@ -1047,6 +1051,7 @@ testcase tFormatGraphicPoints '/// Close document printlog " Close document" call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc index b13e5f9f43af..424a74d8bf85 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc @@ -188,6 +188,7 @@ testcase tToolsSpellcheck '/// Close starting document printlog " Close starting document" call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase @@ -314,6 +315,7 @@ testcase tToolsHangulHanjaConversion '/// Close document printlog " Close document" call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase @@ -402,6 +404,7 @@ testcase tToolsLanguageThesaurus Thesaurus.Cancel printlog " Close document" call hCloseDocument + hFileDelete ( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc index ff4c508d6c4d..3bbc0c8f786a 100644 --- a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc +++ b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc @@ -122,6 +122,7 @@ function fFunctionname ( sFunctionname_en as string ) as string end if call hCloseDocument + hFileDelete ( gLastWorkFile ) end function @@ -208,5 +209,6 @@ function fError_l10n ( sError_en as string ) as string end if call hCloseDocument + hFileDelete ( gLastWorkFile ) end function -- cgit From 917efdefc632cae33fbbd35074d4729ce03dff49 Mon Sep 17 00:00:00 2001 From: "Oliver Craemer [oc]" Date: Fri, 15 Oct 2010 13:35:25 +0200 Subject: #112208 # Problems due to hFileOpenLocally in Spreadsheet fixed --- .../spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc index ee2bd27879d8..4a84606e1697 100644 --- a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc +++ b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc @@ -41,8 +41,6 @@ testcase tIBIS111099 Dim testdoc as string testdoc = convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls") -' Printlog "Copy testdocument locally" -' app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls"),gOfficePath + ConvertPath("user/work/111099.xls") printlog " Open the test document" hFileOpenLocally(testdoc) '/// Invoke Control Toolbar @@ -71,9 +69,7 @@ testcase tIBIS111158 Dim testdoc as string Dim testString as string testdoc = convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls") - -' Printlog "Copy testdocument locally" -' app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls"),gOfficePath + ConvertPath("user/work/111158.xls") + printlog " Open the test document" hFileOpenLocally(testdoc) Kontext "Standardbar" -- cgit From 655b1d7dfb5200919da540268d2b5d6b22adb49d Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 18 Oct 2010 09:15:04 +0200 Subject: automationdev300m87: #i112208 - templates fix. Also provided extensive documentation to tModifyObjects(...) --- .../optional/includes/extras_modify_objects.inc | 100 ++++++++++++++++----- .../framework/tools/includes/template_tools.inc | 36 ++------ 2 files changed, 88 insertions(+), 48 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/includes/extras_modify_objects.inc mode change 100755 => 100644 testautomation/framework/tools/includes/template_tools.inc diff --git a/testautomation/framework/optional/includes/extras_modify_objects.inc b/testautomation/framework/optional/includes/extras_modify_objects.inc old mode 100755 new mode 100644 index 964d28a95b77..9500e7609e24 --- a/testautomation/framework/optional/includes/extras_modify_objects.inc +++ b/testautomation/framework/optional/includes/extras_modify_objects.inc @@ -39,29 +39,43 @@ private const MAX_FILE_COUNT = 3000 ' the max number of templates or samples testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) + ' This test loads/saves and reloads every template or sample shipped with + ' the product. One of the special challenges of the test is to find out + ' which document type a sample/template belongs to as well as to handle + ' any possible dialogs the samples/documents may trigger. + + ' iMode = 1 means to open the document (0 = just get its name) + ' cCategory may be "SAMPLES" or "TEMPLATES" + ' sVER is the fileformat for saving files, typically this is "current" + const CFN = "tModifyObjects::" - const RESTART = 15 - const TEMPLATE_COUNT = 236 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands - const SAMPLE_COUNT = 56 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands + const TEMPLATE_COUNT = 237 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands + const SAMPLE_COUNT = 56 ' For en-US/Oracle Open Office, numbers may differ for Languages/Brands + ' Varaibles needed to navigate on the Templates And Samples dialog dim iObjectFolder as integer dim iObjectFolders as integer - + + ' Iterators and number of documents, test values dim iObject as integer ' Iterator dim iObjectCount( 20 ) as integer dim iObjectSum as integer : iObjectSum = 0 dim iObjectCountExpected as integer - + + ' Where to store the files dim sFile as string - dim sPath as string - sPath = hGetWorkPath() + dim sPath as string : sPath = hGetWorkPath() + ' Reset counter, if the office becomes unstable you might want to use it. + ' See further below on how to enable this feature dim iReset as integer : iReset = 0 printlog( "" ) - - select case( lcase( cCategory )) + + ' Find out if we are testing samples or templates, fix the number of items + ' allowed for each category + select case( lcase( cCategory ) ) case "templates" : iObjectCountExpected = TEMPLATE_COUNT case "samples" : iObjectCountExpected = SAMPLE_COUNT end select @@ -69,7 +83,11 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) printlog( "Open Templates and Samples dialog" ) FileNewFromTemplate WaitSlot( 2000 ) + + ' This is the icon on the left pane hSelectCategory( cCategory ) + + ' The number of folders for the category on the middle pane iObjectFolders = FileList.getItemCount() printlog( "Count the items in the templates and samples dialog" ) @@ -93,23 +111,35 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) endif Kontext "TemplateAndDocuments" - printlog( "Switch from preview to document info" ) + printlog( "Switch from preview to document info, required to limit load-times" ) + ' Another good test case would be to enable the preview. docinfo.click() hCloseDialog( TemplateAndDocuments, "cancel" ) printlog( "" ) printlog( "Starting to load/save/close/reload/close all Objects" ) printlog( "" ) - + + ' Iterate over the folders in the middle pane of the templates and samples + ' dialog, open the folders and load the containing files + ' If you want to debug the office using this test, get the Object indices + ' from the logfiles and change the loops to only load the file in question + + ' These are the folders for iObjectFolder = 1 to iObjectFolders - - for iObject = 1 to iObjectCount( iObjectFolder ) - + ' for iObjectFolder = MyFailedFolder to MyFailedFolder + + ' These are the individual files + for iObject = 1 to iObjectCount( iObjectFolder ) + ' for iObject = MyFailedFile to MyFailedFile + + ' Preset gApplication to "Writer", this is the basis gApplication = "WRITER" printlog( "" ) printlog( "Folder index = " & iObjectFolder & ", Object index = " & iObject ) - + + printlog( "Close all files" ) hFileCloseAll() ' every now and then the office becomes a little unstable. @@ -120,14 +150,22 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) ' iReset = 0 'endif - printlog( "Select the item we want to load" ) + printlog( "Open " ) FileNewFromTemplate WaitSlot( 2000 ) + + printlog( "Select category: " & cCategory ) hSelectCategory( cCategory ) + + printlog( "Select a folder, do not print debug info" ) hSelectFileFolder( iObjectFolder , false ) + + printlog( "Select a document by index, iMode = 1 -> Open it" ) hSelectDocumentObject( iObject , iMode ) - ' treat it like a folder. If it is, skip it. Otherwise perform the test + ' In few cases we accidentially work on a folder. So we test for the + ' Templates and Samples dialog again, if it is closed we have a + ' regular document, otherwise we have a folder which we then skip. kontext "TemplateAndDocuments" if ( TemplateAndDocuments.exists() ) then if ( not edit.isEnabled() ) then @@ -138,6 +176,9 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) else printlog( "Loading file..." ) printlog( "Check for Filter Options dialog" ) + + ' Yes, hFileWait() knows which dialog is in the way so we can ask it + ' directly. The ASCII filter dialog has the number -6 if ( hFileWait( false ) = -6 ) then warnlog( "Load failure: ASCII filter dialog displayed, recovering" ) kontext "FilterAuswahl" @@ -146,27 +187,44 @@ testcase tModifyObjects( iMode as integer, cCategory as string, sVer as string ) else printlog( "Build filename; save, reload and delete" ) sFile = sPath & cCategory & iObjectFolder & "_" & iObject + printlog( "File is: " & sFile ) + kontext "Navigator" + printlog( "Close Navigator (if present)" ) hCloseDialog( Navigator, "close,optional" ) + + printlog( "Save file" ) hFileSaveAsKill( sFile ) + + printlog( "Close file" ) hDestroyDocument() + + printlog( "Open file" ) hFileOpen( sFile ) + + printlog( "Handle possible dialogs" ) hHandleActivesOnLoad( 1 , 2 ) + kontext "Navigator" + printlog( "Close Navigator (if present)" ) hCloseDialog( Navigator, "close,optional" ) + + printlog( "Close document" ) hDestroyDocument() + + printlog( "Delete work document" ) hDeleteFile( sFile ) - printlog( "Test cycle done, going for next object." ) endif endif - + iReset = iReset + 1 next iObject next iObjectFolder - - hDestroyDocument() + + printlog( "Close last remaining document(s) and exit test" ) + hFileCloseAll() endcase diff --git a/testautomation/framework/tools/includes/template_tools.inc b/testautomation/framework/tools/includes/template_tools.inc old mode 100755 new mode 100644 index c9d1e94fa16f..1491abe9c64f --- a/testautomation/framework/tools/includes/template_tools.inc +++ b/testautomation/framework/tools/includes/template_tools.inc @@ -254,11 +254,14 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string '///Input: '///
      '///+
    1. Index of the folder to be selected on the categories-pane (integer)
    2. + '///
        + '///+
      • Valid positive index
      • + '///
      '///+
    3. Mode in which to open the template (integer)
    4. '///
        '///+
      • 0 = Do not open the object, just return its name
      • '///+
      • 1 = Open a new document based on the selected Template
      • - '///+
      • 2 = edit the template
      • + '///+
      • 2 = edit the template (unsupported)
      • '///
      '///
    '///Returns: @@ -267,32 +270,12 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string '///
'///Description: '///
    - '///+
  • Verify function parameter iMode
  • - - if ( ( iMode < 0 ) or ( iMode > 2 ) ) then - warnlog( CFN & "Invalid function parameter iMode: " & iMode ) - hSelectDocumentObject() = "" - exit function - endif dim cTitle as string dim brc as boolean dim iObjectCount as integer Kontext "TemplateAndDocuments" - '///+
  • Verify the function parameter iTitle > 0
  • - if ( iTitle < 1 ) then - warnlog( CFN & "Invalid function parameter iTitle: " & iTitle ) - hSelectDocumentObject() = "" - exit function - endif - - '///+
  • Verify that the index is not too large
  • - if ( iTitle > FileList.getItemCount() ) then - warnlog( CFN & "Invalid function parameter iTitle: " & iTitle ) - hSelectDocumentObject() = "" - exit function - endif '///+
  • Get the title of the selected object
  • cTitle = hGetFileFolderName( iTitle ) @@ -315,9 +298,7 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string kontext "TemplateAndDocuments" if ( TemplateAndDocuments.exists() ) then '///+
  • If yes: Try to determine if it is a new folder
  • - brc = hIsObjectAFolder( iObjectCount ) - - if ( brc ) then + if ( hIsObjectAFolder( iObjectCount ) ) then hSelectDocumentObject() = "Folder" exit function endif @@ -326,12 +307,13 @@ function hSelectDocumentObject( iTitle as integer , iMode as integer ) as string catch endcatch - hFileWait() - hHandleActivesOnLoad( 2, false ) - hHandleInitialDialogs() + case 2 : warnlog( "Unsupported option: Edit template" ) end select + hFileWait() + hHandleActivesOnLoad( 2, false ) + brc = hHandleInitialDialogs() '///+
  • If all initial dialogs were handled correctly, return the title
  • if ( brc ) then -- cgit From a566b1dc6fb25201af4d36b86ff6c4cbd9dd36a6 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 18 Oct 2010 12:26:30 +0200 Subject: automationdev300m87: #i115106 - Fix f_basic_gridcontrol.bas --- .../framework/optional/f_basic_gridcontrol.bas | 1 + .../optional/includes/basic_gridcontrol.inc | 92 ++++++++++------------ .../tools/includes/optional/t_macro_tools.inc | 40 ++++++++++ 3 files changed, 82 insertions(+), 51 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/f_basic_gridcontrol.bas mode change 100755 => 100644 testautomation/global/tools/includes/optional/t_macro_tools.inc diff --git a/testautomation/framework/optional/f_basic_gridcontrol.bas b/testautomation/framework/optional/f_basic_gridcontrol.bas old mode 100755 new mode 100644 index 963482253438..dc5f9a392988 --- a/testautomation/framework/optional/f_basic_gridcontrol.bas +++ b/testautomation/framework/optional/f_basic_gridcontrol.bas @@ -51,6 +51,7 @@ sub LoadIncludeFiles use "global\system\includes\gvariabl.inc" use "global\tools\includes\optional\t_treelist_tools.inc" + use "global\tools\includes\optional\t_macro_tools.inc" gApplication = "WRITER" call GetUseFiles() diff --git a/testautomation/framework/optional/includes/basic_gridcontrol.inc b/testautomation/framework/optional/includes/basic_gridcontrol.inc index 54bc9a0e1ae8..963c5e8a97d8 100644 --- a/testautomation/framework/optional/includes/basic_gridcontrol.inc +++ b/testautomation/framework/optional/includes/basic_gridcontrol.inc @@ -33,69 +33,59 @@ testcase tGridcontrolLoad - const MACRO_NAME = "VclTestTool" - const MACRO_NOT_FOUND = 0 + const MACRO_NAME = "Show" const FILE_NAME = "framework/optional/input/gridcontrol.odt" - dim iPos as integer + dim i as integer + dim a as integer printlog( "Open the test document: " & FILE_NAME ) call hFileOpenLocally( gTestToolPath & FILE_NAME ) - printlog( "Open the dialog" ) - ToolsMacrosRunMacro - - printlog( "Find the document, its library and the test macro, run the macro" ) - Kontext "ScriptSelector" - if ( ScriptSelector.exists( 10 ) ) then + printlog "Start the macro, that performs the test" + hExecMacro( MACRO_NAME ) + + Kontext "GridControlDialog" + if GridControlDialog.exists(5) then + for i=1 to gridcontrolcontrol.getcolumncount + for a=1 to gridcontrolcontrol.getrowcount + printlog " " + i + ":"+a+": '" + gridcontrolcontrol.getitemtype (i,a) + "' '" + gridcontrolcontrol.getitemtext (i,a) + "'" + next a + next i + gridcontrolcontrol.select 5 + + kontext + if active.exists(5) then + printlog active.gettext + active.ok + else + warnlog "No selection Event by .select" + endif - printlog "Start the macro, that performs the test" - Kontext "GridControlDialogStarter" - ' FAILS IF DOCUMENT IS READONLY.... - ShowGridcontrol.typeKeys "" Kontext "GridControlDialog" - if GridControlDialog.exists(5) then - for i=1 to gridcontrolcontrol.getcolumncount - for a=1 to gridcontrolcontrol.getrowcount - printlog " " + i + ":"+a+": '" + gridcontrolcontrol.getitemtype (i,a) + "' '" + gridcontrolcontrol.getitemtext (i,a) + "'" - next a - next i - gridcontrolcontrol.select 5 - - kontext - if active.exists(5) then - printlog active.gettext - active.ok - else - warnlog "No selection Event by .select" - endif - - Kontext "GridControlDialog" - gridcontrolcontrol.typeKeys("") + gridcontrolcontrol.typeKeys("") - kontext - if active.exists(5) then - printlog active.gettext - active.ok - else - warnlog "No selection event by .typeKeys " - endif - Kontext "GridControlDialog" - gridcontrolcontrol.typeKeys("") - kontext - if active.exists(5) then - printlog active.gettext - active.ok - else - warnlog "No selection event by .typeKeys " - endif - - Kontext "GridControlDialog" - GridControlDialog.close + kontext + if active.exists(5) then + printlog active.gettext + active.ok else - warnlog "Gridcontrol Dialog did not come up after pressing button" + warnlog "No selection event by .typeKeys " + endif + Kontext "GridControlDialog" + gridcontrolcontrol.typeKeys("") + kontext + if active.exists(5) then + printlog active.gettext + active.ok + else + warnlog "No selection event by .typeKeys " endif + Kontext "GridControlDialog" + GridControlDialog.close + else + warnlog "Gridcontrol Dialog did not come up after pressing button" endif printlog( "Test exit, cleanup" ) diff --git a/testautomation/global/tools/includes/optional/t_macro_tools.inc b/testautomation/global/tools/includes/optional/t_macro_tools.inc old mode 100755 new mode 100644 index 6c1fcc478e5a..733b28fa32f4 --- a/testautomation/global/tools/includes/optional/t_macro_tools.inc +++ b/testautomation/global/tools/includes/optional/t_macro_tools.inc @@ -172,4 +172,44 @@ function hBasicIDERunMacro( cIdentifier as string ) as boolean hBasicIDERunMacro() = false endif +end function + +'******************************************************************************* + +function hExecMacro( cMacro as string ) as boolean + + const CFN = "global::tools::includes::optional::t_macro_tools.inc::hExecMacro(): " + + dim iCurrentModule as integer + dim iCurrentMacro as integer + hEXECMacro() = FALSE + + ToolsMacro_uno + + kontext "Makro" + if ( Makro.exists( 2 ) ) then + ' Iterate through the left treelist + for iCurrentModule = hExpandAllNodes( MakroAus ) to 1 step -1 + MakroAus.select( iCurrentModule ) + ' Iterate through the Macros list (right pane) + for iCurrentMacro = 1 to MakroListe.getItemCount() + MakroListe.select( iCurrentMacro ) + ' Try to find the macro + if ( cMacro = MakroListe.getSelText() ) then + ' Run the macro + if ( Ausfuehren.isEnabled() ) then + Ausfuehren.click() + hExecMacro() = TRUE + exit function + else + warnlog( CFN & "Macro found but is not enabled" ) + exit function + endif + endif + next iCurrentMacro + next iCurrentModule + else + warnlog( CFN & "Macro Organizer is not open within 2 seconds" ) + endif + end function \ No newline at end of file -- cgit From e7c1c6d3867152b1e88a864b44a5b88acbf232e0 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 18 Oct 2010 13:57:30 +0200 Subject: automationdev300m87: #i115106 - Fix f_basic_package_export_import.bas --- testautomation/framework/optional/includes/basic_package_import.inc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/includes/basic_package_import.inc diff --git a/testautomation/framework/optional/includes/basic_package_import.inc b/testautomation/framework/optional/includes/basic_package_import.inc old mode 100755 new mode 100644 index 31596ed21001..80fe04cc92d4 --- a/testautomation/framework/optional/includes/basic_package_import.inc +++ b/testautomation/framework/optional/includes/basic_package_import.inc @@ -102,9 +102,7 @@ testcase tBasicPackageImport next iCurrentLib cLibraryName = BibliotheksListe.getSelText() - if ( not hClickButton( Hinzufuegen ) ) then - warnlog( "#i64007 - Office crashes on clicking import button" ) - endif + hClickButton( Hinzufuegen ) kontext "OeffnenDlg" hCloseDialog( OeffnenDlg, "cancel" ) -- cgit From e151e9f843ff231726e0b94799d1e84fdffe1c6a Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 18 Oct 2010 15:05:14 +0200 Subject: automationdev300m87: #i115106 - Change comparision values. There is no way for me to tell that these settings are correct, however, we can test for changes now. --- .../optional/includes/basic_vba-compat_application-union.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/includes/basic_vba-compat_application-union.inc diff --git a/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc b/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc old mode 100755 new mode 100644 index 9acd9d1b032e..e35fc8ae3494 --- a/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc +++ b/testautomation/framework/optional/includes/basic_vba-compat_application-union.inc @@ -58,11 +58,11 @@ testcase tBasicVBACompatApplicationUnion() macro_identifier( 5 ) = "5: False" macro_identifier( 6 ) = "6: True" else - macro_identifier( 1 ) = "1: True" - macro_identifier( 2 ) = "2: True" + macro_identifier( 1 ) = "1: False" + macro_identifier( 2 ) = "2: False" macro_identifier( 3 ) = "3: True" - macro_identifier( 4 ) = "4: True" - macro_identifier( 5 ) = "5: True" + macro_identifier( 1 ) = "4: False" + macro_identifier( 2 ) = "5: False" macro_identifier( 6 ) = "6: True" endif -- cgit From 422277aefa8b4acb1a501468aa39dbf3fb78b6e4 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Tue, 19 Oct 2010 07:28:58 +0200 Subject: automationdev300m87: #i115106 - gridcontrol - remove workfile on test exit --- testautomation/framework/optional/includes/basic_gridcontrol.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/testautomation/framework/optional/includes/basic_gridcontrol.inc b/testautomation/framework/optional/includes/basic_gridcontrol.inc index 963c5e8a97d8..61d7837df3cb 100644 --- a/testautomation/framework/optional/includes/basic_gridcontrol.inc +++ b/testautomation/framework/optional/includes/basic_gridcontrol.inc @@ -90,6 +90,7 @@ testcase tGridcontrolLoad printlog( "Test exit, cleanup" ) hFileCloseAll() + hDeleteFile( gLastWorkFile ) endcase -- cgit From 69aab9a46ffb43783d77028471100aaffdf08e16 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Tue, 19 Oct 2010 09:29:51 +0200 Subject: automationdev300m87#i112208#File created in this testcase must not be loaded with hFileOpenLocally --- testautomation/writer/required/includes/w_001_.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testautomation/writer/required/includes/w_001_.inc b/testautomation/writer/required/includes/w_001_.inc index b5b6b88d1640..1fc2001e78bb 100644 --- a/testautomation/writer/required/includes/w_001_.inc +++ b/testautomation/writer/required/includes/w_001_.inc @@ -1027,7 +1027,7 @@ testcase tFileReload Wait (500) PrintLog "Open previous saved document" - hFileOpenLocally( gOfficePath + "user\work\" + sFile$ ) + hFileOpen( gOfficePath + "user\work\" + sFile$ ) PrintLog "Insert a table in document" Call hTabelleEinfuegen PrintLog "File / Reload" -- cgit From 8fe7b07fc8bed0797b9d565443c11065a40e2a85 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Tue, 19 Oct 2010 10:26:25 +0200 Subject: automationdev300m87: #i115106 - f_basic_formcontrols.bas - added issue id for #i115117. --- testautomation/framework/optional/includes/basic_formcontrols.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 testautomation/framework/optional/includes/basic_formcontrols.inc diff --git a/testautomation/framework/optional/includes/basic_formcontrols.inc b/testautomation/framework/optional/includes/basic_formcontrols.inc old mode 100755 new mode 100644 index cc8f999ff9ad..68d6ae7c80ef --- a/testautomation/framework/optional/includes/basic_formcontrols.inc +++ b/testautomation/framework/optional/includes/basic_formcontrols.inc @@ -122,7 +122,7 @@ testcase tAllControlsOnDialog( cMajor as string ) if ( hFindFirstDialog() ) then printlog( "First dialog found. Good." ) else - warnlog( "Could not access dialog, aborting test" ) + warnlog( "#i115117 - Could not access dialog, accelerator not working? (Test interrupted)" ) hCloseBasicIde() hDestroyDocument() goto endsub -- cgit From ff21396cb6517476d4392175389e46adf376ff3c Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Tue, 19 Oct 2010 13:45:14 +0200 Subject: automationdev300m87#i112208#Copied elementary files to local dir --- testautomation/writer/optional/w_clipbrd.bas | 48 +++++++++++++++++----------- 1 file changed, 30 insertions(+), 18 deletions(-) mode change 100644 => 100755 testautomation/writer/optional/w_clipbrd.bas diff --git a/testautomation/writer/optional/w_clipbrd.bas b/testautomation/writer/optional/w_clipbrd.bas old mode 100644 new mode 100755 index 5fa732706afc..97d209d7599e --- a/testautomation/writer/optional/w_clipbrd.bas +++ b/testautomation/writer/optional/w_clipbrd.bas @@ -35,22 +35,34 @@ Global CharsetSet as integer Global ExportSet as integer sub main - use "writer\tools\includes\w_tools.inc" - use "writer\optional\includes\clipboard\clipbrd_func.inc" - use "writer\optional\includes\clipboard\w_210_.inc" - use "writer\optional\includes\clipboard\w_211_.inc" - use "writer\optional\includes\clipboard\w_212_.inc" - use "writer\optional\includes\clipboard\w_213_.inc" - use "writer\optional\includes\clipboard\w_214_.inc" - use "writer\optional\includes\clipboard\w_215_.inc" - use "writer\optional\includes\clipboard\w_216_.inc" - use "writer\optional\includes\clipboard\w_217_.inc" - use "writer\optional\includes\clipboard\w_218_.inc" - use "writer\optional\includes\clipboard\w_219_.inc" - use "writer\optional\includes\clipboard\w_220_.inc" - use "writer\optional\includes\clipboard\w_221_.inc" - use "writer\optional\includes\clipboard\w_222_.inc" - Dim Start : Start = Now() + use "writer\tools\includes\w_tools.inc" + use "writer\optional\includes\clipboard\clipbrd_func.inc" + use "writer\optional\includes\clipboard\w_210_.inc" + use "writer\optional\includes\clipboard\w_211_.inc" + use "writer\optional\includes\clipboard\w_212_.inc" + use "writer\optional\includes\clipboard\w_213_.inc" + use "writer\optional\includes\clipboard\w_214_.inc" + use "writer\optional\includes\clipboard\w_215_.inc" + use "writer\optional\includes\clipboard\w_216_.inc" + use "writer\optional\includes\clipboard\w_217_.inc" + use "writer\optional\includes\clipboard\w_218_.inc" + use "writer\optional\includes\clipboard\w_219_.inc" + use "writer\optional\includes\clipboard\w_220_.inc" + use "writer\optional\includes\clipboard\w_221_.inc" + use "writer\optional\includes\clipboard\w_222_.inc" + Dim Start : Start = Now() + Dim lsSourceList(3) as string + + ' copy needed files linked in test documents lo local file system if needed Issue #112208 + lsSourceList(0) = 3 + lsSourceList(1) = ConvertPath ( gtesttoolpath & "writer\optional\input\clipboard\dummy.sxw" ) + lsSourceList(2) = ConvertPath ( gtesttoolpath & "writer\optional\input\clipboard\dummy.txt" ) + lsSourceList(3) = ConvertPath ( gtesttoolpath & "writer\optional\input\clipboard\flower.gif" ) + + if hFileListCopyLocal(lsSourceList()) = false then + warnlog "Copying of elementary files failed. Test interrupted!" + exit sub + end if ExportSet = wChangeHTMLCompatibilityExport CharsetSet = wChangeHTMLCompatibility @@ -72,9 +84,9 @@ sub main Call hStatusOut Call wChangeHTMLCompatibility(CharsetSet) - Call wChangeHTMLCompatibilityExport(ExportSet) + Call wChangeHTMLCompatibilityExport(ExportSet) - printlog "Duration : " + Wielange ( Start ) + printlog "Duration : " + Wielange ( Start ) end sub '--------------------------------------------------------- -- cgit From b7a5df0023d447e13f8ac30c33f0bc2b1d9069bb Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Tue, 19 Oct 2010 15:13:52 +0200 Subject: automationdev300m87#i115106#Corrected scripting failures opening context menu and closing Hyperlink Dialog. --- .../includes/contextmenu/w_contextmenu1.inc | 27 ++++++++-------------- 1 file changed, 10 insertions(+), 17 deletions(-) mode change 100755 => 100644 testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc diff --git a/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc b/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc old mode 100755 new mode 100644 index c4d79cece29a..4e399309d018 --- a/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc +++ b/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc @@ -187,19 +187,12 @@ testcase tPickGraphic Call wTypeKeys "" Call wTypeKeys "Don't be afraid !" - Call DocumentWriter.MouseMove 50,30 + Call gMouseClick ( 50,30 ) Printlog " Open context menu upon graphic with mouse" Call wOpenContextMenu(true) printlog " Select 'ImageMap' in context menu" - try - CALL hMenuFindSelect (".uno:ImageMapDialog", true, 9, true) 'Find "ImageMap" and call the slot. - wait 500 - catch - Warnlog "Unable to open context menu" - Call hCloseDocument - goto endsub - endcatch + Call hMenuSelectNr(9) Printlog " The graphic has to be selected and the context menu has to show graphics related commands" Kontext "ImageMapEditor" if Not ImageMapEditor.Exists(3) then @@ -277,19 +270,19 @@ testcase tHyperlinkEdit Call wTypeKeys " " Call wTypeKeys "" printlog " Open context menu on hyperlink" - Call wTypeKeys "" + Call wTypeKeys "" printlog " Open contextmenu, find the entry 'Edit Hyperlink', and call the slot..." - CALL hMenuFindSelect (21835, true, 18, true) 'Find "Edit Hyperlink" and call the slot. + CALL hMenuFindSelect (21835, true, 18, true) 'Find "Edit Hyperlink" and call the slot. printlog " Check if the Hyperlink-dialogue comes up correctly." - kontext "TabHyperlinkInternet" - if NOT TabHyperlinkInternet.Exists(3) then - Warnlog "No Hyperlink-Dialog visible!" + kontext "HyperlinkDialog" + if NOT HyperlinkDialog.Exists(3) then + Warnlog "No Hyperlink-Dialog visible!" else - TabHyperlinkInternet.Close - end if + HyperlinkDialog.Close + end if printlog " Close text document" - CALL hCloseDocument + CALL hCloseDocument endcase ' ----------------------------------------------------------------------------- -- cgit From bd7c28f9047c54b70a268efc572a14d570926446 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 20 Oct 2010 08:12:34 +0200 Subject: automationdev300m87: #i112208 - Fix two test cases, remove a few unnecessary sleeps --- .../optional/includes/so7pp1/c_so7_pp1_ibis.inc | 91 +++++++++++----------- 1 file changed, 45 insertions(+), 46 deletions(-) diff --git a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc index 2514945a6d42..9e25d898d8ce 100644 --- a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc +++ b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_ibis.inc @@ -27,7 +27,7 @@ '** '** owner : oliver.craemer@Sun.COM '** -'** short description : Test IBIS bug fixes +'** short description : Test IBIS bug fixes '** '************************************************************************ ' ** @@ -40,20 +40,17 @@ testcase tIBIS111099 Dim testdoc as string - testdoc = convertpath(gOfficePath & "user/work/111099.xls") - Printlog "Copy testdocument locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111099.xls"),gOfficePath + ConvertPath("user/work/111099.xls") + testdoc = convertpath( gTesttoolpath & "spreadsheet\optional\input\111099.xls" ) + printlog " Open the test document" hFileOpenLocally(testdoc) - '/// Invoke Control Toolbar - '///+ Try to click control 'Push Button' - '///+>
    • Click successful - BUG #111099#
    • - '///+
    • Click fails - document opened as expected in non-design mode
    • + + printlog " Select formcontrols toolbar" Call hToolbarSelect("CONTROLS", true) sleep(2) Kontext "FormControls" - if SwitchControlDesignMode.IsEnabled then - if SwitchControlDesignMode.getState(2) = 0 then + if SwitchControlDesignMode.IsEnabled then + if SwitchControlDesignMode.getState(2) = 0 then printlog "OK, design mode is disabled" else warnlog "#i108315# Document is opened in design mode -> #111099#" @@ -62,27 +59,27 @@ testcase tIBIS111099 printlog "Form controls toolbar was not enabled." end if call hCloseDocument + hDeleteFile( gLastWorkFile ) endcase '------------------------------------------------------------------------- testcase tIBIS111158 - Dim testdoc as string + Dim testdoc as string Dim testString as string - testdoc = convertpath(gOfficePath & "user/work/111158.xls") - - Printlog "Copy testdocument locally" - app.FileCopy convertpath(gTesttoolpath & "spreadsheet\optional\input\111158.xls"),gOfficePath + ConvertPath("user/work/111158.xls") + testdoc = convertpath( gTesttoolpath & "spreadsheet\optional\input\111158.xls" ) + printlog " Open the test document" hFileOpenLocally(testdoc) + Kontext "Standardbar" - '/// If 'Form Controls' toolbar is not visible: View / Toolbars / Form Controls + '/// If 'Form Controls' toolbar is not visible: View / Toolbars / Form Controls Call hToolbarSelect("CONTROLS", true) sleep(2) Kontext "FormControls" try - if SwitchControlDesignMode.GetState(2) = 0 then + if SwitchControlDesignMode.GetState(2) = 0 then '/// Click on 'Design Mode on/off' button on 'Form Controls'-toolbar SwitchControlDesignMode.click sleep(2) @@ -93,7 +90,7 @@ testcase tIBIS111158 call hCloseDocument goto endsub endcatch - '/// Click on 'Form Design' button on 'Form Controls'-toolbar + '/// Click on 'Form Design' button on 'Form Controls'-toolbar FormDesignTools.Click sleep(2) Kontext "FormDesignTools" @@ -109,9 +106,9 @@ testcase tIBIS111158 Call hCloseDocument goto endsub end if - -'/// Select the first 'ComboxBox' (9th entry from the top) -'/// Open context menu + + '/// Select the first 'ComboxBox' (9th entry from the top) + '/// Open context menu Kontext "FormularNavigator" Liste.TypeKeys "" , true sleep(1) @@ -121,32 +118,33 @@ testcase tIBIS111158 sleep(2) '/// Open 'Properties' (last entry) hMenuSelectNr(5) - sleep(2) + sleep(2) Kontext "ControlPropertiesDialog" Kontext "ControlPropertiesTabControl" ControlPropertiesTabControl.SetPage TabGeneralControl Kontext "TabGeneralControl" '/// Enter in 'Help URL' as value exactly 'HID:123456' - TabGeneralControl.TypeKeys "" , true + TabGeneralControl.TypeKeys "" , true HelpURL.setText "HID:123456" HelpURL.TypeKeys "",true - if HelpURL.GetText <> "HID:123456" then + if HelpURL.GetText <> "HID:123456" then warnlog "'HID:123456' has not been accepted as 'Help URL' value." end if - '/// Close all disturbing menus - Kontext "ControlPropertiesDialog" - sleep(1) - ControlPropertiesDialog.close - sleep(2) + + Kontext "ControlPropertiesDialog" + hCloseDialog( ControlPropertiesDialog, "close" ) + Kontext "FormularNavigator" - FormularNavigator.close + hCloseDialog( FormularNavigator, "close" ) + Kontext "FormDesignTools" - FormDesignTools.close + hCloseDialog( FormDesignTools, "close" ) + Kontext "FormControls" '/// Switch back from the design mode SwitchControlDesignMode.click - FormControls.close - sleep(1) + hCloseDialog( FormControls, "close" ) + '/// Check for right initial string ('Please select one:')in control Kontext "MSC_Special_Dialog" if MSC_Special_Dialog.Exists(3) then @@ -160,12 +158,13 @@ testcase tIBIS111158 warnlog "The control seems to be not named in the document?! Verify! If Solaris: #i100870#" end if call hCloseDocument + hFileDelete( gLastWorkFile ) endcase '------------------------------------------------------------------------- testcase tIBIS111711 -printlog "iBIS Task 111711" + printlog "iBIS Task 111711" printlog " Create a new document" call hNewDocument @@ -174,12 +173,12 @@ printlog "iBIS Task 111711" DocumentCalc.typekeys "12" sleep(2) -'/// create a chart from the content -'/// + NOTE: Do NOT leave the Implace mode + '/// create a chart from the content + '/// + NOTE: Do NOT leave the Implace mode InsertChartCalc '/// The Chart wizard occours Kontext "ChartWizard" - '/// On the chart wizard press OK button + '/// On the chart wizard press OK button if ChartWizard.Exists(2) then printlog "Create chart" ChartWizard.OK @@ -188,31 +187,31 @@ printlog "iBIS Task 111711" warnlog "Chart wizard did not occour! Exiting test case." call hCloseDocument goto endsub - end if -'/// Call slot Window->New Window + end if + '/// Call slot Window->New Window Kontext "DocumentCalc" DocumentCalc.typekeys "" WindowNewWindow sleep(2) call gMouseClick(95,95) -'/// Select chart in new window + '/// Select chart in new window Kontext "DocumentCalc" call fselectFirstOLE sleep(2) - -'/// Delete chart in new window ... -'/// ... and check for crash + + '/// Delete chart in new window ... + '/// ... and check for crash Kontext "DocumentCalc" - try + try DocumentCalc.typekeys "" sleep (2) printlog "OK, there are still " & GetDocumentCount & " documents open" - catch + catch warnlog "Probably the office did crash -> #111711#" call hCloseDocument goto endsub - endcatch + endcatch call hCloseDocument endcase -- cgit From 2651112a8f2cbf418219f172ad3f9e0a404cdec6 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 20 Oct 2010 08:31:49 +0200 Subject: automationdev300m87: #i112208 - Indent fixed --- .../optional/includes/so7pp1/c_so7_pp1_iz.inc | 156 ++++++++++----------- 1 file changed, 78 insertions(+), 78 deletions(-) diff --git a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc index e6e8030da3e5..873ca1bddabc 100644 --- a/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc +++ b/testautomation/spreadsheet/optional/includes/so7pp1/c_so7_pp1_iz.inc @@ -31,16 +31,16 @@ '** '************************************************************************ ' ** -' #1 tIZ19381 ' I/O error when OLE object is thrown out of undo/redo buffer +' #1 tIZ19381 ' I/O error when OLE object is thrown out of undo/redo buffer ' #1 tIZ21036 ' Crash after shifting cells with paste special ' ** '\*********************************************************************** testcase tIZ19381 - Dim sOutputFile as string + Dim sOutputFile as string Dim i as integer - - sOutputFile = convertpath(gOfficepath & "user/work/i19381.ods") + + sOutputFile = convertpath(gOfficepath & "user/work/i19381.ods") printlog "IssueZilla Task 19381" '/// File / New / Spreadsheet @@ -52,10 +52,10 @@ testcase tIZ19381 Kontext "DocumentCalc" DocumentCalc.typekeys "12" sleep(2) - '/// Insert / Chart - InsertChartCalc + '/// Insert / Chart + InsertChartCalc Kontext "ChartWizard" - '/// On the chart wizard press OK button + '/// On the chart wizard press OK button if ChartWizard.Exists(2) then printlog "Create chart" ChartWizard.OK @@ -64,18 +64,18 @@ testcase tIZ19381 warnlog "Chart wizard did not occour! Exiting test case." call hCloseDocument goto endsub - end if + end if Kontext "DocumentCalc" '/// Type [ESCAPE] - DocumentCalc.typekeys "" - sleep(2) + DocumentCalc.typekeys "" + sleep(2) '/// File Save As gOfficepathuser/work/i19381.ods if NOT hFileSaveAsWithFilterKill (sOutputFile, "calc8") then warnlog "Saving test document localy failed -> Aborting" call hCloseDocument goto endsub end if - sleep(2) + sleep(2) '/// File / Close call hCloseDocument sleep(2) @@ -83,21 +83,21 @@ testcase tIZ19381 if hFileOpen(sOutputFile) then Kontext "DocumentCalc" '/// Click into the chart - call gMouseClick(95,95) + call gMouseClick(95,95) Kontext "DocumentCalc" '/// Press [F5] to open the Navigator '/// Select the first Chart/OLE object in the navigator call fselectFirstOLE '/// Edit / Cut - sleep(2) + sleep(2) EditCut - sleep(2) + sleep(2) Kontext "DocumentCalc" '/// Type [ESCAPE] twice DocumentCalc.TypeKeys "" , 2 '/// Edit / Paste EditPaste - sleep(2) + sleep(2) Kontext "DocumentCalc" '/// press [CTRL+S] to save the document again DocumentCalc.typekeys "" @@ -112,7 +112,7 @@ testcase tIZ19381 Active.OK call hCloseDocument goto endsub - end if + end if Kontext "DocumentCalc" '/// Type [ESCAPE] DocumentCalc.TypeKeys "" @@ -120,10 +120,10 @@ testcase tIZ19381 call fCalcSelectRange("E42") for i = 1 to 21 Kontext "DocumentCalc" - '/// Enter 1 and [RETURN] 21 times + '/// Enter 1 and [RETURN] 21 times '///+ as changes to get chart cut/paste out of the undo buffer DocumentCalc.typekeys "1" - next i + next i Kontext "DocumentCalc" '/// Type [CTRL + S] to save the document again DocumentCalc.typekeys "" @@ -137,8 +137,8 @@ testcase tIZ19381 end if else printlog "No message box is in the way!" - end if - '/// File / Close + end if + '/// File / Close call hCloseDocument else warnlog "It was not possible to open the saved document again!" @@ -149,63 +149,63 @@ endcase testcase tIZ21036 -printlog "IssueZilla Task 21036" - -'/// open new document -call hNewDocument -sleep(2) - -'/// select a whole row (e.g. A1:IV1) -Kontext "DocumentCalc" -DocumentCalc.typekeys "" -sleep(2) - -'/// cut selection -try - EditCut -catch - QAErrorLog "Is this a crash?? Please check it out!" - goto endsub -endcatch -sleep(2) - -'/// go to A2 -Kontext "DocumentCalc" -call fCalcSelectRange("A2") -sleep(2) -Kontext "DocumentCalc" -'/// call edit->paste special -EditPasteSpecialCalc -sleep(2) - -'/// check shift cells->right -Kontext "InhalteEinfuegenCalc" -NachRechts.Check - -'/// OK -InhalteEinfuegenCalc.OK - -'/// confirm MsgBox -Kontext "Active" - if Active.Exists(2) then - if Active.GetRT = 304 then - printlog Active.GetText - Active.OK - sleep(2) - end if - else - warnlog "No message box came up!" - goto endsub - end if - -'/// check for crash -try - printlog "OK, there are still " & GetDocumentCount & " documents open" -catch - warnlog "Probably the office did crash -> #I21036#" - goto endsub -endcatch - -call hCloseDocument + printlog "IssueZilla Task 21036" + + '/// open new document + call hNewDocument + sleep(2) + + '/// select a whole row (e.g. A1:IV1) + Kontext "DocumentCalc" + DocumentCalc.typekeys "" + sleep(2) + + '/// cut selection + try + EditCut + catch + QAErrorLog "Is this a crash?? Please check it out!" + goto endsub + endcatch + sleep(2) + + '/// go to A2 + Kontext "DocumentCalc" + call fCalcSelectRange("A2") + sleep(2) + Kontext "DocumentCalc" + '/// call edit->paste special + EditPasteSpecialCalc + sleep(2) + + '/// check shift cells->right + Kontext "InhalteEinfuegenCalc" + NachRechts.Check + + '/// OK + InhalteEinfuegenCalc.OK + + '/// confirm MsgBox + Kontext "Active" + if Active.Exists(2) then + if Active.GetRT = 304 then + printlog Active.GetText + Active.OK + sleep(2) + end if + else + warnlog "No message box came up!" + goto endsub + end if + + '/// check for crash + try + printlog "OK, there are still " & GetDocumentCount & " documents open" + catch + warnlog "Probably the office did crash -> #I21036#" + goto endsub + endcatch + + call hCloseDocument endcase -- cgit From 72cf964ce3b0b3e017d9ebe2f9f67483a79f345e Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 20 Oct 2010 09:13:41 +0200 Subject: automationdev300m87: #i112208 - hOpenFileLocally started --- .../spreadsheet/tools/includes/c_l10n_tools.inc | 208 +++++++++++---------- 1 file changed, 114 insertions(+), 94 deletions(-) diff --git a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc index ff4c508d6c4d..1807ab4bf35a 100644 --- a/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc +++ b/testautomation/spreadsheet/tools/includes/c_l10n_tools.inc @@ -29,11 +29,6 @@ '* '* short description : tools for localisation in calc '* -'************************************************************************************************** -'* -' #1 fFunctionname 'Returns the localized name of a given function in the current UI language -' #1 fError_l10n 'Returns the localized name of a given errorcode in the current UI language -'* '\************************************************************************************************ function fFunctionname ( sFunctionname_en as string ) as string @@ -42,16 +37,16 @@ function fFunctionname ( sFunctionname_en as string ) as string '///+ -Input is the english name of the function as string '///+ -Output is the localized name of the function as string '///+ -If there is no translation available the fallback is the english name - + dim sloaddocument as string dim sfunctionstring as string dim scelladress as string - - use "global/tools/includes/required/t_doc2.inc" - const CFN = "qa:qatesttool:spreadsheet:tools:includes:c_l10n_tools.in:fFunctionname " - + + use "global/tools/includes/required/t_doc2.inc" + const CFN = "spreadsheet:tools:includes:c_l10n_tools.in:fFunctionname " + sloaddocument = gTesttoolPath & "spreadsheet\tools\input\Functionnames.ods" - + '///Load document with all functions gTestToolPath/spreadsheet/tools/input/Functionnames.ods hFileOpenLocally( sloaddocument ) sleep (2) @@ -61,68 +56,82 @@ function fFunctionname ( sFunctionname_en as string ) as string '///Search for function by Search and Replace dialog kontext "DocumentCalc" EditSearchAndReplace - sleep (1) + kontext "FindAndReplace" - '///Setting dialog to defaults - More.Click - SimilaritySearch.UnCheck - CurrentSelectionOnly.UnCheck - Backwards.UnCheck - SearchForStyles.UnCheck - SearchIn.Select 1 - '///Setting search parameter - WholeWordsOnly.Check - SearchFor.SetText sFunctionname_en - SearchNow.click - kontext - '///If a MsgBox appears the search must have failed => Fallback to english name - if active.exists then - if active.getRT = 304 then - warnlog CFN & "Function not found, falling back to english name" - fFunctionname = sFunctionname_en - active.OK + printlog( "Reset dialog to default settings" ) + if ( FindAndReplace.exists( 1 ) ) then + More.Click + SimilaritySearch.UnCheck + CurrentSelectionOnly.UnCheck + Backwards.UnCheck + SearchForStyles.UnCheck + SearchIn.Select 1 + '///Setting search parameter + WholeWordsOnly.Check + SearchFor.SetText sFunctionname_en + SearchNow.click + kontext + '///If a MsgBox appears the search must have failed => Fallback to english name + if active.exists then + if active.getRT = 304 then + warnlog CFN & "Function not found, falling back to english name" + fFunctionname = sFunctionname_en + active.OK + else + '///Throw a warning if a dialog of unexpected resource type appears + warnlog CFN & "Unknown message box! " & active.GetText + active.Default + fFunctionname = sFunctionname_en + end if + + kontext "FindAndReplace" + printlog( "Reset dialog to default settings" ) + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) + else + warnlog( CFN & " not open" ) + endif + call hCloseDocument + exit function + end if + + kontext "FindAndReplace" + printlog( "Reset dialog to default settings" ) + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) else - '///Throw a warning if a dialog of unexpected resource type appears - warnlog CFN & "Unknown message box! " & active.GetText - active.Default - fFunctionname = sFunctionname_en - end if - kontext "FindAndReplace" - sleep (1) - '///Reset dialog to defaultsetting - WholeWordsOnly.UnCheck - FindAndReplace.Close - call hCloseDocument - exit function - end if - kontext "FindAndReplace" - sleep (1) - '///Reset dialog to defaultsettings - WholeWordsOnly.UnCheck - FindAndReplace.Close - Kontext "RechenleisteCalc" - scelladress = Bereich.GetSelText - if fCalcGetCellValue (scelladress) = sFunctionname_en then - '///Get localised string for function by extracting functionname out of next cell - call fCalcSelectRange ( "B" & mid(scelladress,2) ) - kontext ( "RechenleisteCalc" ) - EingabeZeileCalc.TypeKeys ("") - editcopy - sfunctionstring = GetClipboardText () - kontext "DocumentCalc" - DocumentCalc.TypeKeys ("",2) - ' DEBUG: printlog sfunctionstring - ' DEBUG: printlog len(sfunctionstring) - ' DEBUG: printlog instr(sfunctionstring,"(") - fFunctionname = mid(sfunctionstring,2,(instr(sfunctionstring,"(")-2) - printlog " The name of the function in this locale (" & iSprache & ") is " & fFunctionname + warnlog( CFN & " not open" ) + endif + + Kontext "RechenleisteCalc" + scelladress = Bereich.GetSelText + if fCalcGetCellValue (scelladress) = sFunctionname_en then + '///Get localised string for function by extracting functionname out of next cell + call fCalcSelectRange ( "B" & mid(scelladress,2) ) + kontext ( "RechenleisteCalc" ) + EingabeZeileCalc.TypeKeys ("") + editcopy + sfunctionstring = GetClipboardText () + kontext "DocumentCalc" + DocumentCalc.TypeKeys ("",2) + ' DEBUG: printlog sfunctionstring + ' DEBUG: printlog len(sfunctionstring) + ' DEBUG: printlog instr(sfunctionstring,"(") + fFunctionname = mid(sfunctionstring,2,(instr(sfunctionstring,"(")-2) + printlog " The name of the function in this locale (" & iSprache & ") is " & fFunctionname + else + warnlog CFN & "Function not found, falling back to english version" + fFunctionname = sFunctionname_en + end if else - warnlog CFN & "Function not found, falling back to english version" - fFunctionname = sFunctionname_en - end if - + warnlog( CFN & "Unable to open dialog" ) + endif + call hCloseDocument - + hFileDelete( gLastWorkFile ) + end function ' @@ -135,16 +144,16 @@ function fError_l10n ( sError_en as string ) as string '///+ -Input is the english name of the error as string '///+ -Output is the localized name of the error as string '///+ -If there is no translation available the fallback is the english name - + dim sloaddocument as string dim sfunctionstring as string dim scelladress as string - - use "global/tools/includes/required/t_doc2.inc" + + use "global/tools/includes/required/t_doc2.inc" const CFN = "qa:qatesttool:spreadsheet:tools:includes:c_l10n_tools.in:fError_l10n " - + sloaddocument = gTesttoolPath & "spreadsheet\tools\input\Errorcodes.ods" - + '///Load document with all errorcodes gTestToolPath/spreadsheet/tools/input/Errorcodes.ods hFileOpenLocally( sloaddocument ) @@ -155,7 +164,7 @@ function fError_l10n ( sError_en as string ) as string EditSearchAndReplace sleep (1) kontext "FindAndReplace" - '///Setting dialog to defaults + '///Setting dialog to defaults More.Click SimilaritySearch.UnCheck CurrentSelectionOnly.UnCheck @@ -175,27 +184,37 @@ function fError_l10n ( sError_en as string ) as string active.OK else '///Throw a warning if a dialog of unexpected resource type appears - warnlog CFN & "Unknown message box! " & active.GetText - active.Default - fError_l10n = sError_en - end if - kontext "FindAndReplace" - sleep (1) - '///Reset dialog to defaultsetting - WholeWordsOnly.UnCheck - FindAndReplace.Close - call hCloseDocument - exit function - end if + warnlog CFN & "Unknown message box! " & active.GetText + active.Default + fError_l10n = sError_en + end if + + kontext "FindAndReplace" + '///Reset dialog to defaultsetting + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) + else + warnlog( CFN & "Failed to open " ) + endif + + call hCloseDocument + exit function + end if + kontext "FindAndReplace" - sleep (1) '///Reset dialog to defaultsetting - WholeWordsOnly.UnCheck - FindAndReplace.Close + if ( FindAndReplace.exists( 1 ) ) then + WholeWordsOnly.UnCheck + hCloseDialog( FindAndReplace, "close" ) + else + warnlog( CFN & "Failed to open " ) + endif + Kontext "RechenleisteCalc" - scelladress = Bereich.GetSelText + scelladress = Bereich.GetSelText if fCalcGetCellValue (scelladress) = sError_en then - '///Get localised string for ERR by extracting errorcode out of next cell + '///Get localised string for ERR by extracting errorcode out of next cell call fCalcSelectRange ( "B" & mid(scelladress,2) ) kontext "DocumentCalc" editcopy @@ -206,7 +225,8 @@ function fError_l10n ( sError_en as string ) as string warnlog CFN & "Errorcode not found, falling back to english version" fError_l10n = sError_en end if - + call hCloseDocument - + hFileDelete( gLastWorkFile ) + end function -- cgit From ebfb11ec61016f9185a555b3908094933ee16534 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 20 Oct 2010 09:14:06 +0200 Subject: automationdev300m87: #i112208 - hOpenFileLocally started --- .../optional/includes/arrayconstants/c_arrayconstants.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc b/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc index 62057f32c798..6d57e1f13fcf 100644 --- a/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc +++ b/testautomation/spreadsheet/optional/includes/arrayconstants/c_arrayconstants.inc @@ -204,6 +204,7 @@ testcase tArrayconstants01 '///Close Document printlog "Close Document" call hCloseDocument + hFileDelete( sLocalFile ) endcase ' @@ -212,13 +213,11 @@ endcase testcase tArrayconstants02 Dim sImportFile as string - Dim sLocalFile as string Dim sFunctionSUM as string Dim sFunctionMDETERM as string Dim sCellcontent as string sImportFile = convertpath ( gTesttoolpath & "spreadsheet/optional/input/arrayconstants.xls" ) - sLocalFile = convertpath ( gOfficepath & "user/work/arrayconstants.xls" ) sFunctionSUM = fFunctionName ("SUM") sFunctionMDETERM = fFunctionName ("MDETERM") @@ -260,7 +259,7 @@ testcase tArrayconstants02 '/// Save document back to xls locally printlog "Save document back to xls locally" - call hFileSaveAsKill ( slocalfile ) + call hFileSaveAsKill ( gLastWorkFile ) '/// Close document printlog "Close document" @@ -268,7 +267,7 @@ testcase tArrayconstants02 '/// Load Document printlog "Load Document" - call hFileOpen ( slocalfile ) + call hFileOpen ( gLastWorkFile ) sleep (2) '///Check that all cellvalues are the same as before @@ -308,5 +307,6 @@ testcase tArrayconstants02 '///Close document printlog "Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase -- cgit From c3881e55ddf930317ef1c21f7cd70c1cfcd0a95f Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 20 Oct 2010 11:53:24 +0200 Subject: automationdev300m87: #i112208 - hOpenFileLocally should alwas be used together with hFileDelete --- .../required/includes/c_upd_formatmenu2.inc | 19 ++----------------- .../required/includes/c_upd_formatmenu3.inc | 13 +++++-------- .../spreadsheet/required/includes/c_upd_toolsmenu.inc | 3 +++ 3 files changed, 10 insertions(+), 25 deletions(-) diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc index d405237fe4a7..cc448d3c3830 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu2.inc @@ -28,23 +28,6 @@ '* owner : oliver.craemer@oracle.com '* '* short description : Resource Test - Format Menu Part II -'* -'************************************************************************ -'* -' #1 tFormatPrintRanges -' #1 tFormatCharacter -' #1 tFormatParagraph -' #1 tFormatChangeCase -' #1 tFormatStyles -' #1 tFormatAutoFormat -' #1 tFormatConditionalFormatting -' #1 tFormatAnchor -' #1 tFormatAlignment -' #1 tFormatArrange -' #1 tFormatFlip -' #1 tFormatGroup -' #0 tFormatControl - '* '\*********************************************************************** @@ -664,6 +647,7 @@ testcase tFormatAlignment '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -767,6 +751,7 @@ testcase tFormatGroup '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc index 6b305f53a0a3..0dd9d3200937 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_formatmenu3.inc @@ -29,14 +29,6 @@ '* '* short description : Resource Test - Format Menu Part III '* -'************************************************************************ -'* -' #1 tFormatGraphicPositionAndSize -' #1 tFormatGraphicLine -' #1 tFormatGraphicArea -' #1 tFormatGraphicText -' #1 tFormatGraphicPoints -'* '\*********************************************************************** sub c_upd_formatmenu3 @@ -129,6 +121,7 @@ testcase tFormatGraphicPositionAndSize '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -369,6 +362,7 @@ testcase tFormatGraphicLine '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -911,6 +905,7 @@ testcase tFormatGraphicArea '/// Close document printlog " Close document" Call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -1027,6 +1022,7 @@ testcase tFormatGraphicText '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -1047,6 +1043,7 @@ testcase tFormatGraphicPoints '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase diff --git a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc index b13e5f9f43af..74598099b43d 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_toolsmenu.inc @@ -188,6 +188,7 @@ testcase tToolsSpellcheck '/// Close starting document printlog " Close starting document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -314,6 +315,7 @@ testcase tToolsHangulHanjaConversion '/// Close document printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase @@ -402,6 +404,7 @@ testcase tToolsLanguageThesaurus Thesaurus.Cancel printlog " Close document" call hCloseDocument + hFileDelete( gLastWorkFile ) endcase -- cgit From dccc915af045d8d6d06cf664745f4b5dda9fc392 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Wed, 20 Oct 2010 12:09:11 +0200 Subject: automationdev300m87#i115106#Corrected scripting failures due to disabled controls --- .../writer/optional/includes/option/wh_o_2.inc | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/testautomation/writer/optional/includes/option/wh_o_2.inc b/testautomation/writer/optional/includes/option/wh_o_2.inc index 3163453524ff..ff58ce4e4f09 100644 --- a/testautomation/writer/optional/includes/option/wh_o_2.inc +++ b/testautomation/writer/optional/includes/option/wh_o_2.inc @@ -83,7 +83,13 @@ testcase tToolsOptionsHTMLPrint if bCheckboxStatus(6) Then AusDruckereinstellung.UnCheck Else AusDruckereinstellung.Check - if (Keine.IsChecked = True) Then NurNotizen.Check Else Keine.Check + if ( Keine.IsEnabled) then + if (Keine.IsChecked = True) Then + NurNotizen.Check + Else + Keine.Check + end if + end if bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked @@ -185,7 +191,13 @@ testcase tToolsOptionsHTMLPrint AusDruckereinstellung.Check - if (Dokumentende.IsChecked = True) Then Seitenende.Check Else Dokumentende.Check + if ( Dokumentende.IsEnabled ) then + if (Dokumentende.IsChecked = True) Then + Seitenende.Check + Else + Dokumentende.Check + end if + end if bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked -- cgit From 7cd82bd69f5ab5450752c8f15262b0824ea96f95 Mon Sep 17 00:00:00 2001 From: "Wolfram Garten [wg]" Date: Wed, 20 Oct 2010 12:59:38 +0200 Subject: i115106,[Automation]: [Automation] General Cat 1-3 test case fixing --- .../optional/includes/global/g_demoguide.inc | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/g_demoguide.inc b/testautomation/graphics/optional/includes/global/g_demoguide.inc index 28774e24ea40..cb0a428d2f59 100644 --- a/testautomation/graphics/optional/includes/global/g_demoguide.inc +++ b/testautomation/graphics/optional/includes/global/g_demoguide.inc @@ -249,7 +249,7 @@ testcase t_Interoperability wait(20000) Kontext "AvailableForUsePreview" AvailableForUsePreview.TypeKeys " " - sleep (5) + sleep (10) printlog " Verify that the background has changed" Kontext "DocumentImpress" printlog " Background is " & DocumentImpress.StatusGetText (6) 'Debugcode @@ -263,7 +263,7 @@ testcase t_Interoperability Kontext "Tasks" Kontext "AvailableForUsePreview" AvailableForUsePreview.TypeKeys " " - sleep (5) + sleep (10) Kontext "DocumentImpress" if DocumentImpress.StatusGetText (6) = sTemplatename then printlog " The background has been set back to default" @@ -275,20 +275,21 @@ testcase t_Interoperability Kontext "DocumentImpress" Kontext "Slides" Kontext "SlidesControl" - SlidesControl.TypeKeys "" + SlidesControl.OpenContextMenu + sleep 1 + hMenuSelectNr (8) Kontext "DocumentImpress" - DocumentImpress.TypeKeys "" + DocumentImpress.TypeKeys "", true Kontext "Slides" Kontext "SlidesControl" - SlidesControl.TypeKeys "" - kontext "InsertPaste" - if InsertPaste.Exists(1) then - Before.Check - InsertPaste.OK - endif + SlidesControl.OpenContextMenu + sleep 1 + hMenuSelectNr (10) + Printlog " Verify that the slide was moved correctly" Kontext "Slides" - SlidesControl.TypeKeys "" + sleep (5) + SlidesControl.TypeKeys "" if hMenuFindSelect(27268, true, 3) = false then Warnlog "Context-Menu-entry `Rename` was not found. Therefore the test ends." @@ -311,10 +312,9 @@ testcase t_Interoperability setclipboard("") try Kontext "DocumentImpressOutlineView" - DocumentImpressOutlineView.TypeKeys "" DocumentImpressOutlineView.TypeKeys "" sleep (5) - if getclipboard() <> ".NET Enterprise" then + if getclipboard() <> ".NET Enterprise Federation" then warnlog " Wrong selection in outlineview. Should be '.NET Enterprise', but is '" & getclipboard() +"'." else printlog " Switching to Outlineview was successfull" endif -- cgit From 621c70d97299293fedf80984c747f039ee01c7da Mon Sep 17 00:00:00 2001 From: "Wolfram Garten [wg]" Date: Wed, 20 Oct 2010 13:02:08 +0200 Subject: i115106,[Automation]: [Automation] General Cat 1-3 test case fixing --- .../optional/includes/global/g_clipboard.inc | 52 +++++++++++++++------- 1 file changed, 36 insertions(+), 16 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/g_clipboard.inc b/testautomation/graphics/optional/includes/global/g_clipboard.inc index 9d4629f3d262..e2ee473df88f 100644 --- a/testautomation/graphics/optional/includes/global/g_clipboard.inc +++ b/testautomation/graphics/optional/includes/global/g_clipboard.inc @@ -42,8 +42,9 @@ testcase tiEditUndo - Dim sDatei as string Dim Ueber_Text_1 as string + dim sTestfile as string + dim sLocaltestfile as string if ( gApplication = "IMPRESS" ) then ExtensionString = "odp" @@ -51,69 +52,88 @@ testcase tiEditUndo ExtensionString = "odg" end if - sDatei = gTesttoolPath + "graphics\required\input\leer."+ExtensionString - - hFileOpenLocally( sDatei ) - + sTestfile = gTesttoolPath + "graphics\required\input\leer."+ExtensionString + printlog "Loading test file.." + hFileOpenLocally( sTestfile ) + sleep 3 + printlog "Selecting grey rectangle.." hTypeKeys "" sleep 3 + printlog "Opening Position and size dialog." ContextPositionAndSize Kontext if Messagebox.exists (5) then - Messagebox.SetPage TabPositionAndSize + Messagebox.SetPage TabPositionAndSize else - print "what" + printlog "Not the expected Dialog came up. Please check." endif Kontext "TabPositionAndSize" - Ueber_Text_1=PositionX.GetText '/// defining variable for original position of object ///' + printlog "defining variable for original position of object" + Ueber_Text_1=PositionX.GetText + printlog "Canceling dialog." TabPositionAndSize.Cancel sleep 2 Kontext "Toolbar" Auswahl.Click sleep 1 - ContextArrangeBringBackward '/// Bring Object backward ///' + printlog "Sending Rectangle backwards." + ContextArrangeBringBackward sleep 1 + printlog "Deselect." gMouseClick 60,60 sleep 1 Kontext "Toolbar" Auswahl.Click sleep 1 + printlog "trying to select blue rectangle in front" hTypeKeys "" Kontext "Toolbar" Auswahl.Click sleep 1 - ContextPositionAndSize '/// Open Position and Size dialog, checking position ///' + printlog "Open Position and Size dialog, checking position" + ContextPositionAndSize Kontext Messagebox.SetPage TabPositionAndSize Kontext "TabPositionAndSize" - if PositionX=0 Then Warnlog " Command was not completely executed, and it could not be undone." + if PositionX=0 Then Warnlog "Command was not completely executed, and it could not be undone." TabPositionAndSize.Cancel sleep 2 gMouseClick 60,60 sleep 1 - - EditUndo '/// Edit Undo for BringBackward ///' + printlog "Edit Undo for BringBackward" + EditUndo Sleep 2 gMouseClick 60,60 sleep 1 Kontext "Toolbar" Auswahl.Click + printlog "Trying to select grey rectangle again." hTypeKeys "" sleep 1 Kontext "Toolbar" Auswahl.Click - ContextPositionAndSize '/// Again checking position using Position and Size dialog ///' + printlog "Again checking position using Position and Size dialog" + ContextPositionAndSize kontext Messagebox.SetPage TabPositionAndSize kontext "TabPositionAndSize" + printlog "Checking if x Position is like ata the start again." if PositionX.GetText = Ueber_Text_1 then printlog "OK, last order could be redone" else warnlog "Last order could not be redone" end if TabPositionAndSize.Cancel - - Call hCloseDocument '/// Close document ///' + printlog "Close document" + sLocaltestfile = hFileGetLocalPath( gTesttoolPath + "leer."+ExtensionString ) + printlog sLocaltestfile + if (FileExists (sLocaltestfile)) then + app.kill (sLocaltestfile) + printlog "Deleting used file." + else + warnlog "File is missing." + endif + Call hCloseDocument endcase -- cgit From 23f54801224614ba17605157f9556a34cc99229e Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Wed, 20 Oct 2010 13:23:41 +0200 Subject: automationdev300m87#i115106#added warnlog if uno-slot is missing for menu entry --- testautomation/global/tools/includes/required/t_menu.inc | 6 ++++++ 1 file changed, 6 insertions(+) mode change 100755 => 100644 testautomation/global/tools/includes/required/t_menu.inc diff --git a/testautomation/global/tools/includes/required/t_menu.inc b/testautomation/global/tools/includes/required/t_menu.inc old mode 100755 new mode 100644 index 830012cc7dae..b03062b39471 --- a/testautomation/global/tools/includes/required/t_menu.inc +++ b/testautomation/global/tools/includes/required/t_menu.inc @@ -270,6 +270,12 @@ function hMenuFindSelect(MenuID as variant, SelectSlot as Boolean, ExpectedNr as warnlog "The real Position (Separators included) was: " + i endif i = RealEnd + else + if ( i = ExpectedNr ) then + if nID = "" then + warnlog "#i115132#Missing .uno Slots in context menus" + endif + endif endif next i else -- cgit From 5d71179653bf0e248fd129a3a4edbde6099fe9f9 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Wed, 20 Oct 2010 13:28:54 +0200 Subject: automationdev300m87#i115106#optimized output if slot is not found --- .../formatcharacter/w_format_character1.inc | 155 +++++++++++---------- 1 file changed, 81 insertions(+), 74 deletions(-) diff --git a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc index 87c1d9f47082..df216304ea2e 100644 --- a/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc +++ b/testautomation/writer/optional/includes/formatcharacter/w_format_character1.inc @@ -343,10 +343,10 @@ testcase tFormatStyles1 '/// Write 'Style Bold' - execute Context menu 'Style Bold' Call wTypeKeys "Style Bold" Call wTypeKeys "" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Bold", true, 1, false) 'Find 'Bold' and call the slot. + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Bold", true, 1, false) = true then 'Find 'Bold' and call the slot. '/// Check if changes to style have been made /// Kontext "TextObjectbar" if Fett.Getstate(2) = 0 then @@ -354,114 +354,121 @@ testcase tFormatStyles1 end if Call wTypeKeys "" - wait 500 + wait 500 Call wTypeKeys "" + endif printlog "- Style 'Italic' " '/// Write 'Style Italic' - execute Context menu 'Style Italic' Call wTypeKeys "Style Italic" Call wTypeKeys "" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Italic", true, 2, false) 'Find 'Italic' and call the slot. - ' /// Check if changes to style have been made /// + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Italic", true, 2, false) = true then 'Find 'Italic' and call the slot. + ' /// Check if changes to style have been made /// Kontext "TextObjectbar" if Kursiv.Getstate(2) = 0 then Warnlog "#58722#Style 'Italic' with context menu has not been set!" end if - Call wTypeKeys "" - Call wTypeKeys "" + Call wTypeKeys "" + Call wTypeKeys "" + end if printlog "- Style 'Underline' " '/// Write 'Style Underline' - execute Context menu 'Style Underline' Call wTypeKeys "Style Underline" Call wTypeKeys "" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Underline", true, 4, false) 'Find 'Underline' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Underline.GetSelIndex <> 2 then Warnlog "Style 'Underline' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "" - Call wTypeKeys "" - + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Underline", true, 4, false) = true then 'Find 'Underline' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Underline.GetSelIndex <> 2 then Warnlog "Style 'Underline' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "" + Call wTypeKeys "" + end if + printlog "- Style 'Overline' " '/// Write 'Style Overline' - execute Context menu 'Style Strikethrough' Call wTypeKeys "Style Overline" Call wTypeKeys "" - Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Overline", true, 3, false) 'Find 'Overline' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Overline.GetSelIndex <> 2 then Warnlog "Style 'Overline' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "" - Call wTypeKeys "" + Kontext "DocumentWriter" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Overline", true, 3, false) = true then 'Find 'Overline' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Overline.GetSelIndex <> 2 then Warnlog "Style 'Overline' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "" + Call wTypeKeys "" + end if printlog "- Style 'StrikeThrough' " '/// Write 'Style Strikethrough' - execute Context menu 'Style Strikethrough' Call wTypeKeys "Style Strikethrough" Call wTypeKeys "" Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Strikeout", true, 5, false) 'Find 'Strikethrough' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if StrikeThrough.GetSelIndex <> 2 then Warnlog "Style 'StrikeThrough' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "" - Call wTypeKeys "" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Strikeout", true, 5, false) = true then 'Find 'Strikethrough' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if StrikeThrough.GetSelIndex <> 2 then Warnlog "Style 'StrikeThrough' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "" + Call wTypeKeys "" + end if printlog "- Style 'Shadow' " '/// Write 'Style Shadow' - execute Context menu 'Style Shadow' Call wTypeKeys "Style Shadow" Call wTypeKeys "" Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:Shadowed", true, 6, false) 'Find 'Shadowed' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Shadow.IsChecked = False then Warnlog "Style 'Shadow' with context menu has not been set!" - TabFontEffects.Cancel - Call wTypeKeys "" - Call wTypeKeys "" + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:Shadowed", true, 6, false) = true then 'Find 'Shadowed' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Shadow.IsChecked = False then Warnlog "Style 'Shadow' with context menu has not been set!" + TabFontEffects.Cancel + Call wTypeKeys "" + Call wTypeKeys "" + end if printlog "- Style 'Outline' " '/// Write 'Style Outline' - execute Context menu 'Style Outline' Call wTypeKeys "Style Outline" Call wTypeKeys "" Kontext "DocumentWriter" - DocumentWriter.OpenContextMenu - Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. - Call hMenuFindSelect (".uno:OutlineFont", true, 7, false) 'Find 'Outline' and call the slot. - ' /// Check if changes to style have been made /// - FormatCharacter - Kontext - Active.Setpage TabFontEffects - Kontext "TabFontEffects" - if Outline.IsChecked = false then Warnlog "Style 'Outline' with context menu has not been set!" - TabFontEffects.Cancel - + DocumentWriter.OpenContextMenu + Call hMenuFindSelect (".uno:StyleMenu", true, 5, false) 'Find 'Style' and call the slot. + if hMenuFindSelect (".uno:OutlineFont", true, 7, false) = true then 'Find 'Outline' and call the slot. + ' /// Check if changes to style have been made /// + FormatCharacter + Kontext + Active.Setpage TabFontEffects + Kontext "TabFontEffects" + if Outline.IsChecked = false then Warnlog "Style 'Outline' with context menu has not been set!" + TabFontEffects.Cancel + end if + printlog "Close Document." Call hCloseDocument endcase -- cgit From 86df81c63c0c6822b1f1d452df481871f255725e Mon Sep 17 00:00:00 2001 From: "Wolfram Garten [wg]" Date: Wed, 20 Oct 2010 13:45:19 +0200 Subject: i115106,[Automation]: [Automation] General Cat 1-3 test case fixing --- .../optional/includes/global/g_find_replace.inc | 2 + .../optional/includes/global/g_paneview.inc | 4 +- .../optional/includes/global/g_spellcheck.inc | 64 ++++++---------------- .../optional/includes/global/g_stylist.inc | 38 ++++++++++++- 4 files changed, 57 insertions(+), 51 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/g_find_replace.inc b/testautomation/graphics/optional/includes/global/g_find_replace.inc index 4f6a045578e0..b96099be71ab 100644 --- a/testautomation/graphics/optional/includes/global/g_find_replace.inc +++ b/testautomation/graphics/optional/includes/global/g_find_replace.inc @@ -36,6 +36,8 @@ '* '\********************************************************************************** testcase tiEditSearchAndReplace + qaerrorlog "#i115121# Find and replace: wrong replacement" + goto endsub '/// This test tests the 'Search and Replace' -dialogue. ///' Dim sFile 'as string Dim sExpression(2) as string ' Expression to look for: ... Replace with diff --git a/testautomation/graphics/optional/includes/global/g_paneview.inc b/testautomation/graphics/optional/includes/global/g_paneview.inc index a2e7bdb87266..fb3620496759 100644 --- a/testautomation/graphics/optional/includes/global/g_paneview.inc +++ b/testautomation/graphics/optional/includes/global/g_paneview.inc @@ -78,7 +78,7 @@ testcase tiMinimize_Maximize_Docking_SlidePane Sleep 1 Slides.Size 300, 400 Sleep 1 - Slides.Size 150, 250 + Slides.Size 170, 250 Sleep 1 Slides.Size xSize%, ySize% Sleep 1 @@ -451,7 +451,7 @@ testcase tdMinimize_Maximize_Docking_Pagepane Sleep 1 Pagepane.Size 300, 400 Sleep 1 - Pagepane.Size 150, 250 + Pagepane.Size 170, 250 Sleep 1 Pagepane.Size xSize%, ySize% Sleep 1 diff --git a/testautomation/graphics/optional/includes/global/g_spellcheck.inc b/testautomation/graphics/optional/includes/global/g_spellcheck.inc index f46c75f3e497..a514db14d783 100644 --- a/testautomation/graphics/optional/includes/global/g_spellcheck.inc +++ b/testautomation/graphics/optional/includes/global/g_spellcheck.inc @@ -136,7 +136,7 @@ endcase 'tiToolsSpellcheckCorrect testcase tiToolsSpellcheckError if iSprache = 48 then qaerrorlog "This test is not adapted for polish, 48." - got endsub + goto endsub endif Dim Fehler$ Dim Sprachenname$ @@ -155,7 +155,7 @@ testcase tiToolsSpellcheckError case 39 : FehlerText$ = "Ringrarziamo per l'interessa mostrato a collaborare con la firma." : Fehler$ = "Ringrarziamo" : Sprachenname$ = "Italienisch" case 46 : FehlerText$ = "Detd varierar vad som behandlas och ur vilket perspektiv." : Fehler$ = "Detd" : Sprachenname$ = "Schwedisch" case 49 : FehlerText$ = "Diees ist ein Fehler." : Fehler$ = "Diees" : Sprachenname$ = "Deutsch" - case 50 : FehlerText$ = "Toje napaka, ker manjka presledek." : Fehler$ = "Toje" : Sprachenname$ = "SlovenÅ¡Ä?ina" + case 50 : FehlerText$ = "Toje napaka, ker manjka presledek." : Fehler$ = "Toje" : Sprachenname$ = "Slovenš�?ina" case 55 : FehlerText$ = "Eesta poderia ser a resposta para suas preces?": Fehler$ = "Eesta" : Sprachenname$ = "Portugiesisch" case else : if bAsianLan then @@ -328,7 +328,7 @@ testcase tiToolsSpellcheckCheck_Change printlog "Close document" Call hCloseDocument -endcase +endcase 'tiToolsSpellcheckCheck_Change '------------------------------------------------------------------------------- testcase tiToolsSpellcheckCheck_ChangeAll @@ -374,8 +374,10 @@ testcase tiToolsSpellcheckCheck_ChangeAll printlog "Close document" Call hCloseDocument -endcase +endcase 'tiToolsSpellcheckCheck_ChangeAll + '------------------------------------------------------------------------------- + function delete_all_added_words(aWords) '/// this function delete the words in sWords in all user dictionaries @@ -384,44 +386,7 @@ function delete_all_added_words(aWords) Dim iWordCounter as integer Dim iBooks as integer - Select Case Ucase(gApplication) - case "DRAW" : sExt = ".odg" - case "IMPRESS" : sExt = ".odp" - end select - - printlog "Load prepared document containing 4 errors : graphics\\required\\input\\recht_" & iSprache & sExt - if (not bAsianLan) then - printlog "Check if the document is writable." - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - else - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_1"+sExt) - end if - if fIsDocumentWritable = false then - printlog "Make the document writable and check if it's succesfull." - if fMakeDocumentWritable = false then - warnlog "The document can't be make writeable. Test stopped." - goto endsub - end if - end if - select case iSprache ' sWord(1)=red : sWord(2)=turquoise - case 01 : sWord(1) = "documente" : sWord(2) = "expriss" - case 33 : sWord(1) = "intercu" : sWord(2) = "Lees" - case 34 : sWord(1) = "afekto" : sWord(2) = "fratternal" - case 36 : sWord(1) = "szeerint" : sWord(2) = "tervvezi" - case 39 : sWord(1) = "Millano" : sWord(2) = "tarrget" - case 46 : sWord(1) = "desa" : sWord(2) = "occh" - case 49 : sWord(1) = "Texxt" : sWord(2) = "reichtt" - case 50 : sWord(1) = "Bsedilo" : sWord(2) = "zadosÄ?a" - case 55 : sWord(1) = "esktava" : sWord(2) = "noitee" - case else : - if bAsianLan then - sWord(1) = "documente" : sWord(2) = "expriss" - else - Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here and create the file" - end if - end select - sleep 2 - + Printlog "Delete the given words from dictionaries." printlog "Call Tools->Options." ToolsOptions printlog "Select in category 'Languagesettings' entry 'Writing Aids.'" @@ -436,7 +401,7 @@ function delete_all_added_words(aWords) Kontext "BenutzerwoerterbuchBearbeiten" sleep 1 printlog "Check every book, if it contains the words." - iBooks = Buch.getItemCount + iBooks = Buch.getItemCount for iBookCounter = 1 to iBooks Buch.select(iBookCounter) printlog "Items in Booklist: " & WordList.getItemCount @@ -457,8 +422,10 @@ function delete_all_added_words(aWords) printlog "Press button 'OK' on dialog 'Writing Aids'." ExtrasOptionenDlg.OK -end function +end function 'delete_all_added_words + '------------------------------------------------------------------------------- + function delete_word_from_dictionary(sWord as String, sDictionary as String) '/// this function delete the words in sWords in all user dictionaries @@ -498,7 +465,9 @@ function delete_word_from_dictionary(sWord as String, sDictionary as String) printlog "Press button 'OK' on dialog 'Writing Aids'." ExtrasOptionenDlg.OK -end function +end function 'delete_word_from_dictionary + +'------------------------------------------------------------------------------- function fSelectWithString(oControl as Object,sText as String) @@ -513,8 +482,9 @@ function fSelectWithString(oControl as Object,sText as String) endif next -end function +end function 'fSelectWithString +'------------------------------------------------------------------------------- function getWordsForLanguage() @@ -563,4 +533,4 @@ function getWordsForLanguage() getWordsForLanguage = aWords -end function +end function 'getWordsForLanguage diff --git a/testautomation/graphics/optional/includes/global/g_stylist.inc b/testautomation/graphics/optional/includes/global/g_stylist.inc index fab547eb5d3b..f09e6c0fd433 100644 --- a/testautomation/graphics/optional/includes/global/g_stylist.inc +++ b/testautomation/graphics/optional/includes/global/g_stylist.inc @@ -518,8 +518,10 @@ testcase tiFormatStylist goto endsub end select + printlog "Open new doc" Call hNewDocument sleep 2 + printlog "call the navigator" Kontext "Gestalter" if Gestalter.Exists Then Warnlog "- Stylist exists, perhaps not closed last time a Impress doc was open" @@ -529,11 +531,14 @@ testcase tiFormatStylist FormatStylist Kontext "Gestalter" + printlog "opening graphics styles" Grafikvorlagen.Click sleep 1 + printlog "Select number 1" Vorlagenliste.Select Num1 ' num1 sleep 1 Printlog "- open Grafic template Dialogs using the context menue , checking if all resources exist" + printlog "Opening context menu" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (2) @@ -543,6 +548,7 @@ testcase tiFormatStylist Messagebox.SetPage TabText Kontext "TabText" sleep 1 + printlog "Canceling dialog" TabText.Cancel sleep 1 @@ -550,18 +556,21 @@ testcase tiFormatStylist Kontext "Gestalter" Printlog "- presentation templates" sleep 1 + printlog "presentation styles" Praesentationsvorlagen.Click Vorlagenliste.Select Num2 sleep 1 + printlog "opening context menu" Vorlagenliste.OpenContextMenu sleep 1 + printlog "selecting modify" hMenuSelectNr (1) sleep 1 Kontext if Messagebox.exists (5) then try - ' Messagebox.SetPage TabArea + printlog "Messagebox.SetPage TabArea" Kontext "TabArea" if TabArea.Exists = false then warnlog "Where is TabArea?" @@ -578,86 +587,111 @@ testcase tiFormatStylist Kontext "Gestalter" sleep 1 + printlog "Select number 3" Vorlagenliste.Select Num3 sleep 1 + printlog "opening context menu of number 3" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (1) sleep 1 + printlog "Check the styles..." call hWalkTheStyles (1,1) Kontext + printlog "setting tabpage indents and spacing" Messagebox.SetPage TabEinzuegeUndAbstaende Kontext "TabEinzuegeUndAbstaende" sleep 1 + printlog "Canceling tabpage" TabEinzuegeUndAbstaende.Cancel sleep 1 Kontext "Gestalter" sleep 1 + printlog "Select number 4" Vorlagenliste.Select Num4 sleep 1 + printlog "opening context menu of number 4" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (1) sleep 1 Kontext + printlog "setting tabpage TabFont" Messagebox.SetPage TabFont kontext "TabFont" Kontext + printlog "setting tabpage TabFontEffects" Messagebox.SetPage TabFontEffects kontext "TabFontEffects" Kontext + printlog "setting tabpage TabIndents and Spacing" Messagebox.SetPage TabEinzuegeUndAbstaende kontext "TabEinzuegeUndAbstaende" sleep 1 + printlog "canceling TabIndents and Spacing" TabEinzuegeUndAbstaende.Cancel sleep 1 Kontext "Gestalter" sleep 1 + printlog "opening context menu of number 5" Vorlagenliste.Select Num5 sleep 1 + printlog "opening context menu of number 5" Vorlagenliste.OpenContextMenu sleep 1 hMenuSelectNr (1) sleep 1 Kontext + printlog "setting tabpage Tab Font" Messagebox.SetPage TabFont kontext "TabFont" Kontext + printlog "setting tabpage Tab FontEffects" Messagebox.SetPage TabFontEffects kontext "TabFontEffects" Kontext + printlog "setting tabpage TabIndents and Spacing" Messagebox.SetPage TabEinzuegeUndAbstaende kontext "TabEinzuegeUndAbstaende" sleep 1 Kontext + printlog "setting tabpage Tab Bullets" Messagebox.SetPage TabBullet Kontext "TabBullet" sleep 1 Kontext + printlog "setting tabpage Tab Numbering Type" Messagebox.SetPage TabNumerierungsart Kontext "TabNumerierungsart" sleep 1 Kontext + printlog "setting tabpage Tab Graphics" Messagebox.SetPage TabGrafiken Kontext "TabGrafiken" sleep 1 Kontext + printlog "setting tabpage Tab Numbering options" Messagebox.SetPage TabOptionenNumerierung Kontext "TabOptionenNumerierung" sleep 1 + printlog "Canceling..." TabOptionenNumerierung.Cancel sleep 1 endif + kontext "DocumentImpress" + printlog "Closing Stylist" if lcase(gPlatform) = "osx" then hTypekeys "" else - hTypeKeys "" + Kontext "Gestalter" + Gestalter.Close end if sleep 1 Kontext "Gestalter" if Gestalter.Exists Then Warnlog "- Stylist could not be closed pressing F11" + printlog "Closing doc." Call hCloseDocument endcase 'tiFormatStylist -- cgit From ec601068977e3fd2026e27bf5b418912fdd46e5a Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Wed, 20 Oct 2010 13:47:29 +0200 Subject: automationdev300m87: #i115106 - excluded tests due to #i115138 --- .../optional/includes/global/export_graphic.inc | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/testautomation/graphics/optional/includes/global/export_graphic.inc b/testautomation/graphics/optional/includes/global/export_graphic.inc index f4c34ec36795..bde50b3ac098 100644 --- a/testautomation/graphics/optional/includes/global/export_graphic.inc +++ b/testautomation/graphics/optional/includes/global/export_graphic.inc @@ -33,6 +33,9 @@ testcase tEPS + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + dim x as integer dim i as integer @@ -96,6 +99,11 @@ endcase 'tEPS '------------------------------------------------------------------------- testcase tPCT + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + + dim x as integer dim i as integer dim iWaitIndex as integer @@ -244,6 +252,10 @@ testcase tPCT endcase 'tPCT '------------------------------------------------------------------------------- testcase tPBM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "PBM - Portable Bitmap (.pbm)" const sExt = ".pbm" @@ -274,6 +286,10 @@ testcase tPBM endcase 'tPBM '------------------------------------------------------------------------------- testcase tPGM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "PGM - Portable Graymap (.pgm)" const sExt = ".pgm" @@ -303,6 +319,10 @@ testcase tPGM endcase 'tPGM '------------------------------------------------------------------------------- testcase tPPM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "PPM - Portable Pixelmap (.ppm)" const sExt = ".ppm" @@ -332,6 +352,10 @@ testcase tPPM endcase 'tPPM '------------------------------------------------------------------------------ testcase tRAS + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "RAS - Sun Raster Image (.ras)" const sExt = ".ras" @@ -352,6 +376,10 @@ testcase tRAS endcase 'tRAS '------------------------------------------------------------------------------ testcase tTIFF + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + dim x as integer dim i as integer @@ -375,6 +403,10 @@ testcase tTIFF endcase 'tTIFF '------------------------------------------------------------------------------ testcase tXPM + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "XPM - X PixMap (.xpm)" const sExt = ".xpm" @@ -395,6 +427,10 @@ testcase tXPM endcase 'tXPM '------------------------------------------------------------------------------- testcase tGIF + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "GIF - Graphics Interchange Format (.gif)" const sExt = ".gif" @@ -425,6 +461,10 @@ testcase tGIF endcase 'tGIF '------------------------------------------------------------------------------- testcase tJPEG + warnlog( "#i115138# - Test document freezes draw" ) + goto endsub + + const sFilter = "JPEG - Joint Photographic Experts Group (.jpg;.jpeg;.jfif;.jif;.jpe)" const sExt = ".jpg" -- cgit From 424081d3c899a168522ecc13436a8f18da8816f2 Mon Sep 17 00:00:00 2001 From: "Wolfram Garten [wg]" Date: Wed, 20 Oct 2010 15:31:55 +0200 Subject: i115106,[Automation]: [Automation] General Cat 1-3 test case fixing --- .../optional/includes/impress/i_slideshow.inc | 35 +++++++++++++---- .../optional/includes/impress/i_slideshow3.inc | 42 +++++++++++---------- .../graphics/optional/includes/impress/i_view.inc | 8 ++-- testautomation/graphics/required/input/recht_1.odp | Bin 15116 -> 13365 bytes 4 files changed, 54 insertions(+), 31 deletions(-) diff --git a/testautomation/graphics/optional/includes/impress/i_slideshow.inc b/testautomation/graphics/optional/includes/impress/i_slideshow.inc index c9fec2c44ea8..cfcc0fbd2e2f 100644 --- a/testautomation/graphics/optional/includes/impress/i_slideshow.inc +++ b/testautomation/graphics/optional/includes/impress/i_slideshow.inc @@ -35,9 +35,12 @@ testcase tSlideShowSlideShow dim bLoaded as boolean dim i as integer + dim testfile as string + dim localtestfile as string '/// open file 'graphics\\input\\diashow.odp' ///' - hFileOpenLocally( gTesttoolPath + "graphics\required\input\diashow.odp" ) + testfile = ( gTesttoolPath + "graphics\required\input\diashow.odp" ) + hFileOpenLocally( testfile ) sleep 30 bLoaded = false @@ -126,8 +129,15 @@ testcase tSlideShowSlideShow '/// Set "Start with current page" back to default = on, in ToolsOptions ///' setStartCurrentPage(TRUE) '/// close the application ///' - Call hCloseDocument - + Call hCloseDocument + localtestfile = hFileGetLocalPath( gTesttoolPath + "diashow.odp" ) + printlog localtestfile + if (FileExists (localtestfile)) then + app.kill (localtestfile) + printlog "Deleting used file." + else + warnlog "File is missing." + endif endcase 'tSlideShowSlideShow '------------------------------------------------------------------------------- @@ -216,6 +226,8 @@ testcase tSlideShowSlideShowSettings dim sTemp as string dim saSlideNames(4) as string dim bCurrentPage as boolean + dim sTestfile as string + dim sLocaltestfile as string S1 = glLocale (2) + " 1" S2 = glLocale (2) + " 2" @@ -279,9 +291,10 @@ testcase tSlideShowSlideShowSettings Call hCloseDocument sleep 5 - bLoaded = false - '/// open file 'graphics\\input\\diashow.odp' (Slide Show with 4 Slides) ///' - hFileOpenLocally( gTesttoolPath + "graphics\required\input\diashow.odp" ) + bLoaded = false + '/// open file 'graphics\\input\\diashow.odp' (Slide Show with 4 Slides) ///' + sTestfile = ( gTesttoolPath + "graphics\required\input\diashow.odp" ) + hFileOpenLocally( sTestfile ) sleep 10 try @@ -681,7 +694,15 @@ testcase tSlideShowSlideShowSettings setStartCurrentPage(TRUE) '/// Close the document ///' call hCloseDocument - + sLocaltestfile = hFileGetLocalPath( gTesttoolPath + "diashow.odp" ) + printlog sLocaltestfile + if (FileExists (sLocaltestfile)) then + app.kill (sLocaltestfile) + printlog "Deleting used file." + else + warnlog "File is missing." + endif + endcase 'tSlideShowSlideShowSettings '------------------------------------------------------------------------------- diff --git a/testautomation/graphics/optional/includes/impress/i_slideshow3.inc b/testautomation/graphics/optional/includes/impress/i_slideshow3.inc index 63a04aa6f8d5..bc138fef445d 100644 --- a/testautomation/graphics/optional/includes/impress/i_slideshow3.inc +++ b/testautomation/graphics/optional/includes/impress/i_slideshow3.inc @@ -529,7 +529,8 @@ endcase testcase tExtrasIndividuellePraesentation Printlog "- Slideshow/Individual slideshow" - Call hNewDocument '/// new impress document ///' + Call hNewDocument + Call sSelectEmptyLayout '/// new impress document ///' '/// Deactivate "Start with current page" in ToolsOptions ///' setStartCurrentPage(FALSE) '/// check state of navigator ! expected: closed ///' @@ -546,24 +547,27 @@ testcase tExtrasIndividuellePraesentation Kontext "Bildschirmpraesentation" Fenster.Check Bildschirmpraesentation.OK - InsertSlide '/// insert slide ///' - sleep 2 - hTypekeys "" - sleep 2 - InsertSlide - sleep 2 - hTypekeys "" - sleep 2 - InsertSlide '/// insert another slide ///' - sleep 2 - hTypekeys "" - sleep 2 - Printlog " - Slides added" - sleep 1 - Kontext "DocumentImpress" - DocumentImpress.TypeKeys "" '/// open navigator ///' - sleep 1 - Kontext "NavigatorDraw" + InsertSlide '/// insert slide ///' + sleep 2 + Call sSelectEmptyLayout + hTypekeys "" + sleep 2 + InsertSlide + sleep 2 + Call sSelectEmptyLayout + hTypekeys "" + sleep 2 + InsertSlide '/// insert another slide ///' + sleep 2 + Call sSelectEmptyLayout + hTypekeys "" + sleep 2 + Printlog " - Slides added" + sleep 1 + Kontext "DocumentImpress" + DocumentImpress.TypeKeys "" '/// open navigator ///' + sleep 1 + Kontext "NavigatorDraw" if NavigatorDraw.Exists Then Printlog " - Navigator exists" Erste.Click '/// switch to 1st slide ///' diff --git a/testautomation/graphics/optional/includes/impress/i_view.inc b/testautomation/graphics/optional/includes/impress/i_view.inc index 54ba5132d16e..e82ec2ec38a3 100644 --- a/testautomation/graphics/optional/includes/impress/i_view.inc +++ b/testautomation/graphics/optional/includes/impress/i_view.inc @@ -61,11 +61,9 @@ testcase tViewWorkspaceHandoutView Call hNewDocument '/// new document ///' sleep 2 Kontext "DocumentImpress" - if NOT documentImpress.Exists then - hNewDocument - sleep 1 - end if - sleep 2 + DocumentImpress.UseMenu + hMenuSelectNr (5) + hMenuSelectNr (13) Printlog " ViewWorkspaceHandoutView" ViewWorkspaceHandoutView '/// view background handout ///' sleep 2 diff --git a/testautomation/graphics/required/input/recht_1.odp b/testautomation/graphics/required/input/recht_1.odp index fbad5296d1b1..998668d43966 100755 Binary files a/testautomation/graphics/required/input/recht_1.odp and b/testautomation/graphics/required/input/recht_1.odp differ -- cgit From bee2ea6aabf2c7575ef61bedc2a621d29c6167d5 Mon Sep 17 00:00:00 2001 From: "Wolfram Garten [wg]" Date: Wed, 20 Oct 2010 15:59:17 +0200 Subject: i115106,[Automation]: [Automation] General Cat 1-3 test case fixing --- .../optional/includes/global/export_graphic.inc | 72 ---------------------- 1 file changed, 72 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/export_graphic.inc b/testautomation/graphics/optional/includes/global/export_graphic.inc index f4c34ec36795..ebcb1f4d8e57 100644 --- a/testautomation/graphics/optional/includes/global/export_graphic.inc +++ b/testautomation/graphics/optional/includes/global/export_graphic.inc @@ -167,78 +167,6 @@ testcase tPCT endif endif - printlog "----------3rd: exporting part of the picture and inserting into new file." - hTypeKeys ("") - fGetSizeXY sx1, sY, TRUE - - if ( hCallExport( OutputGrafikTBO + "1", sFilter, TRUE ) ) then - - Kontext "PCTOptions" - printlog( "Export options dialog" ) - if ( PCTOptions.Exists( 2 ) ) then - hCloseDialog( PCTOptions, "ok" ) - else - warnlog( "No export options dialog was displayed" ) - endif - - sOutputFile = OutputGrafikTBO + "1" + sExt - if ( hWaitForOutputFile( sOutputFile ) ) then - printlog( "Close file and re-insert graphics into new document" ) - hInsertGraphicsToNewFile( sOutputFile ) ' local helper function, see bottom of this file - else - warnlog( "File was not saved: " & sOutputFile ) - endif - - bTemp = fGetSizeXY( sx1, sY, bTemp ) - if (bTemp = FALSE) then - warnlog "Selected original size NOT OK :-(" - endif - endif - - hFileReOpen( "" ) - printlog "----------4th: exporting rectangle and reload file." - hRechteckErstellen ( 10, 10, 30, 40 ) - - if ( hCallExport( OutputGrafikTBO + "2" , sFilter, TRUE ) ) then - - Kontext "PCTOptions" - printlog( "Export options dialog" ) - if ( PCTOptions.Exists( 2 ) ) then - Exportwidth.SetText "9" - if Exportmeasurement.GetSelText = "inches" then - sx1 = (Exportwidth.GetText)+ """" - printlog "sx1= " & sx1 - else - sx1 = (Exportwidth.GetText)+ "cm" - endif - - if Exportmeasurement.GetSelText = "inches" then - sY = (Exportheight.GetText)+ """" - printlog "sY= " & sY - else - sY = (Exportheight.GetText)+ "cm" - endif - hCloseDialog( PCTOptions, "ok" ) - else - warnlog( "No export options dialog was displayed" ) - endif - - sOutputFile = OutputGrafikTBO + "2" + sExt - - if ( not hWaitForOutputFile( sOutputFile ) ) then - warnlog( "File was not saved: " & sOutputFile ) - endif - - printlog( "Reload file if it exists. Warn if not" ) - hFileReOpen( sOutputFile ) - - kontext "DocumentDraw" - DocumentDraw.TypeKeys ("") - ContextOriginalSize - bTemp = fGetSizeXY( sx1, sY, bTemp ) - if ( not bTemp ) then warnlog "Selected original size NOT OK :-(" - endif - call hCloseDocument endcase 'tPCT -- cgit From c5c07a6c2f65a989527889c49c151d15f8d2c579 Mon Sep 17 00:00:00 2001 From: Thorsten Bosbach Date: Wed, 20 Oct 2010 17:15:18 +0200 Subject: #i115106# change extension dependency --- .../optional/input/dependencies/version34.oxt | Bin 1494 -> 1441 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/testautomation/extensions/optional/input/dependencies/version34.oxt b/testautomation/extensions/optional/input/dependencies/version34.oxt index e14671c77e92..772645635446 100644 Binary files a/testautomation/extensions/optional/input/dependencies/version34.oxt and b/testautomation/extensions/optional/input/dependencies/version34.oxt differ -- cgit From 6c5f191f198f6c6f41e3c354a4ba4ca87d56f848 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Wed, 20 Oct 2010 21:40:42 +0200 Subject: automationdev300m87#i115106#fixed access to disabled controls and reloading local file --- .../writer/optional/includes/option/wr_o_2.inc | 24 +++++++++++++++++++--- .../writer/optional/includes/option/wr_o_3.inc | 10 ++++----- .../writer/optional/includes/option/wr_o_4.inc | 3 --- 3 files changed, 26 insertions(+), 11 deletions(-) diff --git a/testautomation/writer/optional/includes/option/wr_o_2.inc b/testautomation/writer/optional/includes/option/wr_o_2.inc index 7b9322c169d8..4c5cdc95391f 100644 --- a/testautomation/writer/optional/includes/option/wr_o_2.inc +++ b/testautomation/writer/optional/includes/option/wr_o_2.inc @@ -508,7 +508,13 @@ testcase tToolsOptionsWriterPrint1 if bCheckboxes(10) then LeereSeitenDrucken.UnCheck else LeereSeitenDrucken.Check if bCheckboxes(11) then AusDruckereinstellung.UnCheck else AusDruckereinstellung.Check - if (Keine.IsChecked = True) then NurNotizen.Check else Keine.Check + if Keine.IsEnabled then + if (Keine.IsChecked = True) then + NurNotizen.Check + else + Keine.Check + endif + endif bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked @@ -612,7 +618,13 @@ testcase tToolsOptionsWriterPrint1 LeereSeitenDrucken.UnCheck AusDruckereinstellung.UnCheck - if (NurNotizen.IsChecked = True) then Dokumentende.Check else NurNotizen.Check + if NurNotizen.IsEnabled then + if (NurNotizen.IsChecked = True) then + Dokumentende.Check + else + NurNotizen.Check + endif + endif bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked @@ -666,7 +678,13 @@ testcase tToolsOptionsWriterPrint1 LeereSeitenDrucken.Check AusDruckereinstellung.Check - if (Dokumentende.IsChecked = True) then Seitenende.Check else Dokumentende.Check + if Dokumentende.IsEnabled then + if (Dokumentende.IsChecked = True) then + Seitenende.Check + else + Dokumentende.Check + endif + endif bTempRadioBut(1) = Keine.IsChecked bTempRadioBut(2) = NurNotizen.IsChecked diff --git a/testautomation/writer/optional/includes/option/wr_o_3.inc b/testautomation/writer/optional/includes/option/wr_o_3.inc index 9868740c733c..0a047499d9f8 100644 --- a/testautomation/writer/optional/includes/option/wr_o_3.inc +++ b/testautomation/writer/optional/includes/option/wr_o_3.inc @@ -1097,10 +1097,10 @@ endcase '------------------------------------------------------------------------------------------------------------ testcase tToolsOptionsWriterCompatibility3 -DIM iWords_to_right AS integer 'variable for counting word-steps -DIM iOptionsCount AS integer 'variable for counting options on cmopatibility page -DIM sDocument AS string 'variable for saving the doc -DIM sFoundWord AS string 'variable for word found one line below + DIM iWords_to_right AS integer 'variable for counting word-steps + DIM iOptionsCount AS integer 'variable for counting options on cmopatibility page + DIM sDocument AS string 'variable for saving the doc + DIM sFoundWord AS string 'variable for word found one line below printlog ">>> Configuration of behavior when a line break is inserted <<<" '/// New Writer Doc @@ -1253,7 +1253,7 @@ DIM sFoundWord AS string 'variable for word found one line below ExtrasOptionenDLG.Cancel printlog "Reload recently saved document" - hFileOpenLocally( sDocument) + hFileOpen( sDocument) printlog "Tools-Options-OOo Writer-Compatibility" ToolsOptions diff --git a/testautomation/writer/optional/includes/option/wr_o_4.inc b/testautomation/writer/optional/includes/option/wr_o_4.inc index 53915f76bc63..d5516718ee66 100644 --- a/testautomation/writer/optional/includes/option/wr_o_4.inc +++ b/testautomation/writer/optional/includes/option/wr_o_4.inc @@ -858,9 +858,6 @@ endcase testcase tToolsOptionsWriterMailMerge - warnlog( "#i111914# - Test excluded, needs review" ) - goto endsub - Call hNewDocument printlog ("- Tools/Options/Writer: Mail Merge ") Kontext "Navigator" -- cgit From 3cc2f72a909c3e83a4de61d492c2fced472c5413 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Thu, 21 Oct 2010 08:03:43 +0200 Subject: automationdev300m87#i115106#warnlog removed and excluded testcase enabled --- testautomation/writer/optional/includes/regexp/search.inc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/testautomation/writer/optional/includes/regexp/search.inc b/testautomation/writer/optional/includes/regexp/search.inc index 163aa230f2e1..e5fe3b4f267f 100644 --- a/testautomation/writer/optional/includes/regexp/search.inc +++ b/testautomation/writer/optional/includes/regexp/search.inc @@ -64,10 +64,8 @@ end sub '--------------------------------------------------------- testcase tCheckDialog - warnlog( "#i111908# - Control cannot be accessed" ) - goto endsub - Dim Checkboxtitel + Dim Checkboxtitel Call hNewDocument EditSearchAndReplace Sleep 2 -- cgit From 9e4570496ff098d84d11707e639ced07ee048f38 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Thu, 21 Oct 2010 08:41:56 +0200 Subject: automationdev300m87#i115106#fixed loading local file --- .../optional/includes/drawing/w_drawing_tools2.inc | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc b/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc index 43b16a2878a0..25a762297df7 100644 --- a/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc +++ b/testautomation/writer/optional/includes/drawing/w_drawing_tools2.inc @@ -53,7 +53,7 @@ end sub '------------------------------------------------------------------------- -testcase tGroup_1 +testcase tGroup_1 PrintLog "- Generate a objects group via menu Format/Group/Group" @@ -80,7 +80,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_2 +testcase tGroup_2 PrintLog "- Generate a objects group via contextmenu Format/Group/Group" @@ -109,7 +109,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_3 +testcase tGroup_3 PrintLog "- Menu entries may not be enabled if less then two objects are selected." @@ -138,7 +138,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_4 +testcase tGroup_4 Dim sGroupName as String @@ -193,7 +193,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_5 +testcase tGroup_5 Dim sGroupName as String @@ -248,7 +248,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_6 +testcase tGroup_6 Dim sPositionX1 as String Dim sPositionY1 as String @@ -317,7 +317,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_7 +testcase tGroup_7 Dim sPositionX1 as String Dim sPositionY1 as String @@ -388,7 +388,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_8 +testcase tGroup_8 Dim sPositionX as String Dim sPositionY as String @@ -445,7 +445,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_9 +testcase tGroup_9 Dim sPositionX as String Dim sPositionY as String @@ -507,7 +507,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_10 +testcase tGroup_10 PrintLog "- create new objects inside the group ," PrintLog " Undo new created objects before leaving the group" @@ -554,7 +554,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_11 +testcase tGroup_11 PrintLog "- create new objects inside the group ," PrintLog " Undo new created objects after leaving the group" @@ -603,7 +603,7 @@ endcase '------------------------------------------------------------------------- -testcase tGroup_12 +testcase tGroup_12 Dim sDocument as String @@ -636,7 +636,7 @@ testcase tGroup_12 Call hCloseDocument PrintLog "- Open previous saved document " - hFileOpenLocally( sDocument) + Call hFileOpen( sDocument) Kontext "DocumentWriter" Call gMouseClick(34,34) 'set focus in the group @@ -655,7 +655,7 @@ endcase '------------------------------------------------------------------------- -testcase tEncapsulatedGroup_1 +testcase tEncapsulatedGroup_1 PrintLog "- Group objects inside the group ,Encapsulated Group" -- cgit From 4cabcbcb5e8c47b55c428ee292f55532161ae238 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Thu, 21 Oct 2010 10:11:10 +0200 Subject: automationdev300m87: #i115106 - Deleted deprecated header information --- .../optional/includes/validity/c_validity.inc | 574 ++++++++++----------- 1 file changed, 284 insertions(+), 290 deletions(-) diff --git a/testautomation/spreadsheet/optional/includes/validity/c_validity.inc b/testautomation/spreadsheet/optional/includes/validity/c_validity.inc index 8eaf0401afeb..f1f33573f66e 100644 --- a/testautomation/spreadsheet/optional/includes/validity/c_validity.inc +++ b/testautomation/spreadsheet/optional/includes/validity/c_validity.inc @@ -29,194 +29,189 @@ '** '** short description : Complete test for data validity '** -'************************************************************************ -' ** -' #1 tValidity_Check_Message -' #1 tValidity_Check_Excel -' ** '\*********************************************************************** testcase tValidity_Check_Message - printlog "This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells" + printlog "This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells" dim sInputFile as string dim sOutputFile as string dim sMType as string dim sInfoStr as string dim iCount as integer - + sInputFile = convertpath(gTesttoolPath & "spreadsheet/optional/input/validity.ods") - sOutputFile = convertpath (gOfficepath & "user/work/validity.ods.ods)" + sOutputFile = convertpath (gOfficepath & "user/work/validity.ods.ods)" - printlog " Open document gTesttoolPathspreadsheet/optional/input/validity.ods" - call hFileOpen (sInputFile) - printlog " Save the document under gOfficePathuser/work/validity.ods" - if NOT hFileSaveAsWithFilter ( sOutputFile, "calc8" ) then - warnlog "Saving test document localy failed -> Aborting" - call hCloseDocument - goto endsub - endif + printlog " Open document gTesttoolPathspreadsheet/optional/input/validity.ods" + call hFileOpen (sInputFile) + printlog " Save the document under gOfficePathuser/work/validity.ods" + if NOT hFileSaveAsWithFilter ( sOutputFile, "calc8" ) then + warnlog "Saving test document localy failed -> Aborting" + call hCloseDocument + goto endsub + endif - printlog " Do the following operations (see values in table) with every of the 4 sheets." - printlog " Goto first cell and insert the correct value" - printlog " Press RETURN" - printlog " No warning or information message should appear" - printlog " Enter the incorrect value" - printlog " Press RETURN" - printlog " A warning or information message should appear" - for iCount = 1 to 4 - select case iCount - case 1 : sMType = "Stop" : sInfoStr = "First" - case 2 : sMType = "Warning" : sInfoStr = "Second" - case 3 : sMType = "Information" : sInfoStr = "Third" - case 4 : sMType = "Macro" : sInfoStr = "Macro" - end select + printlog " Do the following operations (see values in table) with every of the 4 sheets." + printlog " Goto first cell and insert the correct value" + printlog " Press RETURN" + printlog " No warning or information message should appear" + printlog " Enter the incorrect value" + printlog " Press RETURN" + printlog " A warning or information message should appear" + for iCount = 1 to 4 + select case iCount + case 1 : sMType = "Stop" : sInfoStr = "First" + case 2 : sMType = "Warning" : sInfoStr = "Second" + case 3 : sMType = "Information" : sInfoStr = "Third" + case 4 : sMType = "Macro" : sInfoStr = "Macro" + end select - call fCalcSelectSheet(sMType) + call fCalcSelectSheet(sMType) printlog " *** " & sInfoStr & " it is checked, if the " & sMType & " messages appears, if wrong contents are inserted into the appropriate cells" - '///+
        - '///+
      • Goto first cell and insert the correct value
      • - '///+
      • Press RETURN
      • - '///+
        • No warning or information message should appear
      • - '///+
      • Enter the incorrect value - '///+
      • Press RETURN
      • - '///+
        • A warning or information message should appear
      • - '///+
      • - '///+ - '///+ - call check_message(sMType, "B4", "3", "8") - '///+ - call check_message(sMType, "B5", "9", "10") - '///+ - call check_message(sMType, "B6", "28", "25") - '///+ - call check_message(sMType, "B7", "10", "12") - '///+ - call check_message(sMType, "B8", "11", "9") - '///+ - call check_message(sMType, "B9", "5", "3") - '///+ - call check_message(sMType, "B10", "1", "6") - '///+ - call check_message(sMType, "B11", "1", "6") - '///+ - call check_message(sMType, "B17", "3,14", "3,15") - '///+ - call check_message(sMType, "B18", "10,14", "10,16") - '///+ - call check_message(sMType, "B19", "25,10", "25,09") - '///+ - call check_message(sMType, "B20", "10,5", "10,7") - '///+ - call check_message(sMType, "B21", "11,9", "10") - '///+ - call check_message(sMType, "B22", "3,145", "3,14") - '///+ - call check_message(sMType, "B23", "1,45", "1,38") - '///+ - call check_message(sMType, "B24", "2,03", "2,15") - '///+ - call check_message(sMType, "E4", "13.12.99", "13.11.99") - '///+ - call check_message(sMType, "E5", "12.12.99", "13.12.99") - '///+ - call check_message(sMType, "E6", "14.12.99", "13.12.99") - '///+ - call check_message(sMType, "E7", "13.12.99", "14.12.99") - '///+ - call check_message(sMType, "E8", "13.12.99", "12.12.99") - '///+ - call check_message(sMType, "E9", "13.11.99", "13.12.99") - '///+ - call check_message(sMType, "E10", "23.12.99", "12.12.99") - '///+ - call check_message(sMType, "E11", "24.12.99", "23.12.99") - '///+ - call check_message(sMType, "E17", "13:15", "13:16") - '///+ - call check_message(sMType, "E18", "10:15", "14:16") - '///+ - call check_message(sMType, "E19", "23:10", "12:09") - '///+ - call check_message(sMType, "E20", "13:15", "13:16") - '///+ - call check_message(sMType, "E21", "13:15", "13:14") - '///+ - call check_message(sMType, "E22", "13:16", "13:15") - '///+ - call check_message(sMType, "E23", "13:15", "23:13") - '///+ - call check_message(sMType, "E24", "12:59", "13:00") - '///+ - call check_message(sMType, "H4", "abc", "abcd") - '///+ - call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") - '///+ - call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") - '///+ - call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") - '///+ - call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") - '///+ - call check_message(sMType, "H9", "sdxc", "tgb") - '///+ - call check_message(sMType, "H10", "rfvbj", "dfcvgb") - '///+ - call check_message(sMType, "H11", "g", "we") - '///+ - '///+ - call check_message(sMType, "B30", "February", "January") - '///+ - call check_message(sMType, "B31", "May", "February") - '///+ - call check_message(sMType, "B32", "June", "January") - '///+ - call check_message(sMType, "B33", "August", "November") - '///+ - call check_message(sMType, "B34", "September", "December") - '///+ - call check_message(sMType, "B35", "October", "March") - '///+ - call check_message(sMType, "B36", "July", "August") - '///+ - call check_message(sMType, "B37", "April", "October") - '///+ - call check_message(sMType, "B38", "Name03", "Name07") - '///+ - call check_message(sMType, "E30", "alpha", "omega") - '///+ - call check_message(sMType, "E31", "beta", "zeta") - '///+ - call check_message(sMType, "E32", "gamma", "psi") - '///+ - call check_message(sMType, "E33", "delta", "pi/2") - '///+
        Cell addresscorrect valueincorrect value
        B438
        B5910
        B62825
        B71012
        B8119
        B953
        B1016
        B1116
        B173,143,15
        B1810,1410,16
        B1925,1025,09
        B2010,510,7
        B2111,910
        B223,1453,14
        B231,451,38
        B242,032,15
        E413.12.9913.11.99
        E512.12.9913.12.99
        E614.12.9913.12.99
        E713.12.9914.12.99
        E813.12.9912.12.99
        E913.11.9913.12.99
        E1023.12.9912.12.99
        E1124.12.9923.12.99
        E1713:1513:16
        E1810:1514:16
        E1923:1012:09
        E2013:1513:16
        E2113:1513:14
        E2213:1613:15
        E2313:1523:13
        E2412:5913:00
        H4abcabcd
        H5abcdefgrdaderfgtzjm
        H6rftgzhujikolmnbvcxyaswqepkftgzhnujikm,lopredswqayx
        H7asweqrfvbgedcvfrtgbnh
        H8edcswxyaqtgbujnmkipztr
        H9sdxctgb
        H10rfvbjdfcvgb
        H11gwe
        New featurs OpenOffice 2.0
        B30FebruaryJanuary
        B31MayFebruary
        B32JuneJanuary
        B33AugustNovember
        B34SeptemberDecember
        B35OctoberMarch
        B36JulyAugust
        B37AprilOctober
        B38Name03Name07
        E30alphaomega
        E31betazeta
        E32gammapsi
        E33deltapi/2
      - next iCount + '///+
        + '///+
      • Goto first cell and insert the correct value
      • + '///+
      • Press RETURN
      • + '///+
        • No warning or information message should appear
      • + '///+
      • Enter the incorrect value + '///+
      • Press RETURN
      • + '///+
        • A warning or information message should appear
      • + '///+
      • + '///+ + '///+ + call check_message(sMType, "B4", "3", "8") + '///+ + call check_message(sMType, "B5", "9", "10") + '///+ + call check_message(sMType, "B6", "28", "25") + '///+ + call check_message(sMType, "B7", "10", "12") + '///+ + call check_message(sMType, "B8", "11", "9") + '///+ + call check_message(sMType, "B9", "5", "3") + '///+ + call check_message(sMType, "B10", "1", "6") + '///+ + call check_message(sMType, "B11", "1", "6") + '///+ + call check_message(sMType, "B17", "3,14", "3,15") + '///+ + call check_message(sMType, "B18", "10,14", "10,16") + '///+ + call check_message(sMType, "B19", "25,10", "25,09") + '///+ + call check_message(sMType, "B20", "10,5", "10,7") + '///+ + call check_message(sMType, "B21", "11,9", "10") + '///+ + call check_message(sMType, "B22", "3,145", "3,14") + '///+ + call check_message(sMType, "B23", "1,45", "1,38") + '///+ + call check_message(sMType, "B24", "2,03", "2,15") + '///+ + call check_message(sMType, "E4", "13.12.99", "13.11.99") + '///+ + call check_message(sMType, "E5", "12.12.99", "13.12.99") + '///+ + call check_message(sMType, "E6", "14.12.99", "13.12.99") + '///+ + call check_message(sMType, "E7", "13.12.99", "14.12.99") + '///+ + call check_message(sMType, "E8", "13.12.99", "12.12.99") + '///+ + call check_message(sMType, "E9", "13.11.99", "13.12.99") + '///+ + call check_message(sMType, "E10", "23.12.99", "12.12.99") + '///+ + call check_message(sMType, "E11", "24.12.99", "23.12.99") + '///+ + call check_message(sMType, "E17", "13:15", "13:16") + '///+ + call check_message(sMType, "E18", "10:15", "14:16") + '///+ + call check_message(sMType, "E19", "23:10", "12:09") + '///+ + call check_message(sMType, "E20", "13:15", "13:16") + '///+ + call check_message(sMType, "E21", "13:15", "13:14") + '///+ + call check_message(sMType, "E22", "13:16", "13:15") + '///+ + call check_message(sMType, "E23", "13:15", "23:13") + '///+ + call check_message(sMType, "E24", "12:59", "13:00") + '///+ + call check_message(sMType, "H4", "abc", "abcd") + '///+ + call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") + '///+ + call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") + '///+ + call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") + '///+ + call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") + '///+ + call check_message(sMType, "H9", "sdxc", "tgb") + '///+ + call check_message(sMType, "H10", "rfvbj", "dfcvgb") + '///+ + call check_message(sMType, "H11", "g", "we") + '///+ + '///+ + call check_message(sMType, "B30", "February", "January") + '///+ + call check_message(sMType, "B31", "May", "February") + '///+ + call check_message(sMType, "B32", "June", "January") + '///+ + call check_message(sMType, "B33", "August", "November") + '///+ + call check_message(sMType, "B34", "September", "December") + '///+ + call check_message(sMType, "B35", "October", "March") + '///+ + call check_message(sMType, "B36", "July", "August") + '///+ + call check_message(sMType, "B37", "April", "October") + '///+ + call check_message(sMType, "B38", "Name03", "Name07") + '///+ + call check_message(sMType, "E30", "alpha", "omega") + '///+ + call check_message(sMType, "E31", "beta", "zeta") + '///+ + call check_message(sMType, "E32", "gamma", "psi") + '///+ + call check_message(sMType, "E33", "delta", "pi/2") + '///+
        Cell addresscorrect valueincorrect value
        B438
        B5910
        B62825
        B71012
        B8119
        B953
        B1016
        B1116
        B173,143,15
        B1810,1410,16
        B1925,1025,09
        B2010,510,7
        B2111,910
        B223,1453,14
        B231,451,38
        B242,032,15
        E413.12.9913.11.99
        E512.12.9913.12.99
        E614.12.9913.12.99
        E713.12.9914.12.99
        E813.12.9912.12.99
        E913.11.9913.12.99
        E1023.12.9912.12.99
        E1124.12.9923.12.99
        E1713:1513:16
        E1810:1514:16
        E1923:1012:09
        E2013:1513:16
        E2113:1513:14
        E2213:1613:15
        E2313:1523:13
        E2412:5913:00
        H4abcabcd
        H5abcdefgrdaderfgtzjm
        H6rftgzhujikolmnbvcxyaswqepkftgzhnujikm,lopredswqayx
        H7asweqrfvbgedcvfrtgbnh
        H8edcswxyaqtgbujnmkipztr
        H9sdxctgb
        H10rfvbjdfcvgb
        H11gwe
        New featurs OpenOffice 2.0
        B30FebruaryJanuary
        B31MayFebruary
        B32JuneJanuary
        B33AugustNovember
        B34SeptemberDecember
        B35OctoberMarch
        B36JulyAugust
        B37AprilOctober
        B38Name03Name07
        E30alphaomega
        E31betazeta
        E32gammapsi
        E33deltapi/2
      + next iCount '/// Close the document - printlog "Close the document" - call hCloseDocument + printlog "Close the document" + call hCloseDocument endcase ' '------------------------------------------------------------------------------- ' testcase tValidity_Check_Excel -'/// This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells - - dim sInputFile as String + '/// This test checks, if an error messgae appears, when a wrong content is inserted into the appropriate cells + + dim sInputFile as String dim sOutputFile as String dim sMType as String dim iCount as integer dim sInfoStr as String dim sdecimalseperator as string - sDecimalseperator = GetDecimalSeperator + sDecimalseperator = GetDecimalSeperator - sInputFile = convertpath(gTesttoolPath & "spreadsheet/optional/input/validity.ods") + sInputFile = convertpath(gTesttoolPath & "spreadsheet/optional/input/validity.ods") sOutputFile = convertpath(gOfficePath & "user/work/validity.xls") '/// Open gTesttoolPath/calc/special/input/validity.ods - printlog "Open gTesttoolPath/calc/special/input/validity.ods" + printlog "Open gTesttoolPath/calc/special/input/validity.ods" call hFileOpen (sInputFile) Kontext "SecurityWarning" '/// If security warning occours click on 'Enable Macros'. @@ -238,141 +233,140 @@ testcase tValidity_Check_Excel call hFileOpen ( sOutputFile ) sleep (2) printlog " Do the following operations (see values in table) with every of the 3 sheets." - printlog " Goto first cell and insert the correct value" - printlog " Press RETURN" - printlog " No warning or information message should appear" - printlog " Enter the incorrect value" - printlog " Press RETURN" - printlog " A warning or information message should appear" + printlog " Goto first cell and insert the correct value" + printlog " Press RETURN" + printlog " No warning or information message should appear" + printlog " Enter the incorrect value" + printlog " Press RETURN" + printlog " A warning or information message should appear" for iCount = 1 to 3 select case iCount - case 1 : sMType = "Stop" : sInfoStr = "First" - case 2 : sMType = "Warning" : sInfoStr = "Second" - case 3 : sMType = "Information" : sInfoStr = "Third" + case 1 : sMType = "Stop" : sInfoStr = "First" + case 2 : sMType = "Warning" : sInfoStr = "Second" + case 3 : sMType = "Information" : sInfoStr = "Third" end select - '/// Do the following operations (see values in table) with every of the 3 sheets. - call fCalcSelectSheet(sMType) - printlog " *** " & sInfoStr & " it is checked, if the " & sMType & " messages appears, if wrong contents are " & _ - "inserted into the appropriate cells" -'///+
        -'///+
      • Goto first cell and insert the correct value
      • -'///+
      • Press RETURN
      • -'///+
        • No warning or information message should appear
      • -'///+
      • Enter the incorrect value -'///+
      • Press RETURN
      • -'///+
        • A warning or information message should appear
      • -'///+
      • -'///+ -'///+ - call check_message(sMType, "B4", "3", "8") -'///+ - call check_message(sMType, "B5", "9", "10") -'///+ - call check_message(sMType, "B6", "28", "25") -'///+ - call check_message(sMType, "B7", "10", "12") -'///+ - call check_message(sMType, "B8", "11", "9") -'///+ - call check_message(sMType, "B9", "5", "3") -'///+ - call check_message(sMType, "B10", "1", "6") -'///+ - call check_message(sMType, "B11", "1", "6") -'///+ - call check_message(sMType, "B17", "3" & sdecimalseperator & "14", "3" & sdecimalseperator & "15") -'///+ - call check_message(sMType, "B18", "10" & sdecimalseperator & "14", "10" & sdecimalseperator & "16") -'///+ - call check_message(sMType, "B19", "25" & sdecimalseperator & "10", "25" & sdecimalseperator & "09") -'///+ - call check_message(sMType, "B20", "10" & sdecimalseperator & "5", "10" & sdecimalseperator & "7") -'///+ - call check_message(sMType, "B21", "11" & sdecimalseperator & "9", "10") -'///+ - call check_message(sMType, "B22", "3" & sdecimalseperator & "145", "3" & sdecimalseperator & "14") -'///+ - call check_message(sMType, "B23", "1" & sdecimalseperator & "45", "1" & sdecimalseperator & "38") -'///+ - call check_message(sMType, "B24", "2" & sdecimalseperator & "03", "2" & sdecimalseperator & "15") -'///+ - call check_message(sMType, "E4", "13.12.99", "13.11.99") -'///+ - call check_message(sMType, "E5", "12.12.99", "13.12.99") -'///+ - call check_message(sMType, "E6", "14.12.99", "13.12.99") -'///+ - call check_message(sMType, "E7", "13.12.99", "14.12.99") -'///+ - call check_message(sMType, "E8", "13.12.99", "12.12.99") -'///+ - call check_message(sMType, "E9", "13.11.99", "13.12.99") -'///+ - call check_message(sMType, "E10", "23.12.99", "12.12.99") -'///+ - call check_message(sMType, "E11", "24.12.99", "23.12.99") -'///+ - call check_message(sMType, "E17", "13:15", "13:16") -'///+ - call check_message(sMType, "E18", "10:15", "14:16") -'///+ - call check_message(sMType, "E19", "23:10", "12:09") -'///+ - call check_message(sMType, "E20", "13:15", "13:16") -'///+ - call check_message(sMType, "E21", "13:15", "13:14") -'///+ - call check_message(sMType, "E22", "13:16", "13:15") -'///+ - call check_message(sMType, "E23", "13:15", "23:13") -'///+ - call check_message(sMType, "E24", "12:59", "13:00") -'///+ - call check_message(sMType, "H4", "abc", "abcd") -'///+ - call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") -'///+ - call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") -'///+ - call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") -'///+ - call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") -'///+ - call check_message(sMType, "H9", "sdxc", "tgb") -'///+ - call check_message(sMType, "H10", "rfvbj", "dfcvgb") -'///+ - call check_message(sMType, "H11", "g", "we") -'///+ we -'///+ - call check_message(sMType, "B30", "February", "January") -'///+ - call check_message(sMType, "B31", "May", "February") -'///+ - call check_message(sMType, "B32", "June", "January") -'///+ - call check_message(sMType, "B33", "August", "November") -'///+ - call check_message(sMType, "B34", "September", "December") -'///+ - call check_message(sMType, "B35", "October", "March") -'///+ - call check_message(sMType, "B36", "July", "August") -'///+ - call check_message(sMType, "B37", "April", "October") -'///+ - call check_message(sMType, "B38", "Name03", "Name07") -'///+ - call check_message(sMType, "E30", "alpha", "omega") -'///+ - call check_message(sMType, "E31", "beta", "zeta") -'///+ - call check_message(sMType, "E32", "gamma", "psi") -'///+ - call check_message(sMType, "E33", "delta", "pi/2") -'///+
        Cell addresscorrect valueincorrect value
        B438
        B5910
        B62825
        B71012
        B8119
        B953
        B1016
        B1116
        B173,143,15
        B1810,1410,16
        B1925,1025,09
        B2010,510,7
        B2111,910
        B223,1453,14
        B231,451,38
        B242,032,15
        E413.12.9913.11.99
        E512.12.9913.12.99
        E614.12.9913.12.99
        E713.12.9914.12.99
        E813.12.9912.12.99
        E913.11.9913.12.99
        E1023.12.9912.12.99
        E1124.12.9923.12.99
        E1713:1513:16
        E1810:1514:16
        E1923:1012:09
        E2013:1513:16
        E2113:1513:15
        E2213:1613:15
        E2313:1523:13
        E2412:5913:00
        H4abcabcd
        H5abcdefgrdaderfgtzjm
        H6rftgzhujikolmnbvcxyaswqepkftgzhnujikm,lopredswqayx
        H7asweqrfvbgedcvfrtgbnh
        H8edcswxyaqtgbujnmkipztr
        H9sdxctgb
        H10rfvbjdfcvgb
        H11gwe
        New featurs OpenOffice 2.0
        B30FebruaryJanuary
        B31MayFebruary
        B32JuneJanuary
        B33AugustNovember
        B34SeptemberDecember
        B35OctoberMarch
        B36JulyAugust
        B37AprilOctober
        B38Name03Name07
        E30alphaomega
        E31betazeta
        E32gammapsi
        E33deltapi/2
      - next iCount -'/// File / Close - call hCloseDocument + '/// Do the following operations (see values in table) with every of the 3 sheets. + call fCalcSelectSheet(sMType) + printlog " *** " & sInfoStr & " it is checked, if the " & sMType & " messages appears, if wrong contents are " & "inserted into the appropriate cells" + '///+
        + '///+
      • Goto first cell and insert the correct value
      • + '///+
      • Press RETURN
      • + '///+
        • No warning or information message should appear
      • + '///+
      • Enter the incorrect value + '///+
      • Press RETURN
      • + '///+
        • A warning or information message should appear
      • + '///+
      • + '///+ + '///+ + call check_message(sMType, "B4", "3", "8") + '///+ + call check_message(sMType, "B5", "9", "10") + '///+ + call check_message(sMType, "B6", "28", "25") + '///+ + call check_message(sMType, "B7", "10", "12") + '///+ + call check_message(sMType, "B8", "11", "9") + '///+ + call check_message(sMType, "B9", "5", "3") + '///+ + call check_message(sMType, "B10", "1", "6") + '///+ + call check_message(sMType, "B11", "1", "6") + '///+ + call check_message(sMType, "B17", "3" & sdecimalseperator & "14", "3" & sdecimalseperator & "15") + '///+ + call check_message(sMType, "B18", "10" & sdecimalseperator & "14", "10" & sdecimalseperator & "16") + '///+ + call check_message(sMType, "B19", "25" & sdecimalseperator & "10", "25" & sdecimalseperator & "09") + '///+ + call check_message(sMType, "B20", "10" & sdecimalseperator & "5", "10" & sdecimalseperator & "7") + '///+ + call check_message(sMType, "B21", "11" & sdecimalseperator & "9", "10") + '///+ + call check_message(sMType, "B22", "3" & sdecimalseperator & "145", "3" & sdecimalseperator & "14") + '///+ + call check_message(sMType, "B23", "1" & sdecimalseperator & "45", "1" & sdecimalseperator & "38") + '///+ + call check_message(sMType, "B24", "2" & sdecimalseperator & "03", "2" & sdecimalseperator & "15") + '///+ + call check_message(sMType, "E4", "13.12.99", "13.11.99") + '///+ + call check_message(sMType, "E5", "12.12.99", "13.12.99") + '///+ + call check_message(sMType, "E6", "14.12.99", "13.12.99") + '///+ + call check_message(sMType, "E7", "13.12.99", "14.12.99") + '///+ + call check_message(sMType, "E8", "13.12.99", "12.12.99") + '///+ + call check_message(sMType, "E9", "13.11.99", "13.12.99") + '///+ + call check_message(sMType, "E10", "23.12.99", "12.12.99") + '///+ + call check_message(sMType, "E11", "24.12.99", "23.12.99") + '///+ + call check_message(sMType, "E17", "13:15", "13:16") + '///+ + call check_message(sMType, "E18", "10:15", "14:16") + '///+ + call check_message(sMType, "E19", "23:10", "12:09") + '///+ + call check_message(sMType, "E20", "13:15", "13:16") + '///+ + call check_message(sMType, "E21", "13:15", "13:14") + '///+ + call check_message(sMType, "E22", "13:16", "13:15") + '///+ + call check_message(sMType, "E23", "13:15", "23:13") + '///+ + call check_message(sMType, "E24", "12:59", "13:00") + '///+ + call check_message(sMType, "H4", "abc", "abcd") + '///+ + call check_message(sMType, "H5", "abcdefgrd", "aderfgtzjm") + '///+ + call check_message(sMType, "H6", "rftgzhujikolmnbvcxyaswqepk", "ftgzhnujikm,lopredswqayx") + '///+ + call check_message(sMType, "H7", "asweqrfvbg", "edcvfrtgbnh") + '///+ + call check_message(sMType, "H8", "edcswxyaqtgb", "ujnmkipztr") + '///+ + call check_message(sMType, "H9", "sdxc", "tgb") + '///+ + call check_message(sMType, "H10", "rfvbj", "dfcvgb") + '///+ + call check_message(sMType, "H11", "g", "we") + '///+ we + '///+ + call check_message(sMType, "B30", "February", "January") + '///+ + call check_message(sMType, "B31", "May", "February") + '///+ + call check_message(sMType, "B32", "June", "January") + '///+ + call check_message(sMType, "B33", "August", "November") + '///+ + call check_message(sMType, "B34", "September", "December") + '///+ + call check_message(sMType, "B35", "October", "March") + '///+ + call check_message(sMType, "B36", "July", "August") + '///+ + call check_message(sMType, "B37", "April", "October") + '///+ + call check_message(sMType, "B38", "Name03", "Name07") + '///+ + call check_message(sMType, "E30", "alpha", "omega") + '///+ + call check_message(sMType, "E31", "beta", "zeta") + '///+ + call check_message(sMType, "E32", "gamma", "psi") + '///+ + call check_message(sMType, "E33", "delta", "pi/2") + '///+
        Cell addresscorrect valueincorrect value
        B438
        B5910
        B62825
        B71012
        B8119
        B953
        B1016
        B1116
        B173,143,15
        B1810,1410,16
        B1925,1025,09
        B2010,510,7
        B2111,910
        B223,1453,14
        B231,451,38
        B242,032,15
        E413.12.9913.11.99
        E512.12.9913.12.99
        E614.12.9913.12.99
        E713.12.9914.12.99
        E813.12.9912.12.99
        E913.11.9913.12.99
        E1023.12.9912.12.99
        E1124.12.9923.12.99
        E1713:1513:16
        E1810:1514:16
        E1923:1012:09
        E2013:1513:16
        E2113:1513:15
        E2213:1613:15
        E2313:1523:13
        E2412:5913:00
        H4abcabcd
        H5abcdefgrdaderfgtzjm
        H6rftgzhujikolmnbvcxyaswqepkftgzhnujikm,lopredswqayx
        H7asweqrfvbgedcvfrtgbnh
        H8edcswxyaqtgbujnmkipztr
        H9sdxctgb
        H10rfvbjdfcvgb
        H11gwe
        New featurs OpenOffice 2.0
        B30FebruaryJanuary
        B31MayFebruary
        B32JuneJanuary
        B33AugustNovember
        B34SeptemberDecember
        B35OctoberMarch
        B36JulyAugust
        B37AprilOctober
        B38Name03Name07
        E30alphaomega
        E31betazeta
        E32gammapsi
        E33deltapi/2
      + next iCount + '/// File / Close + call hCloseDocument endcase -- cgit From ef99c73b8857a7283755ff1511c78f533f4fd65e Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Thu, 21 Oct 2010 12:38:21 +0200 Subject: automationdev300m87#i115106#fixed loading local file --- testautomation/writer/required/includes/w_001b_.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testautomation/writer/required/includes/w_001b_.inc b/testautomation/writer/required/includes/w_001b_.inc index 992396377ba4..a48023ea73d0 100644 --- a/testautomation/writer/required/includes/w_001b_.inc +++ b/testautomation/writer/required/includes/w_001b_.inc @@ -399,7 +399,7 @@ testcase tMasterDocFileSaveWithPassword FileClose WaitSlot(2000) PrintLog "Open previous saved document" - hFileOpenLocally( Datei$) + Call hFileOpen( Datei$) Kontext "PasswordFileOpen" PrintLog "Enter a wrong password." @@ -427,7 +427,7 @@ testcase tMasterDocFileSaveWithPassword Sleep 1 PrintLog "File / Open again your previous saved document" - hFileOpenLocally( Datei$) + Call hFileOpen( Datei$) PrintLog "Enter your password in password dialog" Kontext "PasswordFileOpen" if PasswordFileOpen.Exists then @@ -517,7 +517,7 @@ testcase tMasterDocFileReload endif PrintLog "Open previous saved document" - hFileOpenLocally( sDocumentPath ) + Call hFileOpen( sDocumentPath ) PrintLog "Insert a table in document" Call hTabelleEinfuegen -- cgit From c49e6e217ac08a7a5b7620ed56b2ece63496fc35 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Fri, 22 Oct 2010 11:17:15 +0200 Subject: automationdev300m87: #i115106 - excluded tests due to #i115138 --- .../optional/includes/global/export_graphic_2.inc | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/testautomation/graphics/optional/includes/global/export_graphic_2.inc b/testautomation/graphics/optional/includes/global/export_graphic_2.inc index 3beefb13dd64..1e9d6e04f631 100644 --- a/testautomation/graphics/optional/includes/global/export_graphic_2.inc +++ b/testautomation/graphics/optional/includes/global/export_graphic_2.inc @@ -32,6 +32,9 @@ '\****************************************************************************** testcase tPNG + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim iWaitIndex as integer @@ -73,6 +76,10 @@ endcase 'tPNG '------------------------------------------------------------------------------- testcase tSVM + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + + dim x as integer dim i as integer dim sFilter as string @@ -238,6 +245,10 @@ endcase 'tSVM '------------------------------------------------------------------------------- testcase tPDF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + + dim sPath as string dim sTemp as string dim iFileSize(12) as long @@ -589,6 +600,9 @@ endcase 'tPDF_Creator '------------------------------------------------------------------------------- testcase tSVG + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim sFilter as string @@ -654,6 +668,9 @@ endcase 'tSVG '------------------------------------------------------------------------------- testcase tBMP + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim bTemp as boolean @@ -821,6 +838,9 @@ endcase 'tBMP '------------------------------------------------------------------------------- testcase tEMF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim sFilter as string @@ -952,6 +972,9 @@ endcase 'tEMF '------------------------------------------------------------------------------- testcase tMET + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim iWaitIndex as integer @@ -1145,6 +1168,9 @@ endcase 'tMET '------------------------------------------------------------------------------- testcase tSWF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim sFilter as string dim sExt as string dim x as integer @@ -1170,6 +1196,9 @@ endcase 'tSWF '------------------------------------------------------------------------------ testcase tWMF + warnlog( "#i115138 - Loading test document freezes the office" ) + goto endsub + dim x as integer dim i as integer dim iWaitIndex as integer -- cgit From da7df05c51249ed49bf25d539aab97aa7a1f2aef Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 25 Oct 2010 09:04:05 +0200 Subject: automationdev300m87: #i115106 - Incorrect count in colors, we lost four, chenged single line if-statements, reformatted according to coding guidelines. --- .../optional/includes/options_loadsave_general.inc | 103 +++++++-- .../optional/includes/options_ooo_colors.inc | 15 +- .../optional/includes/options_ooo_general.inc | 252 +++++++++++++-------- 3 files changed, 249 insertions(+), 121 deletions(-) mode change 100755 => 100644 testautomation/framework/optional/includes/options_loadsave_general.inc mode change 100755 => 100644 testautomation/framework/optional/includes/options_ooo_colors.inc mode change 100755 => 100644 testautomation/framework/optional/includes/options_ooo_general.inc diff --git a/testautomation/framework/optional/includes/options_loadsave_general.inc b/testautomation/framework/optional/includes/options_loadsave_general.inc old mode 100755 new mode 100644 index 84c41e906df6..d320fb6a6d72 --- a/testautomation/framework/optional/includes/options_loadsave_general.inc +++ b/testautomation/framework/optional/includes/options_loadsave_general.inc @@ -63,6 +63,7 @@ testcase tLoadSaveGeneral printlog( " - " & DokumentTyp.getSelText) next i endif + for i=1 to AppCount Dokumenttyp.Select(i) lsSave(2+i) = Dokumenttyp.GetSelText @@ -70,18 +71,55 @@ testcase tLoadSaveGeneral next i printlog " - invert/change settings" - if lbSave(13) then BenutzerspezifischeEinstellungen.UnCheck else BenutzerspezifischeEinstellungen.Check - if lbSave(1) then DokumenteigenschaftenBearbeiten.Uncheck else DokumenteigenschaftenBearbeiten.Check - if lbSave(2) then Sicherungskopie.Uncheck else Sicherungskopie.Check - if lbSave(3) then AutomatischSpeichern.Uncheck else AutomatischSpeichern.Check + if lbSave(13) then + BenutzerspezifischeEinstellungen.UnCheck + else + BenutzerspezifischeEinstellungen.Check + endif + + if lbSave(1) then + DokumenteigenschaftenBearbeiten.Uncheck + else + DokumenteigenschaftenBearbeiten.Check + endif + + if lbSave(2) then + Sicherungskopie.Uncheck + else + Sicherungskopie.Check + endif + + if lbSave(3) then + AutomatischSpeichern.Uncheck + else + AutomatischSpeichern.Check + endif + if AutomatischSpeichern.IsChecked then lsSave(1) = Minuten.GetText Minuten.SetText "23" endif - if lbSave(10) then NoPrettyPrinting.Uncheck else NoPrettyPrinting.Check - if lbSave(11) then URLimDateisystem.Uncheck else URLimDateisystem.Check - if lbSave(12) then URLimInternet.Uncheck else URLimInternet.Check + + if lbSave(10) then + NoPrettyPrinting.Uncheck + else + NoPrettyPrinting.Check + endif + + if lbSave(11) then + URLimDateisystem.Uncheck + else + URLimDateisystem.Check + endif + + if lbSave(12) then + URLimInternet.Uncheck + else + URLimInternet.Check + endif + printlog( "Setting filters for documenttypes: Select third item from every list" ) + for i=1 to AppCount Dokumenttyp.Select(i) Filter.Select(3) @@ -90,8 +128,7 @@ testcase tLoadSaveGeneral printlog " - close options-dlg with OK" kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - sleep(3) + hCloseDialog( ExtrasOptionenDlg, "ok" ) printlog " - exit/restart StarOffice" ExitRestartTheOffice @@ -103,15 +140,19 @@ testcase tLoadSaveGeneral if BenutzerspezifischeEinstellungen.IsChecked = lbSave ( 13 ) then Warnlog "'Load user setting with document' => changes not saved" endif + if DokumenteigenschaftenBearbeiten.IsChecked = lbSave ( 1 ) then Warnlog "'Edit document properties before saving' => changes not saved" endif + if Sicherungskopie.IsChecked = lbSave ( 2 ) then Warnlog "'Create backup copy' => changes not saved" endif + if AutomatischSpeichern.IsChecked = lbSave ( 3 ) then printlog "AutoSave => changes not saved" endif + if AutomatischSpeichern.IsChecked then if Minuten.GetText <> "23" then Warnlog "Minutes for AutoSave => changes not saved" @@ -120,18 +161,20 @@ testcase tLoadSaveGeneral if NoPrettyPrinting.IsChecked = lbSave ( 10 ) then Warnlog "no pretty printing => changes not saved" endif + if URLimDateisystem.IsChecked = lbSave ( 11 ) then Warnlog "URL: File system => changes not saved" endif + if URLimInternet.IsChecked = lbSave ( 12 ) then Warnlog "URL: Internet => changes not saved" endif - + printlog( "Verifying filters for documenttypes: Select third item from every list" ) for i=1 to AppCount Dokumenttyp.Select(i) - printlog( "Doctype: " & Dokumenttyp.getSelText() & " has filter: " & Filter.getSelText() ) - + printlog( "Doctype: " & Dokumenttyp.getSelText() & " has filter: " & Filter.getSelText() ) + if Filter.GetSelIndex <> 3 then warnlog( "#i79150# some options in Tools/Options->Load/Save->General are not saved" ) endif @@ -146,6 +189,7 @@ testcase tLoadSaveGeneral NoPrettyPrinting.Uncheck URLimDateisystem.Uncheck URLimInternet.Uncheck + for i=1 to AppCount Dokumenttyp.Select(i) Filter.Select(4) @@ -154,8 +198,7 @@ testcase tLoadSaveGeneral printlog " - close options-dlg with OK" kontext "extrasoptionendlg" - ExtrasOptionenDlg.OK - Sleep (1) + hCloseDialog( ExtrasOptionenDlg, "ok" ) printlog " - react on messageboxes for loosing settings after changing default-filters" kontext "FilterWarning" @@ -166,7 +209,7 @@ testcase tLoadSaveGeneral i = AppCount + 1 endif next i - Sleep (3) + WaitSlot() printlog " - check second changes" ToolsOptions @@ -175,27 +218,35 @@ testcase tLoadSaveGeneral if BenutzerspezifischeEinstellungen.IsChecked <> FALSE then Warnlog "'Load user setting with document' => changes not saved" endif + if DokumenteigenschaftenBearbeiten.IsChecked <> TRUE then Warnlog "'Edit document properties before saving' => changes not saved" endif + if Sicherungskopie.IsChecked <> FALSE then Warnlog "'Create backup copy' => changes not saved" endif + if AutomatischSpeichern.IsChecked <> TRUE then Warnlog "AutoSave => changes not saved" endif + if Minuten.GetText <> "1" then Warnlog "Minutes for AutoSave => changes not saved" endif + if NoPrettyPrinting.IsChecked <> FALSE then Warnlog "no pretty printing => changes not saved" endif + if URLimDateisystem.IsChecked <> FALSE then Warnlog "URL: File system => changes not saved" endif + if URLimInternet.IsChecked <> FALSE then Warnlog "URL: Internet => changes not saved" endif + for i=1 to AppCount Dokumenttyp.Select(i) if Filter.GetSelIndex <> 4 then @@ -207,26 +258,33 @@ testcase tLoadSaveGeneral if lbSave ( 13 ) = FALSE then BenutzerspezifischeEinstellungen.UnCheck else BenutzerspezifischeEinstellungen.Check endif + if lbSave ( 1 ) = FALSE then DokumenteigenschaftenBearbeiten.UnCheck else DokumenteigenschaftenBearbeiten.Check endif if lbSave ( 2 ) = FALSE then Sicherungskopie.Uncheck else Sicherungskopie.Check endif + AutomatischSpeichern.Check Minuten.SetText lsSave ( 1 ) + if lbSave ( 3 ) = FALSE then AutomatischSpeichern.Uncheck else AutomatischSpeichern.Check endif + if lbSave ( 10 ) = FALSE then NoPrettyPrinting.Uncheck else NoPrettyPrinting.Check endif + if lbSave ( 11 ) = FALSE then URLimDateisystem.UnCheck else URLimDateisystem.Check endif + if lbSave ( 12 ) = FALSE then URLimInternet.UnCheck else URLimInternet.Check endif + for i=1 to AppCount Dokumenttyp.Select(i) if Dokumenttyp.GetSelText <> lsSave ( 2 + i ) then @@ -236,8 +294,8 @@ testcase tLoadSaveGeneral next i kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - Sleep (3) + hCloseDialog( ExtrasOptionenDlg, "ok" ) + printlog " - check settings" ToolsOptions @@ -246,29 +304,37 @@ testcase tLoadSaveGeneral if BenutzerspezifischeEinstellungen.IsChecked <> lbSave ( 13 ) then Warnlog "'Load user setting with document' => changes not saved" endif + if DokumenteigenschaftenBearbeiten.IsChecked <> lbSave ( 1 ) then Warnlog "'Edit document properties before saving' => changes not saved" endif + if Sicherungskopie.IsChecked <> lbSave ( 2 ) then Warnlog "'Create backup copy' => changes not saved" endif + if AutomatischSpeichern.IsChecked <> lbSave ( 3 ) then Warnlog "AutoSave => changes not saved" endif + if AutomatischSpeichern.IsChecked then if Minuten.GetText <> lsSave( 1 ) then Warnlog "Minutes for AutoSave => changes not saved" endif endif + if NoPrettyPrinting.IsChecked <> lbSave ( 10 ) then Warnlog "no pretty printing => changes not saved" endif + if URLimDateisystem.IsChecked <> lbSave ( 11 ) then Warnlog "URL: File system => changes not saved" endif + if URLimInternet.IsChecked <> lbSave ( 12 ) then Warnlog "URL: Internet => changes not saved" endif + for i=1 to AppCount Dokumenttyp.Select(i) if Dokumenttyp.GetSelText <> lsSave ( 2 + i ) then @@ -280,5 +346,6 @@ testcase tLoadSaveGeneral next i kontext "extrasoptionendlg" - ExtrasOptionenDlg.OK + hCloseDialog( ExtrasOptionenDlg, "ok" ) + endcase diff --git a/testautomation/framework/optional/includes/options_ooo_colors.inc b/testautomation/framework/optional/includes/options_ooo_colors.inc old mode 100755 new mode 100644 index 6d1db18179c2..f7c68095e198 --- a/testautomation/framework/optional/includes/options_ooo_colors.inc +++ b/testautomation/framework/optional/includes/options_ooo_colors.inc @@ -40,8 +40,8 @@ testcase tOOoColors dim currentColor(4) as String dim chColor(4) as String - const DEFAULT_COLOR_COUNT = 103 - const CHANGED_COLOR_COUNT = 104 + const DEFAULT_COLOR_COUNT = 99 + const CHANGED_COLOR_COUNT = 100 const USER_COLOR = "TT-Test-Color" myColor(1) = USER_COLOR @@ -106,8 +106,7 @@ testcase tOOoColors printlog( "Close the Tools/Options dialog with OK" ) Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - WaitSlot( 2000 ) + hCloseDialog( ExtrasOptionenDlg, "ok" ) else warnlog( "Tools/Options dialog not open" ) endif @@ -163,9 +162,7 @@ testcase tOOoColors printlog( "Close options dialog with OK" ) Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - WaitSlot( 2000 ) - + hCloseDialog( ExtrasOptionenDlg, "ok" ) else warnlog( "Tools/Options dialog not open" ) endif @@ -196,9 +193,7 @@ testcase tOOoColors printlog( "Close options dialog with OK" ) Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - WaitSlot( 2000 ) - + hCloseDialog( ExtrasOptionenDlg, "ok" ) else warnlog( "Tools/Options dialog not open" ) endif diff --git a/testautomation/framework/optional/includes/options_ooo_general.inc b/testautomation/framework/optional/includes/options_ooo_general.inc old mode 100755 new mode 100644 index c973feade8ae..311f5bf8543d --- a/testautomation/framework/optional/includes/options_ooo_general.inc +++ b/testautomation/framework/optional/includes/options_ooo_general.inc @@ -33,99 +33,165 @@ testcase tOOoGeneral - dim lsSave (4) as String - dim lbSave (3) as Boolean - - hNewDocument - - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - printlog " - save old data" - lsSave ( 1 ) = Zweistellig.GetText - lbSave ( 1 ) = Aktivieren.IsChecked - Aktivieren.Check - if gPlatgroup = "w95" then - lbSave (2) = StarOfficeDialogeBenutzen.IsChecked - end if - lbSave ( 3 ) = DruckenStatus.IsChecked - lsSave ( 3 ) = StyleSheet.GetSelText - - printlog " - invert/change data" - Zweistellig.SetText "1950" - Zuruecksetzen.Click - if gPlatgroup = "w95" then - if lbSave (2) = TRUE then StarOfficeDialogeBenutzen.Uncheck else StarOfficeDialogeBenutzen.Check - end if - If lbSave ( 3 ) = TRUE then DruckenStatus.Uncheck else DruckenStatus.Check - StyleSheet.Select 3 - - Kontext "ExtrasOptionenDlg" - - hCloseDialog( ExtrasOptionenDlg, "ok" ) - hCloseDocument - - printlog " - exit/restart StarOffice" - ExitRestartTheOffice - - printlog " - check data" - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - if Zweistellig.GetText <> "1950" then Warnlog "Year ( 2 digits ) => changes not saved: '" + Zweistellig.GetText +"' #i29810" - if Aktivieren.IsChecked <> TRUE then Warnlog "Enable HelpAgent => changes not saved" - Zuruecksetzen.Click - if gPlatgroup = "w95" then - if StarOfficeDialogeBenutzen.IsChecked = lbSave (2) then Warnlog "Use StarOffice dialogs => changes not saved!" - end if - If DruckenStatus.IsChecked = lbSave ( 3 ) then Warnlog "Printing sets 'Document modified' status => changes not saved!" - - printlog " - 2. change data" - Zweistellig.SetText "1800" - DruckenStatus.UnCheck - - Kontext "ExtrasOptionenDlg" - hCloseDialog( ExtrasOptionenDlg, "ok" ) - - printlog " - check data" - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - if Zweistellig.GetText <> "1800" then Warnlog "Year ( 2 digits ) => changes not saved : '" + Zweistellig.GetText +"'" - If DruckenStatus.IsChecked <> FALSE then Warnlog "Printing sets 'Document modified' status => changes not saved!" - if StyleSheet.GetSelIndex <> 3 then Warnlog "Style sheet for StarOffice Help => changes not saved!" - - printlog " - reset to saved data" - Zweistellig.SetText lsSave ( 1 ) - Aktivieren.Check - Zuruecksetzen.Click - if lbSave (1) = TRUE then Aktivieren.Check else Aktivieren.Uncheck - if gPlatgroup = "w95" then - if lbSave (2) = TRUE then StarOfficeDialogeBenutzen.Check else StarOfficeDialogeBenutzen.UnCheck - end if - If lbSave(3)= TRUE then DruckenStatus.Check else DruckenStatus.UnCheck - StyleSheet.Select lsSave(3) - - Kontext "ExtrasOptionenDlg" - hCloseDialog( ExtrasOptionenDlg, "ok" ) - - ToolsOptions - hToolsOptions ( "StarOffice", "General" ) - - printlog " - check the reset data" - if Zweistellig.GetText <> lsSave ( 1 ) then Warnlog "Year ( 2 digits ) => changes not saved" - if Aktivieren.IsChecked <> lbSave (1) then Warnlog "Enable HelpAgent => changes not saved" - Aktivieren.Check - Zuruecksetzen.Click - if lbSave (1) = TRUE then Aktivieren.Check else Aktivieren.Uncheck - if gPlatgroup = "w95" then - if StarOfficeDialogeBenutzen.IsChecked <> lbSave (2) then Warnlog "Use StarOffice dialogs => changes not saved!" - end if - If DruckenStatus.IsChecked <> lbSave(3) then Warnlog "Printing sets 'Document modified' status => changes not saved!" - if StyleSheet.GetSelText <> lsSave (3) then Warnlog "Style sheet for StarOffice Help => changes not saved!" - - Kontext "ExtrasOptionenDlg" - hCloseDialog( ExtrasOptionenDlg, "ok" ) + dim lsSave (4) as String + dim lbSave (3) as Boolean + + hNewDocument + + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + printlog " - save old data" + lsSave ( 1 ) = Zweistellig.GetText + lbSave ( 1 ) = Aktivieren.IsChecked + Aktivieren.Check + + if gPlatgroup = "w95" then + lbSave (2) = StarOfficeDialogeBenutzen.IsChecked + endif + + lbSave ( 3 ) = DruckenStatus.IsChecked + lsSave ( 3 ) = StyleSheet.GetSelText + + printlog " - invert/change data" + Zweistellig.SetText "1950" + Zuruecksetzen.Click + + if gPlatgroup = "w95" then + if lbSave (2) then + StarOfficeDialogeBenutzen.Uncheck + else + StarOfficeDialogeBenutzen.Check + endif + endif + + If lbSave ( 3 ) then + DruckenStatus.Uncheck + else + DruckenStatus.Check + endif + + StyleSheet.Select 3 + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) + hCloseDocument + + printlog " - exit/restart StarOffice" + ExitRestartTheOffice + + printlog " - check data" + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + if Zweistellig.GetText <> "1950" then + Warnlog "#i29810# - Year ( 2 digits ) => changes not saved: " + Zweistellig.GetText + endif + + if not Aktivieren.IsChecked then + Warnlog "Enable HelpAgent => changes not saved" + endif + + Zuruecksetzen.Click + + if gPlatgroup = "w95" then + if StarOfficeDialogeBenutzen.IsChecked = lbSave (2) then + Warnlog "Use StarOffice dialogs => changes not saved!" + endif + endif + + If DruckenStatus.IsChecked = lbSave ( 3 ) then + Warnlog "Printing sets 'Document modified' status => changes not saved!" + endif + + printlog " - 2. change data" + Zweistellig.SetText "1800" + DruckenStatus.UnCheck + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) + + printlog " - check data" + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + if ( Zweistellig.GetText <> "1800" ) then + Warnlog( "#i29810# - Year ( 2 digits ) => changes not saved : " & Zweistellig.GetText() ) + endif + + If DruckenStatus.IsChecked then + Warnlog "Printing sets 'Document modified' status => changes not saved!" + endif + + if StyleSheet.GetSelIndex <> 3 then + Warnlog "Style sheet for StarOffice Help => changes not saved!" + endif + + printlog " - reset to saved data" + Zweistellig.SetText lsSave ( 1 ) + Aktivieren.Check + Zuruecksetzen.Click + + if lbSave (1) then + Aktivieren.Check + else + Aktivieren.Uncheck + endif + + if gPlatgroup = "w95" then + if lbSave (2) then + StarOfficeDialogeBenutzen.Check + else + StarOfficeDialogeBenutzen.UnCheck + endif + endif + + If lbSave(3) then + DruckenStatus.Check + else + DruckenStatus.UnCheck + endif + + StyleSheet.Select lsSave(3) + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) + + ToolsOptions + hToolsOptions ( "StarOffice", "General" ) + + printlog " - check the reset data" + if Zweistellig.GetText <> lsSave ( 1 ) then + Warnlog "Year ( 2 digits ) => changes not saved" + endif + + if Aktivieren.IsChecked <> lbSave (1) then + Warnlog "Enable HelpAgent => changes not saved" + endif + + Aktivieren.Check + Zuruecksetzen.Click + + if lbSave (1) then + Aktivieren.Check else Aktivieren.Uncheck + endif + + if gPlatgroup = "w95" then + if StarOfficeDialogeBenutzen.IsChecked <> lbSave (2) then + Warnlog "Use StarOffice dialogs => changes not saved!" + endif + endif + + If DruckenStatus.IsChecked <> lbSave(3) then + Warnlog "Printing sets 'Document modified' status => changes not saved!" + endif + + if StyleSheet.GetSelText <> lsSave (3) then + Warnlog "Style sheet for StarOffice Help => changes not saved!" + endif + + Kontext "ExtrasOptionenDlg" + hCloseDialog( ExtrasOptionenDlg, "ok" ) endcase -- cgit From de686c051df3c34b585252b200abbdfc05e7004c Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Mon, 25 Oct 2010 09:26:54 +0200 Subject: automationdev300m87#i115106#excluded testcases touched by known issue --- .../writer/optional/includes/contextmenu/w_contextmenu1.inc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc b/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc index 4e399309d018..75db278c25ef 100644 --- a/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc +++ b/testautomation/writer/optional/includes/contextmenu/w_contextmenu1.inc @@ -177,6 +177,8 @@ endcase testcase tPickGraphic + Warnlog "#i115132#Missing .uno Slots in context menus" + goto endsub printlog "Open context menu on not focussed graphic" Call hNewDocument Printlog " Set zoom to 100%" @@ -258,6 +260,9 @@ endcase testcase tHyperlinkEdit + Warnlog "#i115132#Missing .uno Slots in context menus" + goto endsub + printlog "Context menu on hyperlinks" printlog " Open a new text document" CALL hNewDocument @@ -380,6 +385,9 @@ endcase testcase tPickDrawingObjects + Warnlog "#i115132#Missing .uno Slots in context menus" + goto endsub + printlog "Context menu on drawing objects" printlog " Open a new text document" Call hNewDocument -- cgit From 08c3ac4f141b76b854c08ea8924de6abd8818016 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Mon, 25 Oct 2010 10:15:22 +0200 Subject: automationdev300m87#i115106#uses hFileOpenLocally to open document --- testautomation/writer/optional/includes/undo/w_undo_history_4.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testautomation/writer/optional/includes/undo/w_undo_history_4.inc b/testautomation/writer/optional/includes/undo/w_undo_history_4.inc index 506c1e1e4335..568d6cd3d295 100755 --- a/testautomation/writer/optional/includes/undo/w_undo_history_4.inc +++ b/testautomation/writer/optional/includes/undo/w_undo_history_4.inc @@ -290,7 +290,7 @@ testcase tUndoSpellcheck '/// Spellcheck(Autocheck/Spellcheck) printlog "- Spellcheck: Autocheck" '/// new document /// - hfileOpen (gTesttoolpath + "writer\optional\input\undo\spellcheck_undo.odt") + Call hfileOpenLocally (gTesttoolpath + "writer\optional\input\undo\spellcheck_undo.odt") '/// Type "This is a testp" Call wTypeKeys ( "" ) 'This is a testp -- cgit From e884f01f281f3ce8b847a0ace0661f32d6c2dfc1 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Mon, 25 Oct 2010 10:30:37 +0200 Subject: automationdev300m87#i115106#uses hFileOpenLocally to open document --- testautomation/writer/optional/includes/number/w_207_.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testautomation/writer/optional/includes/number/w_207_.inc b/testautomation/writer/optional/includes/number/w_207_.inc index f356f1e21e4e..4bc525553f56 100644 --- a/testautomation/writer/optional/includes/number/w_207_.inc +++ b/testautomation/writer/optional/includes/number/w_207_.inc @@ -111,7 +111,7 @@ testcase tToolsNumbering12 Call hCloseDocument printlog " - load previous saved document" - hFileOpenLocally( ExportFileName ) + hFileOpen( ExportFileName ) printlog " - close document" hFileCloseAll() -- cgit From a2c684d93741f296f57b3cddc9e338366e2a2118 Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Mon, 25 Oct 2010 10:33:34 +0200 Subject: automationdev300m87#i115106#added neccessary wait --- testautomation/writer/optional/includes/shortcut/w_shortcuts.inc | 3 +++ 1 file changed, 3 insertions(+) mode change 100755 => 100644 testautomation/writer/optional/includes/shortcut/w_shortcuts.inc diff --git a/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc b/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc old mode 100755 new mode 100644 index 0bd84118edc5..22d64c36ed43 --- a/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc +++ b/testautomation/writer/optional/includes/shortcut/w_shortcuts.inc @@ -779,6 +779,7 @@ testcase tShortcutPasteUnformattedText Kontext Active.Setpage TabFont Kontext "TabFont" + wait 500 DefaultSize = Size.GetSelIndex Size.Select 14 ' Size 20 DefaultStyle = Style.GetSelIndex @@ -824,6 +825,7 @@ testcase tShortcutPasteUnformattedText Kontext Active.Setpage TabFont Kontext "TabFont" + wait 500 if Size.GetSelIndex <> 14 then Warnlog "formatted word has lost its size" endif @@ -842,6 +844,7 @@ testcase tShortcutPasteUnformattedText Kontext Active.Setpage TabFont Kontext "TabFont" + wait 500 if Size.GetSelIndex <> DefaultSize then Warnlog "formatted word has no default size" endif -- cgit From 04e7b56866d1cb4c8135e5d3e277397e4a774dbc Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Mon, 25 Oct 2010 10:45:44 +0200 Subject: automationdev300m87#i115106#uses now hFileOpenLocally --- .../writer/optional/includes/spellcheck/w_spellcheck.inc | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc b/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc index bc73cd945b95..a6dd6c18b997 100644 --- a/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc +++ b/testautomation/writer/optional/includes/spellcheck/w_spellcheck.inc @@ -58,7 +58,7 @@ testcase tToolsSpellcheckWithShortcut exit sub end if - call hFileOpen (TheFile,false) + call hFileOpenLocally (TheFile,false) printlog " Insert some faulty text" @@ -149,7 +149,7 @@ testcase tToolsSpellcheckCorrect PrintLog "- Tools / Spellcheck without text" printlog " Open document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) + call hFileOpenLocally (TheFile,false) printlog " Insert some faulty text" @@ -284,7 +284,7 @@ testcase tToolsSpellcheck1Mistake end select printlog " Open document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) + call hFileOpenLocally (TheFile,false) '/// Insert a sentence with one definded mistake and execute spellcheck /// @@ -741,7 +741,7 @@ testcase tToolsSpellcheckAutomatic PrintLog "- Tools / Spellcheck / AutoSpellcheck" printlog " Open document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) + call hFileOpenLocally (TheFile,false) '/// Enable Auto-Spellcheck in options @@ -1288,7 +1288,7 @@ testcase tToolsThesaurus end select printlog "Open new preformatted-writerdocument" - call hFileOpen (TheFile,false) + call hFileOpenLocally (TheFile,false) printlog "- Thesaurus without a word" @@ -1322,7 +1322,7 @@ testcase tToolsThesaurus wait 500 printlog " Open new preformatted-document where the formatting is set to the language we wish to test." - call hFileOpen (TheFile,false) + call hFileOpenLocally (TheFile,false) Call wTypeKeys sWordInitial @@ -1444,7 +1444,7 @@ testcase tToolsThesaurusSynonyms end select printlog "Open new preformatted-writerdocument" - call hFileOpen (TheFile,false) + call hFileOpenLocally (TheFile,false) Call wTypeKeys sWordInitial Call wTypeKeys "" -- cgit From d5e725a9b522706f4226c871648a489e15acf1bc Mon Sep 17 00:00:00 2001 From: "Helge Delfs [hde]" Date: Mon, 25 Oct 2010 11:04:49 +0200 Subject: automationdev300m87#i115106#replaced hFileOpenLocally with hFileOpen --- testautomation/writer/optional/includes/textframes/w_textframes2.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testautomation/writer/optional/includes/textframes/w_textframes2.inc b/testautomation/writer/optional/includes/textframes/w_textframes2.inc index 5f58ba252aa6..4fca2bdbddb6 100644 --- a/testautomation/writer/optional/includes/textframes/w_textframes2.inc +++ b/testautomation/writer/optional/includes/textframes/w_textframes2.inc @@ -1075,7 +1075,7 @@ testcase tTextframes_31 Sleep 2 '/// Check if the frame is non-editable - hFileOpenLocally( sTestFile ) + hFileOpen( sTestFile ) Call wTypeKeys ( "" ) @@ -1132,7 +1132,7 @@ testcase tTextframes_32 Sleep 2 '/// Check if the text can be inputed into frame - hFileOpenLocally( sTestFile ) + hFileOpen( sTestFile ) Call wTypeKeys "" Wait 500 -- cgit From 1207af1d5a3b8a1fe79668ebf8784c3d5a41828f Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Mon, 25 Oct 2010 11:43:52 +0200 Subject: automationdev300m87: #i115106 - Re-enabled tRecentDocuments. --- testautomation/spreadsheet/required/includes/c_upd_filemenu.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc b/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc index 38c25d41bde5..ea8efd09dd2c 100644 --- a/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc +++ b/testautomation/spreadsheet/required/includes/c_upd_filemenu.inc @@ -358,10 +358,10 @@ endcase testcase tFileRecentDocuments -if gPlatform = "lin" then - warnlog "#110649# Due to bug this testcase is not available" - goto endsub -end if +'if gPlatform = "lin" then +' warnlog "#110649# Due to bug this testcase is not available" +' goto endsub +'end if dim sTestFile as string -- cgit From 079d1f1a1ad006d8997019739a0dcdd9560029a9 Mon Sep 17 00:00:00 2001 From: Thorsten Bosbach Date: Mon, 25 Oct 2010 14:05:39 +0200 Subject: #i115106# fix modified file and conflict from m89 --- .../optional/includes/global/g_spellcheck.inc | 54 +++++---------------- testautomation/graphics/required/input/recht_1.odp | Bin 13365 -> 15116 bytes 2 files changed, 11 insertions(+), 43 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/g_spellcheck.inc b/testautomation/graphics/optional/includes/global/g_spellcheck.inc index a514db14d783..8e52eedee576 100644 --- a/testautomation/graphics/optional/includes/global/g_spellcheck.inc +++ b/testautomation/graphics/optional/includes/global/g_spellcheck.inc @@ -86,50 +86,18 @@ testcase tiToolsSpellcheckCheck_AlwaysIgnore end if sleep 2 - PrintLog "- Spellcheck with correct text" - select case iSprache - case 01 : hTextrahmenErstellen ("This is a text without any error.",10,10,50,20) - case 33 : hTextrahmenErstellen ("Il nous faut donc un de temps pour examiner avec soin tous les dossiers.",10,10,70,20) - case 34 : hTextrahmenErstellen ("Este es un chico muy importante.",10,10,50,20) - case 36 : hTextrahmenErstellen ("akit a b�r�s�g vagy a szab�lys�rt�si hat�s�g a eltiltott",10,10,70,20) - case 39 : hTextrahmenErstellen ("La ringraziamo per l'interesse mostrato a collaborare con la firma.",10,10,70,20) - case 46 : hTextrahmenErstellen ("Det varierar vad som behandlas och ur vilket perspektiv.",10,10,50,20) - case 49 : hTextrahmenErstellen ("Dies ist ein Text ohne Fehler.",10,10,50,20) - case 50 : hTextrahmenErstellen ("To je besedilo brez napake.",10,10,50,20) - case 55 : hTextrahmenErstellen ("Esta poderia ser a resposta para suas preces?",10,10,50,20) - case else : - if bAsianLan then - printlog "For the language " + iSprache +" nothing is prepared yet, but is AsianLan, so OK :-) will use english instaed" - ' there was smth wrong, try to find out : - kontext - if active.exists then - printlog "ERROR: active: '"+active.gettext+"'" - active.ok - end if - hTextrahmenErstellen ("This is a text without any error.",10,10,50,20) - else - Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here" - hTextrahmenErstellen ("This is a text without any error.",10,10,50,20) - end if - end select - ToolsSpellcheck - WaitSlot (2000) - Kontext "Active" - if active.exists(5) then - printlog "Message: spellchecking has finished?: '" + active.gettext + "'" - Active.OK - else - errorLog "Spellcheck started :" - Kontext "Spellcheck" - if Spellcheck.exists then - errorlog " - spellcheck came up and will be closed now" - Spellcheck.Close - else - printlog "spellcheck didn't come up" - end if - end if - WaitSlot (2000) + printlog "Close dialog 'Edit Custom Dictionary'." + BenutzerwoerterbuchBearbeiten.Close + Kontext "ExtrasOptionenDlg" + printlog "Close the Option dialog." + ExtrasOptionenDlg.OK + + printlog "Close document" Call hCloseDocument + + ' remove the word again from the dictionary + delete_word_from_dictionary(sWrongWord,"IgnoreAllList") + endcase 'tiToolsSpellcheckCorrect '------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ diff --git a/testautomation/graphics/required/input/recht_1.odp b/testautomation/graphics/required/input/recht_1.odp index 998668d43966..fbad5296d1b1 100755 Binary files a/testautomation/graphics/required/input/recht_1.odp and b/testautomation/graphics/required/input/recht_1.odp differ -- cgit From 999314ef0ca6fcfab46ae1f169f6eb3c6e16b055 Mon Sep 17 00:00:00 2001 From: Thorsten Bosbach Date: Mon, 25 Oct 2010 14:20:31 +0200 Subject: #i115106# fix modified file and conflict from m89 --- .../optional/includes/global/g_spellcheck.inc | 125 --------------------- 1 file changed, 125 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/g_spellcheck.inc b/testautomation/graphics/optional/includes/global/g_spellcheck.inc index 8e52eedee576..6dd730b29ba8 100644 --- a/testautomation/graphics/optional/includes/global/g_spellcheck.inc +++ b/testautomation/graphics/optional/includes/global/g_spellcheck.inc @@ -100,131 +100,6 @@ testcase tiToolsSpellcheckCheck_AlwaysIgnore endcase 'tiToolsSpellcheckCorrect -'------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ -testcase tiToolsSpellcheckError - if iSprache = 48 then - qaerrorlog "This test is not adapted for polish, 48." - goto endsub - endif - Dim Fehler$ - Dim Sprachenname$ - Dim Dummy$ - Dim FehlerText$ - Dim i as integer - - printlog "New document" - Call hNewDocument - printlog "Selecting language case: " & iSprache - select case iSprache - case 01 : FehlerText$ = "Thatt is a failure test." : Fehler$ = "Thatt" : Sprachenname$ = "English (US)" - case 34 : FehlerText$ = "Ezte es un chico muy importante." : Fehler$ = "Ezte" : Sprachenname$ = "Niederlaendisch" - case 33 : FehlerText$ = "Ler nous faut donc un de temps pour examiner." : Fehler$ = "Ler" : Sprachenname$ = "Franzoesisch" - case 36 : FehlerText$ = "Boszniai americkai kontingens háromnegyedesek – mintegy négyezer katona – magyarországi telepítése egy éven belül megtörténhet" : Fehler$ = "tellepítésel" : Sprachenname$ = "Ungarisch" - case 39 : FehlerText$ = "Ringrarziamo per l'interessa mostrato a collaborare con la firma." : Fehler$ = "Ringrarziamo" : Sprachenname$ = "Italienisch" - case 46 : FehlerText$ = "Detd varierar vad som behandlas och ur vilket perspektiv." : Fehler$ = "Detd" : Sprachenname$ = "Schwedisch" - case 49 : FehlerText$ = "Diees ist ein Fehler." : Fehler$ = "Diees" : Sprachenname$ = "Deutsch" - case 50 : FehlerText$ = "Toje napaka, ker manjka presledek." : Fehler$ = "Toje" : Sprachenname$ = "Slovenš�?ina" - case 55 : FehlerText$ = "Eesta poderia ser a resposta para suas preces?": Fehler$ = "Eesta" : Sprachenname$ = "Portugiesisch" - case else : - if bAsianLan then - printlog "For the language " + iSprache +" nothing is prepared yet, but is AsianLan, so OK :-) using english" - FehlerText$ = "Thatt is a failure test." - Fehler$ = "Thatt" - Sprachenname$ = "English (US)" - call hSetSpellHypLanguage - else - Warnlog "For the language " + iSprache +" nothing is prepared yet: insert text here" - end if - end select - printlog "Error Text taken for testing is: " & FehlerText$ - sleep 2 - - printlog "Delete ignore word list" - if (not wIgnorierenlisteLoeschen) then - qaErrorLog "Can't get into Dictionary lists" - goto endsub - end if - printlog "Setting doc language to english" - ToolsOptions - Kontext "ExtrasOptionenDlg" - hToolsOptions("LANGUAGESETTINGS","Languages") - Westlich.Select 34 - Kontext "ExtrasOptionenDlg" - ExtrasOptionenDlg.OK - printlog "Create 1 textbox with 1 spelling error (test replace always)" - hTextrahmenErstellen (FehlerText$,30,30,90,40) - - hTypeKeys "" - printlog "Call 'Tools->Spellcheck->Check'" - ToolsSpellcheck - printlog "Spellcheck dialog has to come up, wrong word is selected." - Kontext "Spellcheck" - if Spellcheck.Exists then - printlog "There has to be at least ONE suggestion." - if (Suggestions.GetItemCount < 1) then - printlog "If no suggestion avilable:" - warnlog " - no suggestion for the language: "+DictionaryLanguage.GetSelIndex+" '"+DictionaryLanguage.GetSelText+"' , press check button..." - printlog "+ press button 'Check word'" - Pruefen.click - if (Suggestions.GetItemCount < 1) then - warnlog " STILL no suggestions :-( errors will follow " - else - printlog " - now suggestion for the language: "+DictionaryLanguage.GetSelIndex+" '"+DictionaryLanguage.GetSelText+"'" + Suggestions.GetItemCount - end if - end if - Dummy$=Suggestions.GetItemText (1) - printlog "Select first spellcheck suggestion (click it!)." - Suggestions.Select (1) - printlog "Check if textfield 'word' has changed to selected word." - if (Suggestions.GetSelText <> Dummy$) Then - Warnlog "Suggestion not used" - else - Printlog "Suggestion is used" - end if - sleep 1 - kontext "Spellcheck" - printlog "click button 'Always replace'" - ChangeAll.Click - printlog "spellcheck dialog has to disappear and" - printlog "There has to come up only one active: 'Spellcheck of entire document has been completed [OK]'" - Kontext "Active" - if Active.Exists(5) then - Printlog "Message: Spellchecking has finished?: '" + active.gettext + "'" - Active.OK - else - Printlog "'Change All' seems to have worked correctly." - Kontext "Spellcheck" - Spellcheck.Close - Kontext "Active" - if active.exists(5) then - Printlog "Spellcheck dialog closed'" + active.gettext + "'" - Active.OK - else - Printlog "Spellcheck dialog closed'" - end if - end if - else - Warnlog " Error not recognized by the Spellchecker" - if active.exists(5) then - Kontext "Active" - printlog "Message: spellchecking has finished?: '" + active.gettext + "'" - Active.OK - end if - end if - - printlog "Close dialog 'Edit Custom Dictionary'." - BenutzerwoerterbuchBearbeiten.Close - Kontext "ExtrasOptionenDlg" - printlog "Close the Option dialog." - ExtrasOptionenDlg.OK - - printlog "Close document" - Call hCloseDocument - - ' remove the word again from the dictionary - delete_word_from_dictionary(sWrongWord,"IgnoreAllList") - -endcase 'tiToolsSpellcheckCheck '------------------------------------------------------------------------------- testcase tiToolsSpellcheckCheck_Change -- cgit From eccd3b2a1b578600d9d53356d043906a6ae271c9 Mon Sep 17 00:00:00 2001 From: Thorsten Bosbach Date: Mon, 25 Oct 2010 15:57:35 +0200 Subject: #i115106# fix modified file and conflict from m89 --- .../graphics/optional/includes/global/g_spellcheck.inc | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/testautomation/graphics/optional/includes/global/g_spellcheck.inc b/testautomation/graphics/optional/includes/global/g_spellcheck.inc index 6dd730b29ba8..e1f02de039cc 100644 --- a/testautomation/graphics/optional/includes/global/g_spellcheck.inc +++ b/testautomation/graphics/optional/includes/global/g_spellcheck.inc @@ -56,8 +56,7 @@ testcase tiToolsSpellcheckCheck_AlwaysIgnore sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - call fMakeDocumentWritable() + Call hFileOpenLocally (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) sleep(1) @@ -98,6 +97,7 @@ testcase tiToolsSpellcheckCheck_AlwaysIgnore ' remove the word again from the dictionary delete_word_from_dictionary(sWrongWord,"IgnoreAllList") + kill (convertPath(gOfficePath+"user/work/"+"recht_"+iSprache+sExt)) endcase 'tiToolsSpellcheckCorrect '------------------------------------------------------------------------------- @@ -124,9 +124,7 @@ testcase tiToolsSpellcheckCheck_Change sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - - call fMakeDocumentWritable + Call hFileOpenLocally (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) ' Perform the test now: printlog "Call Tools->Spellcheck" @@ -170,6 +168,7 @@ testcase tiToolsSpellcheckCheck_Change printlog "Close document" Call hCloseDocument + kill (convertPath(gOfficePath+"user/work/"+"recht_"+iSprache+sExt)) endcase 'tiToolsSpellcheckCheck_Change '------------------------------------------------------------------------------- @@ -198,9 +197,7 @@ testcase tiToolsSpellcheckCheck_ChangeAll sExt = ".odp" endif - Call hFileOpen (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) - - call fMakeDocumentWritable() + Call hFileOpenLocally (gTesttoolpath + "graphics\required\input\recht_"+iSprache+sExt) ' Perform the test now: printlog "Call Tools->Spellcheck" @@ -216,6 +213,7 @@ testcase tiToolsSpellcheckCheck_ChangeAll printlog "Close document" Call hCloseDocument + kill (convertPath(gOfficePath+"user/work/"+"recht_"+iSprache+sExt)) endcase 'tiToolsSpellcheckCheck_ChangeAll -- cgit From f928dde9b40906d4813c9acd140a80340adaa8ec Mon Sep 17 00:00:00 2001 From: Thorsten Bosbach Date: Mon, 25 Oct 2010 17:00:01 +0200 Subject: #i115106# math part --- testautomation/math/optional/includes/m_101_.inc | 27 ++---------------------- 1 file changed, 2 insertions(+), 25 deletions(-) mode change 100755 => 100644 testautomation/math/optional/includes/m_101_.inc diff --git a/testautomation/math/optional/includes/m_101_.inc b/testautomation/math/optional/includes/m_101_.inc old mode 100755 new mode 100644 index 989857403546..58582452dc63 --- a/testautomation/math/optional/includes/m_101_.inc +++ b/testautomation/math/optional/includes/m_101_.inc @@ -302,7 +302,7 @@ function TBOloadFormulaFromFile () as string '///+ take formula out of command window /// '///+ save it into a variable /// '/// close dokument /// - Call hFileOpen ( ConvertPath(gTesttoolPath + "math/optional/input/101_1.sxm") ) + Call hFileOpenLocally ( ConvertPath(gTesttoolPath + "math/optional/input/101_1.sxm") ) kontext "dokumentwriter" try EditSelectAllMath @@ -344,8 +344,7 @@ testcase tFilePrint goto endsub endif - Call hFileOpen ( ConvertPath(gTesttoolPath + "math/optional/input/101_2.sxw") ) - TBOmakeWriteable() + Call hFileOpenLocally ( ConvertPath(gTesttoolPath + "math/optional/input/101_2.sxw") ) '/// find the translated formula in the document and get the language it belongs to ///' '///+ compare it to the officelanguage ///' @@ -581,28 +580,6 @@ testcase tFilePrint endcase -function TBOmakeWriteable() - ' check if writeable! (especially for HTML Doks!!) - sleep (3) - try - UseBindings - FormatStyleBold - sleep 2 - FormatStyleBold - catch - '/// make document writeable :-)///' - kontext "Funktionsleiste" - printlog "ReadOnly, changed it to writeable." - Bearbeiten.click - kontext - if active.exists (5) then - Printlog " active, accessrights ?!: '"+active.GetText+"'" - active.yes - endif - endcatch - sleep (3) -end function - function isCheckedWarnAlienFormat (optional bChange as boolean) dim uno dim ap -- cgit From ad312005bd3480e78f82824a95589e0673c56d93 Mon Sep 17 00:00:00 2001 From: "Joerg Skottke [jsk]" Date: Tue, 26 Oct 2010 09:02:24 +0200 Subject: automationdev300m87: #i112208# - Turned off verbosity in hFileOpenLocally() --- testautomation/global/tools/includes/required/t_files.inc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/testautomation/global/tools/includes/required/t_files.inc b/testautomation/global/tools/includes/required/t_files.inc index ee75fb99bd80..d734cd3f05a7 100644 --- a/testautomation/global/tools/includes/required/t_files.inc +++ b/testautomation/global/tools/includes/required/t_files.inc @@ -624,16 +624,17 @@ function hFileOpenLocally( byVal sSourcePath as string ) as boolean sTargetPath = hFileGetLocalPath( sSourcePath ) ' The path + file ' For debugging purposes set global variable gVerbose to TRUE - - printlog( CFN & "Copying file" ) - printlog( CFN & "From: " & sSourcePath ) - printlog( CFN & "To..: " & sTargetPath ) + if ( gVerbose ) then + printlog( CFN & "Copying file" ) + printlog( CFN & "From: " & sSourcePath ) + printlog( CFN & "To..: " & sTargetPath ) + endif ' Copy the file from anywhere to the local user directory if it does not ' exist. This behavior was discussed on IRC if ( FileExists( sTargetPath ) ) then - 'printlog( CFN & "Re-using existing local copy of workfile" ) - warnlog( CFN & "Target file exists, it has not been deleted by prior test" ) + printlog( CFN & "Re-using existing local copy of workfile" ) + 'warnlog( CFN & "Target file exists, it has not been deleted by prior test" ) endif FileCopy( sSourcePath, sTargetPath ) -- cgit