Search found 29 matches: name1

Return to advanced search

GET Method

... This is what would be more or less And then in my web application, just like this ... myparameter: = PValue (1) Please call like this: index.prg?name1=value1&name2=value2 your index.prg function Main()   local hPairs :=  AP_Args()     ? ValToChar( ...
by Otto
Thu Apr 02, 2020 12:02 pm
 
Forum: mod_harbour
Topic: GET Method
Replies: 0
Views: 204

Re: How manually mapping a field to TDatabase

... for many years. To be exact, from FWH 10.02 onwards. oDbf:MapCol( cFieldName, cUserFriendlyName ) or oDbf:MapCol( { { "fld1", "name1" }, .... { "fldN","nameN" } } ) Small Sample:   local oDbf   oDbf  := TDatabase():Open( nil, "STATES", ...
by nageswaragunupudi
Sat Feb 23, 2019 11:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How manually mapping a field to TDatabase
Replies: 3
Views: 829

Re: Filter doubt in xbrowse

... DBF 1 ------------------------- STATIC FUNCTION SET_SCOPE(cMonth) // the selected service-DBF ( Jan - Dec ) LOCAL cNName := UPPER((CUSTOMER)->NAME1) + UPPER((CUSTOMER)->NAME) // the cusomer name from DBF 1 to filter DBF 2 DBSELECTAREA( cMonth ) // DBF 2 (cMonth)->( ORDSCOPE( 0, NIL ) ...
by Wanderson
Mon Mar 19, 2018 11:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter doubt in xbrowse
Replies: 2
Views: 842

Re: Filter doubt in xbrowse

... DBF 1 ------------------------- STATIC FUNCTION SET_SCOPE(cMonth) // the selected service-DBF ( Jan - Dec ) LOCAL cNName := UPPER((CUSTOMER)->NAME1) + UPPER((CUSTOMER)->NAME) // the cusomer name from DBF 1 to filter DBF 2 DBSELECTAREA( cMonth ) // DBF 2 (cMonth)->( ORDSCOPE( 0, NIL ) ...
by ukoenig
Mon Mar 12, 2018 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filter doubt in xbrowse
Replies: 2
Views: 842

Re: A xbrowse question to show a section with different values

... ) is exactly meant for this purpose only. First create browse like this: @ r,c XBROWSE oBrw <clauses> ; COLUMNS ; "NR", "NAME1", "NAME", "SIGNAL", ; 1, 2, 3, 4 "M_TOUR", "M_ZEIT", "M_MERKER" , ; 5, 6, 7 "N_TOUR", ...
by nageswaragunupudi
Sat Apr 02, 2016 9:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A xbrowse question to show a section with different values
Replies: 7
Views: 1820

Re: A xbrowse question to show a section with different values

Cristobal, Yes I think a column-data replacement is the better solution I tested at startup moving columns ( works ) // "NR", "NAME1", "NAME", "SIGNAL", ; 1, 2, 3, 4 // "M_TOUR", "M_ZEIT", "M_MERKER" , ; 5, 6, 7 // "N_TOUR", ...
by ukoenig
Sat Apr 02, 2016 11:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A xbrowse question to show a section with different values
Replies: 7
Views: 1820

A xbrowse question to show a section with different values

... aDatT[1] := TRIM(("KUNDE")->ANREDE) aDatT[2] := TRIM(("KUNDE")->NAME) + " " + TRIM(("KUNDE")->NAME1) aDatT[3] := ("KUNDE")->ANSCHRIFT aDatT[4] := TRIM(("KUNDE")->PLZ) + " " + TRIM(("KUNDE")->ORT) ...
by ukoenig
Sat Apr 02, 2016 11:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A xbrowse question to show a section with different values
Replies: 7
Views: 1820

Re: Xbrowse a speed problem using SCOPE ?

Uwe, OK, I have found what is going on. These two lines are not equivalent: set relation to upper(name1) into "serv" ORDSETRELATION("serv", {|| cust->name1}, "Serv->name1") ORDSETRELATION() does add a scope, but SET RELATION does not. ...
by James Bott
Tue Mar 01, 2016 9:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 8980

Re: Xbrowse a speed problem using SCOPE ?

... ) NET_USE ( c_Pfad + "KUNDE.dbf", "KUNDE", 3, .T. ) DBSELECTAREA("KUNDE") ORDCREATE( ,"KUNDE1","UPPER(NAME1 + NAME)", ; {|| UPPER(NAME1 + NAME) } , .F. ) NET_USE ( c_Pfad + cMonat + ".dbf", "VPOS12", 3, .T. ) ORDCREATE( ,"VPOS12", ...
by ukoenig
Tue Mar 01, 2016 6:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 8980

Re: Xbrowse a speed problem using SCOPE ?

... to do some calculations on button < SAVE > FUNCTION PAT_GET() aDatP[1] := ("KUNDE")->ANREDE aDatP[2] := ("KUNDE")->NAME1 aDatP[3] := ("KUNDE")->NAME aDatP[4] := ("KUNDE")->ANSCHRIFT aDatP[5] := ("KUNDE")->PLZ aDatP[6] := ("KUNDE")->ORT ...
by ukoenig
Fri Feb 26, 2016 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 8980

Re: Xbrowse a speed problem using SCOPE ?

James,

WITHOUT using Scope ( 2. screenshot ) shows better results.

Instad using SCOPE I can activate
( "KUNDE" )->( ORDSETRELATION( cMonat, { || UPPER(NAME1 + NAME) }, "UPPER(NAME1 + NAME)" ) )
as a test

regards
Uwe :?:
by ukoenig
Fri Feb 26, 2016 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 8980

Xbrowse a speed problem using SCOPE ?

... row of SERVICES shows 38 fields As well the FOLDER-page is updated // CUSTOMERS REDEFINE XBROWSE oBrw1 ID 110 OF oDlg1 AUTOSORT ; COLUMNS { "NAME1", "NAME", "PFLSTUFE", "MERKER", "VARIANTE" } ; ALIAS "KUNDE" SET ORDER TO TAG KUNDE1 ... ...
by ukoenig
Fri Feb 26, 2016 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 8980

A problem xBrowse and RELATION of 2 DBF's

... "KUNDE" ) ( "KUNDE" )->(DBSETORDER( "KUNDE1" )) ( "KUNDE" )->( ORDSETRELATION( cMonat, { || UPPER(NAME1 + NAME) }, "UPPER(NAME1 + NAME)" ) ) ( "KUNDE" )->( DBGOTOP() ) After selecting a row in browser 2, the values are displayed ...
by ukoenig
Fri Nov 27, 2015 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem xBrowse and RELATION of 2 DBF's
Replies: 5
Views: 1271

Re: possible xBrowse-refresh with another Dbf ?

... "KUNDE" ) ( "KUNDE" )->(DBSETORDER( "KUNDE1" )) ( "KUNDE" )->( ORDSETRELATION( cMonat, { || UPPER(NAME1 + NAME) }, "UPPER(NAME1 + NAME)" ) ) ( "KUNDE" )->( DBGOTOP() ) Browser 2 ( month with relation on names ) DBSELECTAREA( ...
by FranciscoA
Fri Aug 07, 2015 7:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: possible xBrowse-refresh with another Dbf ?
Replies: 13
Views: 3560

possible xBrowse-refresh with another Dbf ?

... "KUNDE" ) ( "KUNDE" )->(DBSETORDER( "KUNDE1" )) ( "KUNDE" )->( ORDSETRELATION( cMonat, { || UPPER(NAME1 + NAME) }, "UPPER(NAME1 + NAME)" ) ) ( "KUNDE" )->( DBGOTOP() ) Browser 2 ( month with relation on names ) DBSELECTAREA( ...
by ukoenig
Fri Aug 07, 2015 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: possible xBrowse-refresh with another Dbf ?
Replies: 13
Views: 3560
Next

Return to advanced search