Search found 57 matches: ocombo

Searched query: ocombo

by Antonio Linares
Mon Jul 22, 2024 6:18 am
Forum: FiveWin para Harbour/xHarbour
Topic: La rueda del ratón no funciona en DROPDOWNLIST
Replies: 3
Views: 1112

Re: La rueda del ratón no funciona en DROPDOWNLIST

... en la lista desplegada del combobox.
2. Los mensajes WM_MOUSEWHEEL llegan a la lista desplegada y no al combobox por lo que no podemos usar oCombo:bMouseWheel
3. La única solución que parece posible es localizar el handle de ventana de la lista desplegable y "subclasear" su procedimiento para ...
by jvtecheto
Thu Apr 23, 2020 3:05 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Esconder control en dialogo
Replies: 5
Views: 823

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 karinha
Thu Apr 23, 2020 2:56 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Esconder control en dialogo
Replies: 5
Views: 823

Re: Esconder control en dialogo

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

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 shark
Thu Sep 27, 2018 5:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 1058

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
Fri Aug 31, 2018 5:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 1058

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 Antonio Linares
Mon Aug 27, 2018 4:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 1058

Re: get combobox

Please check if you ear the beep:

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

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 in oGet is full select and do not go next.

see in image:

http://www.acessosoft ...
by Antonio Linares
Mon Aug 27, 2018 8:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: get combobox
Replies: 7
Views: 1058

Re: get combobox

Try this:

oCombo:bChange = { || If( oCombo:oGet:TypeOut, oCombo:oWnd:GoNextCtrl( oCombo:hWnd ),) }
by Sistem
Tue Jan 26, 2016 9:15 pm
Forum: FiveWin para Harbour/xHarbour
Topic: TCOMBOMETRO:SETITEMS
Replies: 2
Views: 511

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
Mon Jan 25, 2016 7:00 pm
Forum: FiveWin para Harbour/xHarbour
Topic: TCOMBOMETRO:SETITEMS
Replies: 2
Views: 511

TCOMBOMETRO:SETITEMS

... Warning BASE/1004 Message not found: TCOMBOMETRO:SETITEMS

Stack-List
----------
chamado 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 joseluisysturiz
Thu Aug 27, 2015 1:29 am
Forum: FiveWin para Harbour/xHarbour
Topic: ComboBox
Replies: 36
Views: 6618

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 cnavarro
Wed Aug 26, 2015 6:06 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ComboBox
Replies: 36
Views: 6618

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 5:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ComboBox
Replies: 36
Views: 6618

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 Richard Chidiak
Thu May 30, 2013 6:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: combobox display
Replies: 7
Views: 1838

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 ...