Search found 51 matches: idx

Return to advanced search

Re: DBF . Commit

... handle ) thereby ensuring that all the data in the buffers are physically written to the disk. This is executed for dbf, fpt/dbt and all cdx/ntx/idx file handles. This API function also updates the files' timestamps. (note: for other operating systems (x)Harbour executes other similar functions) ...
by nageswaragunupudi
Mon Oct 23, 2023 4:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF . Commit
Replies: 39
Views: 2325

Re: INTEGRACION CON DLL PARA CONECTAR CON DISPOSITIVOS ANVIZ

Prueba asi:

msginfo( CChex_Update( Anviz_handle, iDx, tipo, aDatos, nLen ) )
by Antonio Linares
Wed Sep 07, 2022 5:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: INTEGRACION CON DLL PARA CONECTAR CON DISPOSITIVOS ANVIZ
Replies: 27
Views: 2058

Re: INTEGRACION CON DLL PARA CONECTAR CON DISPOSITIVOS ANVIZ

... indicar ningun error. Actualmente lo estoy llamando asi: function EnlaceAnviz()                  public Anviz_handle:=0    public tipo:=1, iDx:=1, aDatos:=space(52), nLen:=0        ..................    nLen:=len(aDatos)    msginfo(CChex_Update(Anviz_handle,iDx,@tipo,@aDatos,@nLen))  ...
by Pg_cts
Tue Sep 06, 2022 11:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: INTEGRACION CON DLL PARA CONECTAR CON DISPOSITIVOS ANVIZ
Replies: 27
Views: 2058

Re: INTEGRACION CON DLL PARA CONECTAR CON DISPOSITIVOS ANVIZ

Llamandolo así me devuelve el error UNKNOWN Parameter Type! Por otro lado si no lo paso por referencia me echa del programa sin mensaje de error (Supongo que problema de memoria). En el ejemplo de C# hace la siguiente llamada AnvizNew.CChex_Update(anviz_handle, dev_idx, Type, pBuff, len); y pBuff lo...
by Pg_cts
Sun Sep 04, 2022 11:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: INTEGRACION CON DLL PARA CONECTAR CON DISPOSITIVOS ANVIZ
Replies: 27
Views: 2058

Re: Tdatabase & Filter

... to do a filter more complex 1) Init records 2) End records 3) month(data) 4) dow(data) 5) day(data) 6) monthly indices - I add a new filed to dbf IDX ( numeric 2) from 1 to 15 test.prg #include "fivewin.ch"FUNCTION Main()   RddSetDefault( "DBFCDX" )   SetHandleCount( ...
by Silvio.Falconi
Mon May 23, 2022 9:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tdatabase & Filter
Replies: 5
Views: 482

Re: How to programmatically change a TCBrowse column's width?

... ] ; [ MESSAGE <cMsg> ] ; [ VALID <uValid> ] ; [ ERROR [MSG] [MESSAGE] <cErr> ] ; [ <lite: NOBAR, NOHILITE> ] ; [ <idx: ORDER, INDEX, TAG> <cOrder> ] ;
by James Bott
Sat Sep 08, 2018 12:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to programmatically change a TCBrowse column's width?
Replies: 5
Views: 877

Re: como saber si el indice esta bien con su base de datos

Patricio Just curious .. I hope you are using the compound Cdx and not a single or multiple Idx(s) ? If you are using Idx .. only the OPEN index will be updated .. otherwise using Cdx .. when you complete an Append or Edit a record .. are you issuing a DbCommit() ? DbCommitt() ...
by Rick Lipkin
Wed Oct 25, 2017 9:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: como saber si el indice esta bien con su base de datos
Replies: 4
Views: 872

Re: Problem with texplorerbar and Calendar class

