Search found 56 matches: ocombo

Return to advanced search

Re: Esconder control en dialogo

karinha wrote:STATIC oCombo?
Pues no lo tengo como Local, debo definirlo static.

Gracias siempre por tu ayuda

Jose


Enviado desde mi POCOPHONE F1 mediante Tapatalk
by jvtecheto
Thu Apr 23, 2020 3:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Esconder control en dialogo
Replies: 5
Views: 708

Re: Esconder control en dialogo

STATIC oCombo?
by karinha
Thu Apr 23, 2020 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Esconder control en dialogo
Replies: 5
Views: 708

Esconder control en dialogo

Hola.
Por reutilizar un diálogo me interesa esconder(que no se vea) un combobox, entonces pruebo al activar el diálogo.
ON INIT oCombo:Hide().
Pero me arroja error.
Dentro del Diálogo o también pruebo.
oCombo:Hide().
Pero tampoco me funciona.

Alguna idea?

Muchas gracias

Saludos

Jose
by jvtecheto
Thu Apr 23, 2020 2:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Esconder control en dialogo
Replies: 5
Views: 708

Re: get combobox

This command line bellow, call alert function, it´s ok. But... don´t execute GoNextCtrl()

oCombo:bChange = { || If( oCombo:oGet:oGet:TypeOut, ( alert("test"), oCombo:oWnd:GoNextCtrl( oCombo:hWnd ) ),) }

Any Solution?
by shark
Thu Sep 27, 2018 5:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 923

Re: get combobox

Antonio Linares wrote:Please check if you ear the beep:

oCombo:bChange = { || If( oCombo:oGet:oGet:TypeOut, ( MsgBeep(), oCombo:oWnd:GoNextCtrl( oCombo:hWnd ) ),) }


No Beep. Not call function.
by shark
Fri Aug 31, 2018 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 923

Re: get combobox

Please check if you ear the beep:

oCombo:bChange = { || If( oCombo:oGet:oGet:TypeOut, ( MsgBeep(), oCombo:oWnd:GoNextCtrl( oCombo:hWnd ) ),) }
by Antonio Linares
Mon Aug 27, 2018 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 923

Re: get combobox

Try this: oCombo:bChange = { || If( oCombo:oGet:TypeOut, oCombo:oWnd:GoNextCtrl( oCombo:hWnd ),) } Not Solved... little change in code: "oGet:TypeOut" for "oGet:oGet:TypeOut", but, not go next control. text ...
by shark
Mon Aug 27, 2018 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 923

Re: get combobox

Try this:

oCombo:bChange = { || If( oCombo:oGet:TypeOut, oCombo:oWnd:GoNextCtrl( oCombo:hWnd ),) }
by Antonio Linares
Mon Aug 27, 2018 8:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 923

Re: TCOMBOMETRO:SETITEMS

cnavarro con oCombo:Set me sale un error:

Error BASE/2022 Erro nos parƒmetros: ALLTRIM
Parameter :
[ 1] = A { ... }

Stack-List
----------
chamado por ALLTRIM(0)
chamado por (b)TCOMBOMETRO:SET(193)
chamado por ASCAN(0)
chamado por TCOMBOMETRO:SET(193)
by Sistem
Tue Jan 26, 2016 9:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCOMBOMETRO:SETITEMS
Replies: 2
Views: 467

TCOMBOMETRO:SETITEMS

... por TCOMBOMETRO:ERROR(0) chamado por TCOMBOMETRO:MSGNOTFOUND(0) chamado por TCOMBOMETRO:SETITEMS(0) chamado por FUNCALT1(1547) linha 1547 => oCombo:SetItems( aPath ) obs: com combobox funciona normal.
by Sistem
Mon Jan 25, 2016 7:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCOMBOMETRO:SETITEMS
Replies: 2
Views: 467

Re: ComboBox

cnavarro wrote:Si vi la imagen y el contenido de tu RC
Es por eso que te comento que pongas en tu aplicacion un MsgInfo( oCombo:nExStyle ) para comprobar que lo asina a la DATA de Windows ( y por lo tanto del control )


Navarro, esto solo me devuelve NIL, saludos... :shock:
by joseluisysturiz
Thu Aug 27, 2015 1:29 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ComboBox
Replies: 36
Views: 4911

Re: ComboBox

Si vi la imagen y el contenido de tu RC
Es por eso que te comento que pongas en tu aplicacion un MsgInfo( oCombo:nExStyle ) para comprobar que lo asina a la DATA de Windows ( y por lo tanto del control )
by cnavarro
Wed Aug 26, 2015 6:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ComboBox
Replies: 36
Views: 4911

Re: ComboBox

Jose Luis
Como tienes ya desarrollado un programa en el que usas el Redefine y ese estilo, ¿puedes comprobar si el valor de oCombo:nExStyle es ese?, para seguirle la pista de donde asigna ese estilo
by cnavarro
Wed Aug 26, 2015 5:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ComboBox
Replies: 36
Views: 4911

Re: combobox display

... does not make a change neither , courrier , courrier new or even system no change for the whole dialog or the combobox (it an be assigned with ocombo:setfont(....) André : the Id in front of the table can help with small id's i have some tables where id's are 6 digits and needed and the problem ...
by Richard Chidiak
Thu May 30, 2013 6:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: combobox display
Replies: 7
Views: 1587

Re: Incremental Search on Combobox dropdown (not dropdownlist)

This is untested but you may be able to drop down the list when first key is pressed.
oCombo:oGet:bKeyChar = { | nKey | if( oCombo:IsClosed(), oCombo:Open(), nil), oCombo:KeyChar( nKey ) }
by Gale FORd
Tue Dec 18, 2012 2:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental Search on Combobox dropdown (not dropdownlist)
Replies: 5
Views: 2560
Next

Return to advanced search