Files
harbour-core/harbour/extras/hbapollo/tests/test67.prg
Viktor Szakats 340318e66d 2012-07-21 19:09 UTC+0200 Viktor Szakats (vszakats syenar.net)
+ extras
  - examples
  * doc/dirstruc.txt
    * renamed 'examples' to what it is more: 'extras'
2012-07-21 17:10:27 +00:00

26 lines
396 B
Plaintext

/*
* $Id$
*/
/*
sx_CopyFile( cFileToCopy, cAlias)
*/
#include "sixapi.ch"
#include "simpleio.ch"
PROCEDURE MAIN()
LOCAL cCopy := "mynew.dbf"
LOCAL lResult
USE "test/test"
? 'lResult := sx_CopyFile( cCopy ) =>', lResult := sx_CopyFile( cCopy )
IF lResult
? 'Copy success ... Press any key ...'
PAUSE
CLOSE ALL
USE "mynew.dbf"
BROWSE
ENDIF