You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openoffice.apache.org by bu...@apache.org on 2012/09/10 09:19:59 UTC

[Bug 120868] New: Search & Replace not visisble

https://issues.apache.org/ooo/show_bug.cgi?id=120868

          Priority: P3
            Bug ID: 120868
          Assignee: ooo-issues@incubator.apache.org
           Summary: Search & Replace not visisble
          Severity: critical
        Issue Type: DEFECT
    Classification: Application
                OS: Windows XP
          Reporter: jeffreylstevenson@gmail.com
          Hardware: PC
            Status: UNCONFIRMED
           Version: AOO 3.4.1
         Component: editing
           Product: spreadsheet

When opening search and replace from the menu or Ctrl+F the search window will
not open.  Windows shifts focus away from the open document where I am trying
to search.  I have tried restarting the computer and uninstalling and
reinstalling the product with the latest version.  The find/replace function
does not work in the spreadsheet or text portions of the program.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 120868] Search & Replace not visisble

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=120868

Rob Weir <ro...@apache.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |INVALID

--- Comment #3 from Rob Weir <ro...@apache.org> ---
Our Bugzilla issue tracking system is for reporting reproducible defects in
Apache OpenOffice. For "how to" questions, configuration questions or general
technical support issues I recommend that you use our Community Support Forum
to ask your question. You can find the Forum at http://forum.openoffice.org

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 120868] Search & Replace not visisble

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=120868

hanya <ha...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hanya.runo@gmail.com

--- Comment #1 from hanya <ha...@gmail.com> ---
If it could be opened before, and position values are invalid, the following
macro can be set its position on the screen.

Sub SetWindowStateForSearchAndReplace
  id = "5961" ' search and replace on AOO 3.4
  cp = CreateUnoService("com.sun.star.configuration.ConfigurationProvider")
  a1 = CreateUnoStruct("com.sun.star.beans.PropertyValue")
  a1.Name = "nodepath"
  a1.Value = "/org.openoffice.Office.Views/Windows"
  args = Array(a1)
  ca =
cp.createInstanceWithArguments("com.sun.star.configuration.ConfigurationUpdateAccess",
args)
  If ca.hasByName(id) Then
    key = ca.getByName(id)
    key.WindowState = "100,100,,;1;,,,;"
    ca.commitChanges()
  Else
    msgbox "Not found: " & chr(id)
  End If
End Sub

1. Close your office and restart it.
2. Execute the macro above
3. Restart your office without doing noting on the office.
4. Open Search & Replace dialog on spreadsheet document, 
   the dialog should be shown if the problem is in the certain configuration.

the function to reset all windows state without to clear hole configuration
would be help.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 120868] Search & Replace not visisble

Posted by bu...@apache.org.
https://issues.apache.org/ooo/show_bug.cgi?id=120868

zong dong jun <zo...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |needmoreinfo
                 CC|                            |zongdj001@gmail.com

--- Comment #2 from zong dong jun <zo...@gmail.com> ---
What's OS of your compute?

-- 
You are receiving this mail because:
You are the assignee for the bug.