bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Basic Error


From: Colin Case
Subject: Basic Error
Date: Sat, 20 Jun 2009 15:25:39 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

I have installed LilyPond to OOo3.1
But it gives and error message in Basic:-
Basic Runtime Error - Variable not defined
This is the code fragment - the variable is CursorPosition near the end.
Happens in Writer and Draw exactly the same.

Function RowColToPos(sText As String, iRow, iCol As Integer) As Integer
        ' converts a position given as column and row within a text to 
character count
        ' from the beginning of the text
        
        Dim vLines As Variant
        Dim i As Integer
        
        vLines=Split(sText, Chr(10))
        
        ' If the String has less rows than row, put the cursor to the end
        If UBound(vLines)-LBound(vLines) + 1 < iRow Then
                RowColToPos=Len(sText)
                Exit Function
        EndIf
        
        ' If row is 0 or negative put curser to the start
        If iRow < 1 Then
                CurserPosition=1
                Exit Function
        End If





reply via email to

[Prev in Thread] Current Thread [Next in Thread]