Search found 56 matches: adskeyno

Return to advanced search

Re: harbour/xharbour appear ADS functions error

With ads.ch and linking rddads.lib I have no unresolved externals. Can I see the batch are you using to compile? I use FWH\samples\Buildx.bat and Buildh.bat Did you uncomment this line? rem echo %hdir%\lib\rddads.lib + >> b32.bc Yes, some error below: Turbo Incremental Link 6.97 Copyright (c)...
by richard-service
Wed Apr 03, 2024 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: harbour/xharbour appear ADS functions error-SOLVED
Replies: 47
Views: 8177

Re: OPen files ADT ADI ADM

See fwh\samples\testads.prg and xbradt.prg where i can found ads.ch ? exist a free ads ? Turbo Incremental Link 6.80 Copyright (c) 1997-2017 Embarcadero Technologies, Inc. Error: Unresolved external '_HB_FUN_ADSSETSERVERTYPE' referenced from C:\WORK\ERRORI\BO_FILE_ADT\OBJ\TEST.OBJ Error: Unresolved...
by Silvio.Falconi
Fri Nov 12, 2021 10:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OPen files ADT ADI ADM
Replies: 9
Views: 834

uso de ADS y DBFCDX ?

... archivos DBF con un proveedor y con el ADS tiene problemas para abrir tales archivos. en mi programa principal tengo: REQUEST ADS EXTERNAL AdsKeyNo, AdsKeyCount, AdsGetRelKeyPos, AdsSetRelKeyPos // --- Activacion de RDD ADS function ActivaRDD() RDDREGISTER("ADS",1) RDDSETDEFAULT("ADS") ...
by noe aburto
Wed May 22, 2019 9:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: uso de ADS y DBFCDX ?
Replies: 2
Views: 447

Re: xBrowse error on ADS

... REQUEST ADS static hAds, oConn, lOk function main() local cPath := "D:\projects\fwh1706\pos6\LocalDB\POS4.add" EXTERN ADSKeyNo EXTERN ADSKeyCount EXTERN ADSSetRelKeyPos EXTERN ADSGetRelKeyPos AdsSetFileType( ADS_ADT ) lOk := .F. RddRegister("Ads", 1) RddSetDefault("Ads") ...
by ryugarai27
Sat Sep 08, 2018 10:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse error on ADS (SOLVED!)
Replies: 12
Views: 2718

Re: xBrowse error on ADS

Hi Nages,

I have removed the ADSKEYNO error by adding the following EXTERN commands:
EXTERN ADSKeyNo
EXTERN ADSKeyCount
EXTERN ADSSetRelKeyPos
EXTERN ADSGetRelKeyPos

but still the error on xbrowse:ldrag persists.

Best regards,
ryugarai27
by ryugarai27
Sat Sep 01, 2018 6:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse error on ADS (SOLVED!)
Replies: 12
Views: 2718

Re: xBrowse error on ADS

... an error: Time from start: 0 hours 0 mins 0 secs Error occurred at: 09/01/18, 13:26:36 Error description: Error BASE/1001 Undefined function: ADSKEYNO Args: [ 1] = U [ 2] = U [ 3] = N 1 Stack Calls =========== Called from: => ADSKEYNO( 0 ) Called from: .\source\classes\XBROWSE.PRG => ...
by ryugarai27
Sat Sep 01, 2018 5:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse error on ADS (SOLVED!)
Replies: 12
Views: 2718

Listbox strange problem

... #include "fivewin.ch" REQUEST DBFCDX REQUEST DBFFPT REQUEST ADS, ADSKeyno, ADSKeycount, ADSGETRELKEYPOS, ADSSETRELKEYPOS static aSecurity[06] function Main( cComp, cUid ) local oWnd , ; oFont, oFont2, oFont3, oMenu ...
by cdmmaui
Wed May 23, 2018 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox strange problem
Replies: 2
Views: 722

Re: funciones de FWH y Harbour en un archivo .txt

