Files
harbour-core/harbour/tests/usrrdd/exfcm.prg
Viktor Szakats c0dc8c254d 2012-10-04 12:47 UTC+0200 Viktor Szakats (harbour syenar.net)
* src/rtl/tget.prg
    ! fixed regression from 2012-01-29 17:22 UTC+0100
      when non-numeric index was allowed on a non-hash
      variable and then an RTE generated.
      Caused rto_get.prg to RTE in the middle.

  * contrib/gtwvg/activex.prg
  * contrib/gtwvg/class.prg
  * contrib/gtwvg/tests/demoxbp.prg
  * contrib/gtwvg/tests/utils.prg
  * contrib/rddads/doc/en/adsfuncs.txt
  * contrib/rddads/doc/en/readme.txt
  * contrib/xhb/tfile.prg
  * contrib/xhb/txml.prg
  * contrib/xhb/xhbole.prg
  * doc/windll.txt
  * extras/gtwvw/gtwvw.c
  * extras/gtwvw/hbgtwvw.h
  * extras/gtwvw/tests/maincoor.prg
  * extras/gtwvw/wvwcheck.c
  * extras/gtwvw/wvwdraw.c
  * extras/gtwvw/wvwedit.c
  * extras/gtwvw/wvwfuncs.c
  * extras/gtwvw/wvwmenu.c
  * extras/gtwvw/wvwpush.c
  * extras/gtwvw/wvwstbar.c
  * extras/gtwvw/wvwtbar.c
  * extras/hbdoc/tmplates.prg
  * tests/gtcolors.prg
  * tests/ipclnt.prg
  * tests/ipsvr.prg
  * tests/rto_get.prg
  * tests/rto_tb.prg
  * tests/usrrdd/exarr.prg
  * tests/usrrdd/exfcm.prg
  * tests/usrrdd/exhsx.prg
  * tests/usrrdd/exlog.prg
  * tests/usrrdd/exmemo.prg
  * tests/usrrdd/exrlx.prg
  * tests/wcecon.prg
    * full formatting using hbformat (where needed)
    * Win32 -> Windows
    * 32-bit deleted where it didn't make sense
    * using K_* constants
    ! fixed != operators where used on strings (more to come)
      Thanks to Jose F. Gimenez for the ones in txml.prg.
    * avoid "common.ch"
    % use hb_ntos() in Harbour specific code
2012-10-04 10:54:07 +00:00

45 lines
979 B
Plaintext

/*
* $Id$
*/
REQUEST FCOMMA
PROCEDURE Main()
USE test.csv VIA "FCOMMA"
? "ALIAS", Alias(), "RECNO", RecNo(), ;
"BOF", BOF(), "EOF", EOF(), "LASTREC", LastRec()
? RecNo(), '"' + FIELD->LINE + '"'
dbGoBottom()
? RecNo(), '"' + FIELD->LINE + '"'
dbGoTop()
? RecNo(), '"' + FIELD->LINE + '"'
WAIT
DO WHILE !EOF()
? RecNo(), '"' + FIELD->LINE + '"'
IF RecNo() == 20
Inkey( 0 )
ENDIF
dbSkip()
ENDDO
? "ALIAS", Alias(), "RECNO", RecNo(), ;
"BOF", BOF(), "EOF", EOF(), "LASTREC", LastRec()
WAIT
dbGoBottom()
? "ALIAS", Alias(), "RECNO", RecNo(), ;
"BOF", BOF(), "EOF", EOF(), "LASTREC", LastRec()
WAIT
DO WHILE !BOF()
? RecNo(), '[' + FIELD->LINE + ']'
IF RecNo() == LastRec() - 20
Inkey( 0 )
ENDIF
dbSkip( -1 )
ENDDO
? "ALIAS", Alias(), "RECNO", RecNo(), ;
"BOF", BOF(), "EOF", EOF(), "LASTREC", LastRec()
WAIT
Browse()
RETURN