Search found 77 matches: ordwildseek

Return to advanced search

Re: XBROWSE Column Question

Here is a sample for ordwildseek. It's new to me.... https://forums.fivetechsupport.com/viewtopic.php?f=3&t=39965 Mr. Venken OrdWildSeek( cSeek, ... ) is actually an (x)Harbour function in DBFNTX and DBFCDX RDDs, applicable for ...
by nageswaragunupudi
Wed May 10, 2023 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: XBROWSE Column Question

Here is a sample for ordwildseek. It's new to me....

viewtopic.php?f=3&t=39965
by Marc Venken
Wed May 10, 2023 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: XBROWSE Column Question

when usig OrdWildSeek() in XBROWSE how to "continue" :?: i did not found a 2nd OrdWildSeek() or a loop No need for 2nd call or loop. OrdWildSeek(oBrw:cSeek, oBrw:lSeekNext ) works for first seek and SeekNext ...
by nageswaragunupudi
Wed May 10, 2023 12:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: XBROWSE Column Question

... to use "Header - click" to SET Order / TAG :?: in METHOD SetOrder( lSort ) i found OrdDescend() how does OrdDescend() work :?: when usig OrdWildSeek() in XBROWSE how to "continue" :?: i did not found a 2nd OrdWildSeek() or a loop
by Jimmy
Tue May 09, 2023 8:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

Good idea. We will try to protect some more methods/datas.
Still we can not do it for all because some methods/datas are used both by the browse object and column object.

There are lots of examples of xbrowse in the forums and lastly we are always here to support you in every way.
by nageswaragunupudi
Mon May 08, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 276

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

hi

thx for Anwser

i´m still a Newbie and it is hard to learn when have no Documentation or Sample CODE

what do you think to declare Method as "PROTECT" if User should not use a Method "direct<"
by Jimmy
Mon May 08, 2023 12:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 276

Re: XBROWSE : Seek(), OrdwildSeek() and "increment"

XBrowse and TDataRow (alias FW_Record) work with all kinds of datasources viz., dbf, tdatabase, ado (any rdbms), dolphin, tmysql, fw-mysql, postgre, eagle, etc. This enables the application programmer to write highly portable code. He can use exactly the same code with any of these datasources. We h...
by nageswaragunupudi
Sat May 06, 2023 12:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 276

XBROWSE : Seek(), OrdwildSeek() and "increment"

... find no Sample for DBF does it have a "own" GET or does it use INKEY() or do i have to write my "own" Input-Box :?: --- i saw OrdWildSeek() using ::lSeekWild in METHOD RddIncrSeek() should i use   METHOD RddIncrSeek( cseek, uSeek ) instead of   METHOD Seek( cSeek ...
by Jimmy
Fri May 05, 2023 7:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Seek(), OrdwildSeek() and "increment"
Replies: 3
Views: 276

Re: dbfntx very slow with 2+ users

... on left Side if you have a FILTER to search "in String" like   "ABC" $ CUSTOMER->NAME you can Speed-Up when use Index and OrdWildSeek()   ORDSETFOCUS( "ALLETELNO" )   GO TOP   DO WHILE ORDWILDSEEK( "*" + ALLTRIM( cSeek ) + "*", ...
by Jimmy
Mon Apr 11, 2022 12:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfntx very slow with 2+ users
Replies: 41
Views: 6803

Re: MariaDB FWMaria OrdWildSeek (Solved)

Thanks for the help Nages.

Perfect!
by ctoas
Wed Feb 10, 2021 12:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB FWMaria OrdWildSeek (Solved)
Replies: 4
Views: 446

Re: MariaDB FWMaria OrdWildSeek

... FONT oFont   @ 20, 20 GET oGet VAR cSeek SIZE 300,26 PIXEL OF oDlg UPDATE   oGet:bChange := <||      if oRs:OrdWildSeek( "*" + Trim( oGet:oGet:buffer ) + "*" )         oBrw:Refresh()  ...
by nageswaragunupudi
Wed Feb 10, 2021 5:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB FWMaria OrdWildSeek (Solved)
Replies: 4
Views: 446

Re: MariaDB FWMaria OrdWildSeek

Hi Nages, Seeking for the next occurrence: Code: Select all Expand view nSaveRec := oRs:RecNo() oRs:Skip( 1 ) if oRs:OrdWildSeek( cSeek, .t. ) oBrw:Refresh() else oRs:GoTo( nSaveRec ) MsgInfo( "not found" endif Unfortunately it didn't work, the skip runs, but OrdWildSeek ...
by ctoas
Tue Feb 09, 2021 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB FWMaria OrdWildSeek (Solved)
Replies: 4
Views: 446

Re: MariaDB FWMaria OrdWildSeek

Seeking for the first occurrence: if oRs:OrdWildSeek( cSeek )   oBrw:Refresh()else   MsgInfo( "not found" )endif Seeking for the next occurrence: nSaveRec := oRs:RecNo()oRs:Skip( ...
by nageswaragunupudi
Tue Feb 09, 2021 8:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB FWMaria OrdWildSeek (Solved)
Replies: 4
Views: 446

MariaDB FWMaria OrdWildSeek (Solved)

...   LOCAL cCHAVEPESQUISA := ""    cCHAVEPESQUISA:=(_oGetPesquisa:oGet:Buffer)       _oRS:ORDWILDSEEK("*"+ALLTRIM(cCHAVEPESQUISA)+"*",.F.)    _oBrwPESQUISA:REFRESH()    RETURN NIL  ********************************************************************************STATIC ...
by ctoas
Tue Feb 09, 2021 1:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB FWMaria OrdWildSeek (Solved)
Replies: 4
Views: 446

Re: Una pregunta muy tonta

Lo he resuelto utilizando ordwildseek(): function modificacampo()   local osay,oget,oDlg,i,oboton,oboton1,oini   local cfecha,cnombre,cimporte:=0,continua:=.F.   cfecha := CTOD ("01/01/"+Right(DtoC(Date()),2))  ...
by JoseLuis
Thu Oct 04, 2018 4:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Una pregunta muy tonta
Replies: 4
Views: 1090
Next

Return to advanced search