To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=97039 Issue #|97039 Summary|[DE] Basic help example for NEXT is messed up Component|l10n Version|OOo 3.0 Platform|All URL| OS/Version|All Status|NEW Status whiteboard| Keywords| Resolution| Issue type|DEFECT Priority|P3 Subcomponent|helpcontent Assigned to|andreschnabel Reported by|andreschnabel
------- Additional comments from [EMAIL PROTECTED] Mon Dec 8 21:11:22 +0000 2008 ------- in Basic help, Index "NEXT statement" - the German translation of the example is completely messed up. The example contains a mix of different names, order of commands is also broken. The english example ist correct: Sub ExampleSort Dim sEntry(9) As String Dim iCount As Integer Dim iCount2 As Integer Dim sTemp As String sEntry(0) = "Jerry" sEntry(1) = "Patty" sEntry(2) = "Kurt" sEntry(3) = "Thomas" sEntry(4) = "Michael" sEntry(5) = "David" sEntry(6) = "Cathy" sEntry(7) = "Susie" sEntry(8) = "Edward" sEntry(9) = "Christine" For iCount = 0 To 9 For iCount2 = iCount + 1 To 9 If sEntry(iCount) > sEntry(iCount2) Then sTemp = sEntry(iCount) sEntry(iCount) = sEntry(iCount2) sEntry(iCount2) = sTemp End If Next iCount2 Next iCount For iCount = 0 To 9 Print sEntry(iCount) Next iCount End Sub --------------------------------------------------------------------- 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]