... ADSKeyCount([<xTag>],<cIgnoredIndexFile>,[<nFilterOption>])->nKeyCount ADSKeyNo([<xTag>],[<nFilterOption>])->nKeyNo ADSLocking(<lMode>)->lPriorSetting ADSRefreshAOF()->Nil ADSRightsCheck(<lMode>)->lPriorSetting ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5687

Re: funciones de FWH y Harbour en un archivo .txt

... ADSCustomizeAOF AdsDDRemoveTable ADSEvalAOF ADSFile2Blob ADSGetAOF ADSGetAOFnoOpt ADSGetAOFoptLevel ADSGetRelKeyPos ADSIsRecordInAOF ADSKeyCount ADSKeyNo ADSLocking ADSRefreshAOF ADSRightsCheck ADSSetAOF ADSStmtSetTableReadOnly AEval AFields AFill AfterAtNum AIns ALenAlloc Alert Alias AllTrim ...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5687

Re: XBrowse with ADT Free Table

nageswaragunupudi wrote:Please add ADSKEYNO also to the list of EXTERNAL symbols


Nages,

Alright. That solves the AdsKeyNo error.

However, when the xbrowse window pops up, the application crashes giving no detail information. It just says that the xxx.exe has stopped working.

How do I debug this? Thanks.
by teddydjohan
Thu Sep 07, 2017 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with ADT Free Table
Replies: 8
Views: 1699

Re: XBrowse with ADT Free Table

Please add ADSKEYNO also to the list of EXTERNAL symbols
by nageswaragunupudi
Thu Sep 07, 2017 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with ADT Free Table
Replies: 8
Views: 1699

XBrowse with ADT Free Table

... to xHarbour include folder. I compiled my program successfully but when I run it, it fails with exception: Error BASE/1001 Undefined function: ADSKEYNO This is my program: #include "fivewin.ch"#include "xbrowse.ch"#include "ads.ch"REQUEST ADSEXTERNAL AdsKeyCount, ...
by teddydjohan
Thu Sep 07, 2017 8:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with ADT Free Table
Replies: 8
Views: 1699

Re: lentitud tremenda en red

... principal es: REQUEST DBFCDX RddSetDefault("DBFCDX") REQUEST OrdKeyNo, OrdKeyCount, OrdKeyGoto REQUEST ADS,ADSKEYCOUNT,ADSGETRELKEYPOS,ADSKEYNO,ADSSetRelKeyPos,rddsys RDDREGISTER("ADS",1) SET SERVER LOCAL AdsSetFileType( ADS_CDX ) AdsLocking( .t. ) AdsRightsCheck( .f. ) un ...
by Loren
Thu Mar 10, 2016 7:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lentitud tremenda en red
Replies: 20
Views: 5374

Re: Búsquedas en xBrowse

... si esto te orienta Uso ADS, y tengo estas declaraciones: En el main ANNOUNCE RDDSYS REQUEST ADS, HB_Lang_ESWIN, HB_CODEPAGE_ESWIN, ; ADSKeyCount,ADSKeyNo,OrdKeyCount,OrdKeyNo,AdsGetRelKeyPos,AdsSetRelKeyPos,DBFCDX,DBFFPT luego HB_LangSelect( "ESWIN" ) HB_SetCodePage( "ESWIN" ...
by MarioG
Wed Oct 28, 2015 12:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Búsquedas en xBrowse
Replies: 2
Views: 521

Re: Xbrowse con efecto pijama ( zebra)

... porcentaje ) Intenta ese código con un sistema ads en servidor de no muchos registros poniéndole para que respete los filtros ( usando por tanto adskeyno(,,1) ). ...cada movimiento del xbrowse se trasforma en 15 segundos de refresco :D ( y a veces mas ) Añadiendo la data ::nRowZebra y asignándola ...
by mastintin
Thu May 07, 2015 7:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse con efecto pijama ( zebra)
Replies: 9
Views: 1967
Next

Return to advanced search