Bug in TMultiGet:Append() method

Post Reply
User avatar
Enrico Maria Giordano
Posts: 8753
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Has thanked: 1 time
Been thanked: 4 times
Contact:

Bug in TMultiGet:Append() method

Post by Enrico Maria Giordano »

The following sample shows that TMultiGet:Append() method doesn't seem to work:

Code: Select all | Expand

#include "Fwce.ch"


FUNCTION MAIN()

    LOCAL oWnd

    LOCAL oGet, cVar := ""

    DEFINE WINDOW oWnd

    @ 1, 1 GET oGet VAR cVar MEMO;
           SIZE 200, 100

    @ 10, 1 BUTTON "Append";
            SIZE 100, 20;
            ACTION oGet:Append( "This is a test" + CRLF )

    ACTIVATE WINDOW oWnd

    RETURN NIL


EMG
Post Reply