Search found 13 matches: uvalue1

Return to advanced search

Re: xBrowse & SELECT parameter

... in the statement #xcommand: #xcommand @ <nRow>, <nCol> [ COLUMN ] XBROWSE <oBrw> ; ... the line: [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] ; should be deleted Your thougths please... Regards, Euclides
by Euclides
Mon Mar 23, 2015 2:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse & SELECT parameter
Replies: 10
Views: 2315

Re: Clausula "ON CHANGE" en xbrowse

... ] ; [ SIZE <nWidth>, <nHeigth> ] ; [ ID <nID> ] ; [ <dlg:OF,DIALOG> <oWnd> ] ; [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] ; [ <change: ON CHANGE, ON CLICK> <uChange> ] ; ... Vos deberías usar oBrw:bChange:= {|| ... } (porque ...
by MarioG
Wed Aug 01, 2012 2:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clausula "ON CHANGE" en xbrowse
Replies: 5
Views: 1324

XBROWSE : SELECT clausule in xbrowse.ch

... the select clausule in xbrowse.ch #xcommand @ <nRow>, <nCol> [ COLUMN ] XBROWSE <oBrw> .... ; [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] ; Taking Testxbr3.prg as sample , i changed in RddBrwAllColsWin : @ 0,0 XBROWSE oBrw OF ownd ALIAS cAlias ; AUTOSORT ...
by Demont Brecht
Fri Mar 30, 2012 7:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : SELECT clausule in xbrowse.ch
Replies: 1
Views: 533

Antonio,

Thanks.

I'll try it.

in: SELECT <cField> FOR <uValue1> [ TO <uValue2>]

How do I write cField? is it the name of the field or in " "
and, the uValue1 - is it an expression the returns true / false?


Moshe Yarden
by yardenmo
Thu Sep 18, 2008 1:09 pm
 
Forum: FiveWin for Pocket PC
Topic: Using ListBox
Replies: 14
Views: 2601

Moshe, > I was trying: SELECT <cField> FOR <uValue1> [ TO <uValue2>] In order to use that clause, you need to have an index built with the expression to be searched. Alternatively you can use OrdScope() to set a top and bottom range ...
by Antonio Linares
Thu Sep 18, 2008 11:57 am
 
Forum: FiveWin for Pocket PC
Topic: Using ListBox
Replies: 14
Views: 2601

Using ListBox

... "MasLoad->Manifest == cManifest .and. MasLoad->TalyFlag" where Manifest is C and TalyFlag is L I was trying: SELECT <cField> FOR <uValue1> [ TO <uValue2>] But I'm doing something wrong. *. Is there a way to use something like AChoice()? *. Is there a picklist that does ...
by yardenmo
Thu Sep 18, 2008 11:50 am
 
Forum: FiveWin for Pocket PC
Topic: Using ListBox
Replies: 14
Views: 2601

... code block to change the // behavior of pressed keys DATA cAlias // data base alias or "ARRAY" or "TEXT_" DATA cDriver // RDD in use DATA cField, uValue1, uValue2 // SetFilter Params DATA cOrderType // index key type for seeking DATA cPrefix // used by TSBrowse search feature DATA cSeek // used ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5460

Puedes usar la claúsula [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] que es mucho más rápida que un filtro pues se basa en un índice. Ejemplo: INDEX ON Clientes->Nombre TO CliName SET INDEX TO CliName GO TOP REDEFINE LISTBOX ...
by Antonio Linares
Sun Jul 13, 2008 8:54 pm
 
Forum: FiveWin para Pocket PC
Topic: visualizar mal en listbox
Replies: 12
Views: 2691

xBrowse.ch

... <aHeaders,...> ] ; [ SIZE <nWidth>, <nHeigth> ] ; [ <dlg:OF,DIALOG> <oWnd> ] ; [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] ; [ <change: ON CHANGE, ON CLICK> <uChange> ] ; [ ON [ LEFT ] DBLCLICK <uLDblClick> ] ; [ ON ...
by FiveWiDi
Thu Feb 28, 2008 11:28 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: xBrowse.ch
Replies: 1
Views: 1000

... extern DBSKIP //----------------------------------------------------------------------------// CLASS TWBrowse FROM TControl DATA cAlias, cField, uValue1, uValue2 DATA bLine, bSkip, bGoTop, bGoBottom, bLogicLen, bChange, bAdd DATA nRowPos, nColPos, nLen, nAt, nColAct // nColPos -> 1ra. Columna ...
by FWHISHOW
Wed Dec 12, 2007 4:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBROWSE - bkeydown não aceita VK_UP?
Replies: 9
Views: 4177

Inherit a class from another to add new methods for FW WIKI

... <aHeaders,...> ] ; [ SIZE <nWidth>, <nHeigth> ] ; [ <dlg:OF,DIALOG> <oDlg> ] ; [ SELECT <cField> FOR <uValue1> [ TO <uValue2> ] ] ; [ ON CHANGE <uChange> ] ; [ ON [ LEFT ] CLICK <uLClick> ] ; [ ON [ LEFT ] DBLCLICK <uLDblClick> ...
by Otto
Sat Oct 27, 2007 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inherit a class from another to add new methods for FW WIKI
Replies: 2
Views: 1429

... etc... Yo no utilizo el Browse de FiveWin, pero en el manual, se puede leer en la definición LISTBOX la línea: [ SELECT <cField> FOR <uValue1> [ TO <uValue2>] ] <uValue1> y <uValue2> representan los límites del SCOPE Algunos programadores prefieren utilisar un ...
by manuramos
Thu Mar 29, 2007 9:33 pm
 
Forum: FiveWin para CA-Clipper
Topic: ME PODRIAN EXPLICAR EL USO DEL SCOPE
Replies: 2
Views: 1048

Setfilter TWBrowse

... current Index Key type!" ) I think that buildskip is worg too when using the above example at line : static function BuildSkip( cAlias, cField, uValue1, uValue2 ) local bSkipBlock local cType := ValType( uVal1 ) regards, A.S.K
by ask
Mon May 29, 2006 8:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Setfilter TWBrowse
Replies: 0
Views: 492

Return to advanced search