Search found 129 matches: oget2

Return to advanced search

Re: PlaceHolder HARBOUR

... vejo dois detalhes no seu código, Primeiro: você está usando um único objeto GET (oGet) para todos os seus get, deve ser um para cada (oGet1, oGet2, oGet3...) Segundo: o FOCUS na hora de carregar o formulário não pode estar em nenhum GET, tente colocar no botão de saída (BOTÃO "&Cancelar") ...
by JoseAlvarez
Tue Oct 03, 2023 9:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PlaceHolder HARBOUR
Replies: 8
Views: 435

Re: The more fancy Xbrowses the more slow they become ?

... oGet2:refresh() } oFld:bAction := { || (FolderActions("KLANTEN",oFld),oBrw[1]:gotop(),oBrw[1]:refresh()) } DEFINE BUTTON OF oBar PROMPT "Edit" ...
by Marc Venken
Sat Nov 05, 2022 3:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: The more fancy Xbrowses the more slow they become ?
Replies: 8
Views: 436

Re: Drag and drop on GET

thank you for responding to my question. in this example I will enter data into oGet1 or oGet2 variables by Drag and Drop data sources from xbrowse. /*  in this example I will pass data from cell xbrowse   to variable oGet1 or oGet2 */ #include "fivewin.Ch"//------------------------------------------------------------------//function ...
by Mulyadi
Fri Mar 25, 2022 1:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drag and drop on GET
Replies: 4
Views: 589

Re: get problem not execute ON CHANGE command

... con el ON CHANGE del Método TGET, como se puede solucionar? Ejemplo: REDEFINE GET oGet1 VAR mGET1 ID 11     OF oDlg ON CHANGE (mGET2:=mGET1+10,oGet2:Refresh())REDEFINE GET oGet2 VAR mGET2 ID 12     OF oDlg     No se actualiza el valor del segundo get (oGet2) Muchas gracias...
by Marcelo Roggeri
Thu Oct 01, 2020 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: get problem not execute ON CHANGE command
Replies: 7
Views: 613

Error sintaxis EVAL

... oget0 VAR cget0 OF odlgeu RIGHT SIZE 50,9 PIXEL UPDATE; VALID ; Eval ( { || IF (CGET1 = 0 , (CGET2:=CGET2), .F. ),; (CGET2,( CGET2:=CGET1*CGET0), oGET2:Refresh(),; (CGET4,( CGET4:=CGET3*CGET0), oGET4:Refresh(),; .T. )) } ) Al pasarlo a 32 el compilador arroja el siguiente error:" Warning ...
by Ramón J.
Wed Jan 15, 2020 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error sintaxis EVAL
Replies: 3
Views: 669

Re: Boton en BtnGet

Gracias nuevamente, pongo un ejemplo de la situacion: Function Menu() local oDlg1, oLbx1, oGet2, oGet3 SET 3DLOOK ON // Microsoft 3D Look DEFINE DIALOG oDlg5 FROM 13,15 TO 38,76 ; TITLE "Control de Tickets " ; nTicket:=0 Libre:=.t. @ 0.25, 19.5 TBTNGET oGet2 ...
by servicomver
Fri Jul 05, 2019 8:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Boton en BtnGet
Replies: 10
Views: 1399

Re: Boton en BtnGet

Gracias, una duda mas: @ 1.35, 4 TBTNGET oGet2 VAR nTicket OF oDlg5 ; SIZE 45, 12 RIGHT ; RESOURCE "Prop" ; PICTURE "9999999"; ACTION Cliente1(oLbx,oGet2,oGet3,oGet4); VALID (Cliente2(@nTicket,oGet2,oGet3,oGet4,oDlg5),Libre) ...
by servicomver
Thu Jul 04, 2019 3:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Boton en BtnGet
Replies: 10
Views: 1399

Re: several questions about GET class

The get problem is large to solve , the initial code used the style let's say "textbox". oGet2:SetNumFormat("###0.##") Then he has tried to use the GEt style with pictures, but correct operation has not been achieved .. this code @ 110, 115 GET oGet2 ...
by mastintin
Sun Jun 24, 2018 10:37 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: several questions about GET class
Replies: 14
Views: 5236

Filtro no xBrowse com array

... uma dica para resolver ? Segue como estou fazendo: *********************************************************** * Get de pesquisa REDEFINE GET oGet2 VAR cSeek PICTURE "@!" ID 4002 OF oDlgPrd2 UPDATE ; VALID xBrFilter(oBr1, 3, cSeek, aProdAuto) * listagem oBr1:= TXBROWSE():NEW() oBr1:CreateFromResource(4008) ...
by EduardoSP6
Fri Feb 17, 2017 11:59 am
 
Forum: All products support
Topic: Filtro no xBrowse com array
Replies: 1
Views: 1227

Re: GET no deja editar

... es NULL, revisa eso haber, estas declarando los objetos al valor de si mismo, eso no lo entiendo local cVar := space(n) o nVar := 0 local oGet1, oGet2 @ x, y GET oGet1 VAR cVar...... usas el mismo objeto como var @ 1.4,0.5 GET cIp VAR cIp SIZE 115,10
by joseluisysturiz
Mon Dec 26, 2016 2:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GET no deja editar
Replies: 1
Views: 432

Re: several get's in a loop

René,

> I get all classnames, but how to retrieve the name of the class (Like oGet1, oGet2...)

If you mean the name of the object:

oControl:cVarName

if you mean its class name:

oControl:ClassName()
by Antonio Linares
Thu Nov 24, 2016 10:22 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: several get's in a loop
Replies: 3
Views: 1088

Re: several get's in a loop

Hello Antonio,

As I understand all defined classes are in an array. But how looks this array, is there an example anywhere?
If I ask:
oFld:aDialogs[2]:aControls[n]:ClassName()
, I get all classnames, but how to retrieve the name of the class (Like oGet1, oGet2...)

Rene
by plantenkennis
Thu Nov 24, 2016 7:32 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: several get's in a loop
Replies: 3
Views: 1088

Re: fiveweb

... "ads.ch" //----------------------------------------------------------------------------// function Main( cParams ) local oDlg, oGet1, oGet2 local cDni := Space( 11 ), cPass := '' local AppName:= AppName() cDni := Space( 11 ) cPass := Space( 8 ) // SET BACKIMAGE TO "http://fiveweb.googlecode.com/svn/trunk/images/beach.jpg" ...
by silvinamazzaro
Wed Feb 10, 2016 7:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: fiveweb
Replies: 10
Views: 1688

Re: Expand a dialog

Marco,

MarcoBoschi wrote:When the focus is in the first GET oget1 the dialog has to be small
When the focus pass to the second GET oget2 the dialog has to expand


The first thing you should ask yourself is why to create such a monster. :-)

EMG
by Enrico Maria Giordano
Wed Jul 15, 2015 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Expand a dialog
Replies: 8
Views: 1061

Re: Expand a dialog

... that looks more like what I have to get When the focus is in the first GET oget1 the dialog has to be small When the focus pass to the second GET oget2 the dialog has to expand I think this little sample works but does not exist the refresh. Users must be able to see a dialog of another app #include ...
by MarcoBoschi
Wed Jul 15, 2015 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Expand a dialog
Replies: 8
Views: 1061
Next

Return to advanced search