Search found 30 matches: naam

Return to advanced search

Re: Extending SetScope()

... is it also nessesary to change how the filter will be created ? Current filter : "WIC" $ UPPER( TAG ) .AND. "POLO" $ UPPER( NAAM ) .AND. "WHITE" $ UPPER( KLEUR )
by Marc Venken
Sun Oct 20, 2024 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 1234

Re: Extending SetScope()

... it is fast. Have you acode snipped where you use Xbrowse Header gets and use temp index instead of filter. You would make local ... Field Tag, Naam, Kleur Filter = "WIC" $ UPPER( TAG ) .AND. "POLO" $ UPPER( NAAM ) .AND. "WHITE" $ UPPER( KLEUR ) Index will be like ...
by Marc Venken
Sun Oct 20, 2024 1:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 1234

Re: Extending SetScope()

... with 380.000 records, 32 fields and 7 tags. (242 Megabite) the filter look like : "WIC" $ UPPER( TAG ) .AND. "POLO" $ UPPER( NAAM ) .AND. "WHITE" $ UPPER( KLEUR ) This filter is build with the above function Marc_Setfilter using Xbrowse header gets. The active tag ...
by Marc Venken
Sun Oct 20, 2024 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 1234

Re: ampersand

example:
select products
goto top
do while .NOT. eof()
cnaam=TRIM(products->naam) to transform in his real fieldname

select sales
append blank
replace sales->fieldname with ....

select products
skip 1

enddo
by jds
Mon Mar 27, 2023 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ampersand
Replies: 13
Views: 2224

ampersand

... commands become the real record names? select products a=5 b=5.8 set filter to products->niet=" " goto top do while .NOT. eof() cnaam2=TRIM(products->naam) nalias=TRIM(products->alias) @ a,5 say cnaam OF oDlg FONT oFont @ b,12 get nalias OF oDlg SIZE 20,11 picture "999" ...
by jds
Tue Mar 21, 2023 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ampersand
Replies: 13
Views: 2224

Re: FW_ExceltoDbf version in FW 2102

is working : aConvert = { { "code", "A" }, { "naam", "B" } } is working : aConvert = { { "code", 1 }, { "naam", 2 } } Good. is Not working : aConvert = { { "code", "id" }, { "naam", ...
by nageswaragunupudi
Sun Mar 28, 2021 4:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_ExceltoDbf version in FW 2102
Replies: 19
Views: 4137

Re: FW_ExceltoDbf version in FW 2102

I noticed this : is working : aConvert = { { "code", "A" }, { "naam", "B" } } is working : aConvert = { { "code", 1 }, { "naam", 2 } } is Not working : aConvert = { { "code", "id" }, { "naam", ...
by Marc Venken
Sat Mar 27, 2021 11:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_ExceltoDbf version in FW 2102
Replies: 19
Views: 4137

Bad workaround for code that i can't get working

... tried to get this code working the correct way. It is probably simple, but i have a bad day i think :twisted: I have a Xbrowse with a field "NAAM". That field will be splitt into a array to have every single word (hb_aTokens) Then there will be build btnbmp's for every word. Klikken ...
by Marc Venken
Sat Mar 20, 2021 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bad workaround for code that i can't get working
Replies: 2
Views: 500

Re: memvar

... situation? The compiling is OK but when launching I got an error message ..... select temp2 goto top do while .NOT. eof() calias:=temp2->alias cnaam:=temp2->naam select temp1 sum all temp1->&( calias ) to ntotalias oPrn:say(nRow, 10*fntArial2:nWidth, cnaam, fntArial3) oPrn:say(nRow, ...
by jds
Wed Jul 15, 2020 1:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: memvar
Replies: 12
Views: 1588

Re: FW Lookup function (where to find)

... to find all values of the selected record Result shoud be the values of the folowing fields... aData[1,1] = Code .or. aData[1] = code aData[1,2] = Naam ..... rest of all the fieldnames = Value function Testobj()   local cText,oXmlDoc,oXmlIter,oTagActual   local nDepth, nDone:=0, cData:=""  ...
by Marc Venken
Sat May 02, 2020 6:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW Lookup function (where to find)
Replies: 5
Views: 706

Re: DBF to CSV - converter 3.1 ( Update )

... do You get the field-type infos and sizes from. regards Uwe :?: Uwe, My csv files that I receive always include a first line with headers : Code,Naam,Prijs,Maatplus,Minafn,Verpak,Stock 11103250,splitleder amerikaantje gestr.palmverst.,Prijs op aanvraag,,12,120,V 11105100,rundsplit geel gev. gestr.kap,Prijs ...
by Marc Venken
Wed Aug 07, 2019 7:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to CSV - converter 3.1 ( Update )
Replies: 50
Views: 16115

Re: Preload data for using Xbrouwe EditSource(.T.)

// Here I want based on the current colomn to put the Seek data in that field /* if oBrw:oCol() = 2 oRec:SetDefault( "naam_1", oBrw:cSeek ) elseif oBrw:oCol() = 3 oRec:SetDefault( "straat", oBrw:cSeek ) oRec:SetDefault( oBrw:SelectedCol():cExpr, oBrw:cSeek )  It ...
by nageswaragunupudi
Thu May 02, 2019 2:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preload data for using Xbrouwe EditSource(.T.)
Replies: 11
Views: 2200

Xbrowse oCol assigment with variabel Headers

... I was able to have a dynamic header in xbrowse based on the active year : J_2019, J_2018, J_2017,... (So this works) oBrw[1]:cHeaders := { 'Code','Naam','Gemeente','Dat_LST','J_'+str(year(date()),4),'J_'+str(year(date())-1,4),'J_'+str(year(date())-2,4),'J_'+str(year(date())-3,4),'J_'+str(year(date())-4,4),'Totaal' ...
by Marc Venken
Thu Jan 31, 2019 11:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse oCol assigment with variabel Headers
Replies: 1
Views: 557

Re: oCn:insert - Not inserting data

oCn:Insert(...) works in all versions. Please see this part of your code: { oBrw:naam, oBrw:voornaam, oBrw:p2017, cPloeg, date() }  oBrw:naam returns the column object, not value. That is the error. You should be using { oBrw:naam:Value, ...
by nageswaragunupudi
Sun Jun 04, 2017 1:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCn:insert - Not inserting data (SOLVED)
Replies: 4
Views: 928

Re: oCn:insert - Not inserting data

... to insert a new row in a database 'changes' so I can trace changes that have been made by others. oCn:Insert( "changes", "bond, naam, voornaam,oldploeg,newploeg,datum", { oBrw:naam, oBrw:voornaam, oBrw:p2017, cPloeg, date() } ) The insert should do this, but nothing happens ...
by Marc Venken
Sat Jun 03, 2017 6:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oCn:insert - Not inserting data (SOLVED)
Replies: 4
Views: 928
Next

Return to advanced search