... ( cAlias )->END, ; ( cAlias )->DSTART, ; ( cAlias )->DSTART, ; ( cAlias )->TEXT, ; ( cAlias )->SUBJECT,; ( cAlias )->IDX, nColorText,; ColorData (( cAlias )->status ),; val(( cAlias )->status))
by Silvio.Falconi
Fri Apr 07, 2017 2:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with texplorerbar and Calendar class
Replies: 9
Views: 1304

Re: LEER ARCHIVO .DAT DE DELPHI DESDE FW

Priemero tienes que saber que tipo de fichero es. Por la pinta parece un DBF renombrado a DAT. Pero podría ser un fichero PARADOX. Del IDX podras presindir ya que por el sufijo parece de indices y eso no es relevante para MySQL. Para hacer pruebas renombre de .DAT a .DBF y lo abres con el ...
by joseluisysturiz
Sun Feb 12, 2017 5:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LEER ARCHIVO .DAT DE DELPHI DESDE FW
Replies: 2
Views: 909

Re: LEER ARCHIVO .DAT DE DELPHI DESDE FW

Priemero tienes que saber que tipo de fichero es. Por la pinta parece un DBF renombrado a DAT. Pero podría ser un fichero PARADOX. Del IDX podras presindir ya que por el sufijo parece de indices y eso no es relevante para MySQL. Para hacer pruebas renombre de .DAT a .DBF y lo abres con el ...
by xmanuel
Sun Feb 12, 2017 12:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LEER ARCHIVO .DAT DE DELPHI DESDE FW
Replies: 2
Views: 909

LEER ARCHIVO .DAT DE DELPHI DESDE FW

... hay una aplicacion desarrollada en Delphi, no se bajo que version, mi trabajo es leer, extraer y grabar datos en sus tablas que son .DAT y .IDX (conozco la estructura del archivo), asumiendo que eso son index y alimentar mis tablas en MYSQL, mi pregunta es...existe alguna manera directa ...
by joseluisysturiz
Sat Feb 11, 2017 4:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LEER ARCHIVO .DAT DE DELPHI DESDE FW
Replies: 2
Views: 909

Re: Grabar en tablas relacionadas en Mysql

We are going off-topic for this post. Better you create another thread for similar topics. FWAdoCreateTable( "test", { { "PROG", "N", 5, 0 }, { "NAME", "C", 30, 0 } }, oCn ) inserts one auto-increment column ID as the first column and as primary key....
by nageswaragunupudi
Tue Mar 17, 2015 2:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Grabar en tablas relacionadas en Mysql
Replies: 10
Views: 2124

Re: Advantage

jorge yo utilizo dbf e idx con la encriptacion de ads que es fantastica los ntx no te permiten usar los scope que son rapidisimos /* ******************** * Llamar al RDD * ******************** REQUEST _ADS ************************************************* ...
by postinelli
Wed May 14, 2014 5:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Advantage
Replies: 2
Views: 609

Re: Temporary Indexes

Bayron I have never used the TEMP option .. I kinda like to know where my files are being created, their names either .idx or .cdx. Please consider this code .. // this needs to be in your main.prgREQUEST DBFCDXrddsetdefault( "DBFCDX" )Local FundDbf,dbf_stru// create ...
by Rick Lipkin
Tue Mar 05, 2013 2:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Temporary Indexes
Replies: 15
Views: 3132

Re: Clausula "ON CHANGE" en xbrowse

... <aHeaders,...> ] ; [ <pic: PICS, PICTURE, PICTURES> <aPics,...> ] ; [ <cols: COLS, COLUMNS> <aCols,...> ] ; [ <idx: SORT,ORDERS> <aSort,...> ] ; [ JUSTIFY <aJust,...> ] ; [ SIZE <nWidth>, <nHeigth> ] ; [ ID <nID> ] ; [ <dlg:OF,DIALOG> ...
by MarioG
Wed Aug 01, 2012 2:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clausula "ON CHANGE" en xbrowse
Replies: 5
Views: 1324
Next

Return to advanced search