xsharp.eu • Command Window or Immediate Window in XIDE or Visual Studio??? - Page 3
Page 3 of 3

Command Window or Immediate Window in XIDE or Visual Studio???

Posted: Fri Apr 26, 2019 2:02 pm
by FFF
Charlie,
XIDE-new app, i took X#-runtime
Doubleclick Start.prg
FUNCTION Start( ) AS VOID
IF DBUseArea ( TRUE , "DBFNTX", "C:S4__KVDBBuchung.dbf" )
? "list content of Field no. 1"
? "---------------------------"
?
DO WHILE ! EOF()
? FieldGet ( 1 )
DBSkip (1)
ENDDO
ELSE
? "can´t open DBF"
ENDIF
DBCloseAll()
?
?
Console.WriteLine ("press any key" )
Console.Read()
RETURN

"F5" and see the values run through ;)

Karl

Command Window or Immediate Window in XIDE or Visual Studio???

Posted: Fri Apr 26, 2019 2:10 pm
by CharlieDenver
Perfect , Thankyou very much