* /harbour/* -> /*
* moved whole Harbour source tree one level up to
avoid single 'harbour' top dir
19 lines
191 B
Plaintext
19 lines
191 B
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
PROCEDURE Main()
|
|
|
|
LOCAL nCount
|
|
|
|
USE test
|
|
|
|
dbGoto( 4 )
|
|
? RecNo()
|
|
COUNT TO nCount
|
|
? RecNo(), nCount
|
|
COUNT TO nCount NEXT 10
|
|
? RecNo(), nCount
|
|
|
|
RETURN
|