Files
harbour-core/tests/read.prg
vszakats a4a357a18b 2013-03-15 11:12 UTC+0100 Viktor Szakats (harbour syenar.net)
* /harbour/* -> /*
    * moved whole Harbour source tree one level up to
      avoid single 'harbour' top dir
2013-03-15 11:13:30 +01:00

48 lines
871 B
Plaintext

/*
* $Id$
*/
// Harbour Get system sample
#include "inkey.ch"
PROCEDURE Main()
LOCAL cName := "Harbour "
LOCAL cWish := "Power "
LOCAL cEffort := "Join us! "
LOCAL acVars := { { "Hello", "World" } }, Counter
LOCAL GetList := {}
SET COLOR TO GR+/B, W+/BG
CLS
SET KEY K_F2 TO ShowVar()
@ 2, 2 SAY "Enter your name :" GET cName PICTURE "@K!"
@ 4, 2 SAY "Enter your wish :" GET cWish
@ 6, 2 SAY "Enter your effort:" GET cEffort
@ 8, 2 SAY "Object Data :" GET GetList[ 1 ]:Picture
FOR Counter := 1 TO Len( acVars[ 1 ] )
@ Row() + 2, 2 SAY "Array Element[ 1 ][ " + Str( Counter, 1 ) + " ]: " GET acVars[ 1 ][ Counter ]
NEXT
READ
@ Row() + 2, 2
? cName
? cWish
? cEffort
? acVars[ 1 ][ 1 ]
? acVars[ 1 ][ 2 ]
RETURN
PROCEDURE ShowVar()
Alert( ReadVar() )
RETURN