Search found 21 matches: aflds

Return to advanced search

Re: lIncrFilter + MDI

... "BR" )} ACTIVATE WINDOW oWnd return nil Function Test() local oDlg, oBrw, oFont, nWild := 2 local cList, aFlds, aHdrs local nChoice, uDataSource local cAlias,oWndChild cList := "First,Last,Street,State,HireDate" cAlias = cGetNewAlias( cFileNoExt("CUSTOMER.DBF" ...
by cpheraclio
Sun Jun 04, 2023 11:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lIncrFilter + MDI
Replies: 4
Views: 369

Re: XBrowse: Using Get for incremental Seek/Filters

... this evening I saw on 7471 (xbrowse) I insert the same text on xbrowse as the fields @ 30,10 XBROWSE oBrw SIZE -10,-10 PIXEL OF oDlg ; COLUMNS aFlds HEADERS aFlds ; DATASOURCE uDataSource AUTOSORT CELL LINES NOBORDER but the search take the name of the Items of combobox https://i.postimg.cc/sgQXK08t/hj.jpg
by Silvio.Falconi
Wed Dec 30, 2020 10:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3791

Re: XBrowse: Using Get for incremental Seek/Filters

... that name to oBrw:cFilterFld. Rao, U're right but on sample test (xbincflt.prg) I assign the field name on oBrw:cFilterFld with oBrw:cFilterFld:=aFlds[::nat] , what is wrong ? @ 10, 10 COMBOBOX oBrw:cFilterFld ;      ITEMS aHdrs ;      ON CHANGE (   CUST->(OrdSetFocus(::nat)),;  ...
by Silvio.Falconi
Wed Dec 30, 2020 9:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: Using Get for incremental Seek/Filters
Replies: 32
Views: 3791

TDatabase FWH 17.08 : Datas and Methods

... 6. AddIndex( cFile, cTag ) Adds new index file. Use with NTX files 7. AnsiToOem() Internal Internally used when ::lOemToAnsi is .T. 8. Append( [aFlds], [aVals] ) --> lSuccess Usage 1: Append() without parameters: Appends a blank record and returns success This usage is consistent with all ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1782

New FTDN July 2017 (FWH 17.07)

... for edit/save Note: RecordObject is TDataRow object - Edit( [cFieldList], [lNew] ) --> Edit Dialog for editing/saving a record - Update( aFlds, aVals ) --> lSuccess Modifies an existing record, writing aVals to corresponding aFlds Alternative Syntaxes: Update( cFieldList, aVals ) --> ...
by Antonio Linares
Sun Aug 13, 2017 8:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN July 2017 (FWH 17.07)
Replies: 5
Views: 2899

TDatabase class WIKI

... for edit/save Note: RecordObject is TDataRow object - Edit( [cFieldList], [lNew] ) --> Edit Dialog for editing/saving a record - Update( aFlds, aVals ) --> lSuccess Modifies an existing record, writing aVals to corresponding aFlds Alternative Syntaxes: Update( cFieldList, aVals ) --> ...
by nageswaragunupudi
Wed Aug 02, 2017 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase class WIKI
Replies: 4
Views: 747

Re: Error tecnical with xbincflt.prg

... read from oGRid the fields and the headers because it the user change the state ( hide a column) I wish use // to calc the fields and the headers aFlds :=array( nLen ) aHdrs:= array( nLen ) FOR n = 1 TO nLen aFlds [ n ]:= oGrid:aCols[ n ]:cExpr aHdrs [ n ]:= oGrid:aCols[ n ]:cHeader NEXT instead ...
by Silvio.Falconi
Wed Jun 10, 2015 2:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error with xbincflt.prg
Replies: 2
Views: 834

To Mr Rao :xbincflt.prg

... change the test sample xbincflt.prg I wish insert on a one menupopup all comboboxes it is possible ? type MENU oMenuSearch POPUP For i := 1 to Len(aFlds) bAction := ... MENUITEM RTrim(aFlds[i]) BLOCK bAction Next SEPARATOR MENUITEM "Starting With" MENUITEM "Containing" endmenu
by Silvio.Falconi
Mon Jun 08, 2015 8:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mr Rao :xbincflt.prg
Replies: 0
Views: 305

Re: Creating Acces Table with numeric value SOLVED

cQuery += aFlds[ i, DBS_NAME ] + " NUMERIC ( " + NTRIM( aFlds[ i, DBS_LEN ] + 1 ) + ", " + NTRIM( aFlds[ i, DBS_DEC ] ) + " ), " Should be : cQuery += aFlds[ i, DBS_NAME ] + " NUMERIC ( " ...
by Franklin Demont
Wed Jul 03, 2013 9:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating Acces Table with numeric value
Replies: 8
Views: 1634

Creating Acces Table with numeric value

Hello, I have a problem with a numeric column , using CASE cType = "N" cQuery += aFlds[ i, DBS_NAME ] + " NUMERIC ( " + NTRIM( aFlds[ i, DBS_LEN ] + 1 ) + ", " + NTRIM( aFlds[ i, DBS_DEC ] ) + " ), " to build the table. I tryed ...
by Franklin Demont
Tue Jul 02, 2013 5:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating Acces Table with numeric value
Replies: 8
Views: 1634

Creating Acces Table from dbf : working example + discussio

... key cSQL += ...... This can not be done with a arbitrarily choosen dbf. Enrico has a routine to build this statement.     FOR i = 1 TO LEN( aFlds )                cType = aFlds[ i, DBS_TYPE ]                IF cType <> "M" .OR. cMot <> "MYSQL"  ...
by Franklin Demont
Mon Jul 01, 2013 12:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating Acces Table from dbf : working example + discussio
Replies: 0
Views: 561

xBrowse + MySql and column sequence ...

... used Hernans wbrowse class adopted for mine needs . Then I could create array for codeblocks in needfuls sequence and oBrw:bLine := { || brw_line( aFlds) } works fine ... OK , let say that I retored needful sequence columns for client . From MySql server query I can to do : aDgr := grd_set( cTbl, ...
by Rimantas
Thu Feb 28, 2013 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + MySql and column sequence ...
Replies: 7
Views: 2000

Re: Migrar a XBrowse

... "Send16" ) :AddResource( "" ) :bStrData := {|| "" } :bBmpData := {|| if( ( dbfFamilia )->lSelDoc, 1, 2 ) } //::aFlds[ n ] :lBmpStretch := .f. :cHeader := "V" :nWidth := 17 end with Muchas Gracias. Manuel Calero Solís. http://www.apolosoftware.com
by manuelcalerosolis
Sat Jan 17, 2009 12:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar a XBrowse
Replies: 9
Views: 2042

Migrar a XBrowse

... // Creacion de columnas ---------------------------------------------------- for n := 1 to ( ::nFlds ) oCol := ::oBrw:AddCol() if Valtype( Eval( ::aFlds[ n ] ) ) == "N" oCol:bBmpData := ::aFlds[ n ] else oCol:bStrData := ::aFlds[ n ] end if No me da errores pero no me muestra el bitmap, ...
by manuelcalerosolis
Fri Jan 16, 2009 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar a XBrowse
Replies: 9
Views: 2042

Re: FOR ... GET ...NEXT

I had a same problem in FW1.9.2 and I solved it by replacing aGets array with vars: for nGt := 1 to len( aFlds ) cFld := aFlds[ nGt ] xVar="x"+strzero(nGt,3) @ nRw, nCol GET oGets[ nGt ] VAR &xVar ..... next I hope that it works in FW for Harbour too Yes Goran , your sample ...
by Rimantas
Fri Oct 28, 2005 12:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Array of gets
Replies: 11
Views: 4732
Next

Return to advanced search