Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- TSDWIN: Clipper 5.0 Interface Library - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

 twMemoView( wT, wL, wB, wR, cMemo, cTitle, cFooters,;
             wColor, wSType, wFType, wFColor )
 ----------------------------------------------------------------------------
     View a Memo String in a window. twMemoView() uses twABBrowse() and
     so its actions are the same.

       Arguments:

     wT,wL
     wB,wR    - 'N' Screen coordinates for the display window.

     cMemo    - 'C' String to be displayed.

     cTitle   - 'C' Optional title for the window.

     cFooters - 'C' Optional footer for the display window.

     wColor   - 'C' TSDWIN window colour. Should be a Clipper colour
                    string. Defaults to SETCOLOR().

     wSType    - 'N' TSDWIN shadow type. Defaults to 0.

     wFType    - 'N' TSDWIN frame type. Defaults to 1.

     wFColor   - 'C or A' TSDWIN frame colour. Defaults  to wColor.

       Return:

     NIL

       Example:

     LOCAL wT := 3, wL := 10, wB := 15, wR := 70
     LOCAL cTitle := "Title String"
     LOCAL cFooters := "Footer String"
     LOCAL cMemo := ;
             "Printer Not Ready! You can try it " +;
             "if you want but it will not work."+;
             " Oh Well... I knew you had to go ahead "+;
             "and see for yourself. That really is a pity!"

     twMouseInit()

     cMemo := cMemo + cMemo + cMemo
     twMemoView( wT, wL, wB, wR, cMemo, ;
                 "Testing twMemoView()", cFooters, ;
                 "n/bg,gr+/r,,,n/w", 3, 5,  "gr+/g")

See Also: twMemoEdit()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson