To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=49313
                  Issue #:|49313
                  Summary:|Basic Programmer's Guide contains mistake
                Component:|api
                  Version:|OOo 2.0 Beta
                 Platform:|All
                      URL:|
               OS/Version:|All
                   Status:|UNCONFIRMED
        Status whiteboard:|
                 Keywords:|
               Resolution:|
               Issue type:|DEFECT
                 Priority:|P3
             Subcomponent:|documentation
              Assigned to:|mi
              Reported by:|cyb





------- Additional comments from [EMAIL PROTECTED] Sun May 15 08:35:00 -0700 
2005 -------
The StarOffice 7 Programmer's Guide - which is the only official guide for the
SO/OOo Scripting language - has a mistake on page 59
(http://docs-pdf.sun.com/817-1826/817-1826.pdf).
There it says:
"""
ResultString = InStr (SearchString, MyString)
The SearchString parameter specifies the string to be searched for within
MyString.
"""

This is wrong. The first parameter of InStr is the string to be searched in, not
the second. So the corrected text would be:
"""
ResultString = InStr (MyString, SearchString)
The SearchString parameter specifies the string to be searched for within
MyString.
"""

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to