Antonio:
I'm getting the following errors when compiling (with FW 13.09) the SAMPSIX.PRG included in FW 10.06:
Here's the source.
What I'm missing ?
I'm getting the following errors when compiling (with FW 13.09) the SAMPSIX.PRG included in FW 10.06:
Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland
Error: Unresolved external '_HB_FUN_SIX' referenced from E:\COMP\FWH\SAMPLES\SAM
PSIX.OBJ
Error: Unresolved external '_HB_FUN_SX_SETFILETYPE' referenced from E:\COMP\FWH\
SAMPLES\SAMPSIX.OBJ
Error: Unresolved external '_HB_FUN_SX_SETCENTURY' referenced from E:\COMP\FWH\S
AMPLES\SAMPSIX.OBJ
Error: Unresolved external '_HB_FUN_SX_SETDELETED' referenced from E:\COMP\FWH\S
AMPLES\SAMPSIX.OBJ
Error: Unresolved external '_HB_FUN_SX_SETEPOCH' referenced from E:\COMP\FWH\SAM
PLES\SAMPSIX.OBJ
* Linking errors *Here's the source.
#define DRIVER Â Â "SIX"
#include "Apollo.ch"
#include "FiveWin.ch"
#include "Inkey.ch"
#xtranslate Sx_I_TagName() Â Â => ORDNAME(ORDSETFOCUS())
#xtranslate Sx_I_IndexName() Â => ORDBAGNAME()
#xtranslate Sx_KeysIncluded() => ORDKEYCOUNT()
PROCEDURE Main
  LOCAL cPassWord := "12345678"
  request SIX
  rddRegister( "SIX", 1 )
  rddsetdefault( "SIX" )
  SET FILETYPE TO CDX
  ThreadSleep(100)
  SETCANCEL(.F.)
  SET _3DLOOK ON
  SET CENTURY ON
  SET CONFIRM OFF
  SET DELETED ON
  SET EPOCH TO 2000
  SET ESCAPE ON
  SET WRAP ON
  USE Customer NEW VIA DRIVER SHARED
  Sx_SetPass(cPassWord)
  Sx_DBFencrypt()
  // Browse will go in here.
  USE
RETURN
* EOP: MainWhat I'm missing ?