Search found 28 matches: aidx

Return to advanced search

CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE

... el que me ayuden como se hace eso.. FUNCTION MENU_PRODUCTO(cEmpresa,cUsuario) Local oDlg, oBrw, oFont2, oCol, oSay, oBtn2[ 9 ] LOCAL oGet,nIndex,aIdx:={} LOCAL cBusca:= Space(60) Local cSeek:="" Local oCampo, cCampo :=space(50) cTab_Art:=xServer:Query("SELECT a.*, b.*, c.* FROM ...
by kpidata
Fri Sep 01, 2023 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE
Replies: 1
Views: 309

evitar que se active columna con xbrowse al dar un click

... el que me ayuden como se hace eso.. FUNCTION MENU_PRODUCTO(cEmpresa,cUsuario) Local oDlg, oBrw, oFont2, oCol, oSay, oBtn2[ 9 ] LOCAL oGet,nIndex,aIdx:={} LOCAL cBusca:= Space(60) Local cSeek:="" Local oCampo, cCampo :=space(50) cTab_Art:=xServer:Query("SELECT a.*, b.*, c.* FROM ...
by kpidata
Fri Sep 01, 2023 7:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 994

Re: problem with dbUseArea

Hi Last comma makes an blank line to array, and than aIdx(i,1) is empty for dbusearea where i=2 -works correct for i=1 but len(aIdx)=2 and then crash! ::aIdx := { ; { "CUSTOMER" , { { "Upper(First)" , "First" , "Customer" ...
by Silvio.Falconi
Mon Apr 17, 2023 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 753

Re: problem with dbUseArea

Hi Last comma makes an blank line to array, and than aIdx(i,1) is empty for dbusearea where i=2 -works correct for i=1 but len(aIdx)=2 and then crash! ::aIdx := { ; { "CUSTOMER" , { { "Upper(First)" , "First" , "Customer" ...
by alerchster
Sun Apr 16, 2023 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 753

Re: problem with dbUseArea

Hi The error comes from :: aIdx -> Len (::aIdx) result 2 This code works :-) #include 'fivewin.ch'#include "constant.ch"#INCLUDE "DIRECTRY.CH"REQUEST DBFCDX*MEMVAR oAppFunction Main()   local cPathDbf:=".\data\"  ...
by alerchster
Fri Apr 14, 2023 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 753

Re: problem with dbUseArea

Antonio Linares wrote:Dear Silvio,

param i seems to be nil


ok but How I can resolve ?
there is for i:= 1 to...

If i>LEN( ::aIdx )
exit
endif

I not understood before it run ok , now suddenly I went to recompile and it doesn't work how is it possible ?
by Silvio.Falconi
Fri Apr 14, 2023 10:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 753

problem with dbUseArea - resolved -

DbUseArea( .F. ,"DBFCDX", ::aIdx[ i, 1 ],, .F. ) // not work Error    Time from start: 0 hours 0 mins 1 secs    Error occurred at: 04/13/23, 11:21:28   Error description: Error BASE/1068  Argument error: array access   Args:     [ ...
by Silvio.Falconi
Thu Apr 13, 2023 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 753

OrdCreate with Tdatabase

I must a procedure to create the index for many dbfs It run ok I save all nfo into an array aIdx    local bCode   local cfor := "!Deleted()"   local bFor := "{ || " + cfor + "}"FOR i := 1 TO LEN( ::aIdx )        DbUseArea( .F. ...
by Silvio.Falconi
Sat Jan 22, 2022 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OrdCreate with Tdatabase
Replies: 2
Views: 219

OrdCreate resolved !!

How I can Order with ordcreate the condition "!deleted()" ? I made I insert all ::aIdx on an array type { "RESERVA" , { { "Rooms_id+Dtos(Check_in)" , "room_in" , "Reserva" } } } FOR i := 1 TO LEN( ::aIdx ) DbUseArea( .F. ...
by Silvio.Falconi
Thu May 06, 2021 7:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: OrdCreate resolved !!
Replies: 1
Views: 398

Xbrowse, Mysql y Tdolphin.. error de orden..

... FUNCTION ING_INVENTARIO_GENERAL(cEmpresa, cUsuario) local oDlg, oBrw, oFont2, oCol, oSay, oBtn2[ 9 ], oBoton1, oBoton2, oBoton3 LOCAL oGet,nIndex,aIdx:={} LOCAL cBusca:= Space(60) Local cSeek:="" Local oCampo, cCampo :=space(50), Mensaje Mensaje:="Stock Inventario General" ...
by kpidata
Tue Dec 17, 2019 12:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, Mysql y Tdolphin.. error de orden..
Replies: 1
Views: 800

Re: xBrowse edit dialog and navigation

... "TAG03"}) oCustomers: SetOrder ("TAG01") oCustomers: gotop () but i don't know how i did it with Function OpenData (cDbf, aIdx) LOCAL oDbf Locals oDbf: = TDatabase (): Open (nil, cDbf, "DBFCDX", .T.) IF VALTYPE (aIdx) == "A" FOR i: = 1 TO LEN (aIdx) ...
by Silvio.Falconi
Sat Jun 01, 2019 7:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse edit dialog and navigation
Replies: 26
Views: 3943

Re: to Nages: test for tdatabase

... I insert the indexes. You could not create a function that would give me the return of the archive and the loading of the its indexes in an array aIdx? If you are using CDXs they are all opened automatically. And if you are using objects the database and indexes are opened automatically even if ...
by James Bott
Thu May 09, 2019 4:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5620

Re: to Nages: test for tdatabase

... I insert the indexes. You could not create a function that would give me the return of the archive and the loading of the its indexes in an array aIdx? On this page I saw a function to open an archive with tdatabase http://forums.fivetechsupport.com/viewtopic.php?f=3&t=37103&start=0 ...
by Silvio.Falconi
Thu May 09, 2019 3:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5620

Re: questions manage dbf

... it's not easy I have a dbf named Dbase.dbf where I inserted all the dbf / cdx and more when I do oDCli: = Open_Dbf ("Customer",. t..f.aIdx, .t.) means that the archive is in the folder. \ 2013 \ data if instead I make Open_dbf ("dbase") the file is in root obviously oDli ...
by Silvio.Falconi
Wed Oct 03, 2018 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: questions manage dbf
Replies: 17
Views: 3815

error ORDBAGNAME, con mysql tdolphin y xbrowse

... este es parte del codigo FUNCTION Menu_Marca_Extintores(cEmpresa,cUsuario) Local oDlg, oBrw, oFont2, oCol, oSay, oBtn2[ 9 ] LOCAL oGet,nIndex,aIdx:={} LOCAL cBusca := Space(60) Local cSeek:="" cExt_Mar:=XServer:Query("SELECT cod_mar, nom_mar FROM ext_mar ORDER BY cod_mar") ...
by kpidata
Fri Aug 24, 2018 12:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: error ORDBAGNAME, con mysql tdolphin y xbrowse
Replies: 1
Views: 739
Next

Return to advanced search