topic
stringlengths
1
63
text
stringlengths
1
577k
Combobox changing aitems dynimacaly
Hello, I try to use comboxes , and change oCombox:aItems in the dialog. I started with samples/Combox.prg , and try to change oCbx2:aItems (second combobox) 1)oCbx2:bGotFocus := ; {|| oCbx2:aItems := { "1:One", "2:CHANGED", "3:Three" } } The second combobox receives no visible focus , clicking shows the o...
Combobox changing aitems dynimacaly
[quote="Frank Demont":3cfal3wu] I try to use comboxes , and change oCombox:aItems in the dialog. I started with samples/Combox.prg , and try to change oCbx2:aItems (second combobox) 1)oCbx2:bGotFocus := ; {|| oCbx2:aItems := { "1:One", "2:CHANGED", "3:Three" } } The second combobox receives no visible foc...
Combobox - Restablecer orden
Gente: Al agregar un ítem en un Combobox pretendo que luego este se vea ordenando alfabéticamente. Leyendo en la clase observo que no existe un :Sort() por lo que luego de hacer: oCmb:Add( "Mi dato" ), hago aSort( oCmb:aItems ) oCmb:Refresh() Y, el efecto no es el deseado, ya que "Mi dato" sigue al final de la lista. ...
Combobox - Restablecer orden
[quote="MarioG":3vwy0ds4]Gente: Al agregar un ítem en un Combobox pretendo que luego este se vea ordenando alfabéticamente. Leyendo en la clase observo que no existe un :Sort() por lo que luego de hacer: oCmb:Add( "Mi dato" ), hago aSort( oCmb:aItems ) oCmb:Refresh() Y, el efecto no es el deseado, ya que "Mi dato" sig...
Combobox - Restablecer orden
Mario, oCmb:Add( "Mi dato" ), hago aTmpItems := ACLONE( oCmb:aItems ) aSort( aTmpItems ) oCmb:SetItems( aTmpItems ) oCmb:Refresh() No lo probé, pero supongo deberia funcionar. Saludos
Combobox - Restablecer orden
Williams; no son problemas de recursos Pedro; anduvo! muchas gracias
Combobox - bValid
Hi all i have problem with evaluation combobox in 13.07 my code like this: [code=fw:1gr0ue49]<div class="fw" id="{CB}" style="font-family: monospace;">..<br />..<br />      <span style="color: #0000ff;">redefine</span> <span style="color: #0000ff;">combobox</span> ocb1 <span style="color: #0000ff;">var</span> cstatu...
Combobox - bValid
The problem is SOLVED. in my setting file .RMK, the parameter build is 13.04 consequence from COPY-PASTE <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
Combobox / Combometro
Adjunto código e imagen utilizando ambos controles Es la primera vez que utilizo combometro, es correcto el código? [code=fw:1lr2ov7n]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />   @ nFIG+nInc*<span style="color: #000000;">4</span><span style="color: #000000;">+4</span>, nCIG<span style="colo...
Combobox / Combometro
Cristobal, Tienes un ejemplo de uso de ComboMetro en FWH\samples\touch.prg
Combobox / Combometro
Cristóbal, Muy lindo ese Dbu, es el look del futuro. ¿Dónde se puede encontrar?. Gracias;))
Combobox / Combometro
Elvira, disculpa la intromisión pero es que me lo has puesto que ni pintado. De acuerdo en que será el futuro inmediato porque así lo ha decidido Microsoft, pero lo de lindo discrepo absolutamente. Aunque claro, sobre gustos.... ya se sabe.
Combobox / Combometro
Elvira, espero tenerlo terminado en esta semana, muchas gracias Manuel, permíteme el siguiente comentario: La mayor parte de mi tiempo desde hace muchos años lo he dedicado a realizar pruebas sobre "pantallas" de aplicaciones, ya que los desarrollos que hacemos han de evolucionar no solo a nivel técnico sino también, y...
Combobox / Combometro
[quote="Antonio Linares":1izosrsz]Cristobal, Tienes un ejemplo de uso de ComboMetro en FWH\samples\touch.prg[/quote:1izosrsz] Antonio, ya lo habia mirado, pero se me habia pasado el detalle que el nHeigth que ponemos en el comando corresponde a la altura del "antiguo Get del Combobox" y no a la altura total del contr...
Combobox / Combometro
Cristóbal, ¿Y cómo solucionas lo del preview?. La ventana que usas y usa el look Metro ocupa toda la pantalla y oculta la barra de inicio e inferior, pero el preview actual no ocupa todo y no se acabaría de ver bien. Muchas gracias por compartir tus interfaces tan bonitos <!-- s:D --><img src="{SMILIES_PATH}/icon_b...
Combobox / Combometro
[quote="elvira":uu4bsghb]Cristóbal, ¿Y cómo solucionas lo del preview?. La ventana que usas y usa el look Metro ocupa toda la pantalla y oculta la barra de inicio e inferior, pero el preview actual no ocupa todo y no se acabaría de ver bien. Muchas gracias por compartir tus interfaces tan bonitos <!-- s:D --><img s...
Combobox / Combometro
Cristóbal, Muy bonito la verdad. Mira, para el preview quizás podría servirte esto: [img:23qebumz]http&#58;//i39&#46;tinypic&#46;com/2s7828i&#46;png[/img:23qebumz] Sería cuestión de hablar con Antonio para meter un nuevo estilo metro en el rpreview.prg, porque el diseño actual no casa bien con este nuevo look, que n...
Combobox / Combometro
Lucas, gracias Tu diseño es impecable, tanto en la elección de colores como de iconos (en eso es en lo que estoy trabajando yo). Me encanta como concepto y se nota que hay mucho, mucho trabajo detrás. Además, a la hora de pasar el resultado del informe a "Html", el resultado sería prácticamente el mismo. Mi más sincer...
Combobox AutoFill
In earlier versions of FWH, I had the ability to use a CBS_DROPDOWN Combobox control that would auto fill from the array when someone started typing the characters. I had a combobox.prg dated 8/7/13 that I was linking into my app. With my current version 15.09 b5 that capability is not included. Perhaps I missed a c...
Combobox AutoFill
Tim, Have you tried oComboBox:lIncSearch := .T. ?
Combobox AutoFill
OK ... apparently I missed that in the notes. I looked in the Wiki ... both the command and class ... not mentioned I looked at the source and missed it in the DATA line I need to remember to also do a search in WhatsNew ... Anyway that is what I need. Thanks.
Combobox Busqueda Incremental
Hola amigos Estoy pasando mi codigo de la FWH 9.06 a la FWH 10.10 y me he encontrado, que la busqueda incremental (incremental search) en la clase combobox no trabaja correctamente en esta version. Alguien ha hallado como solucionar este problema? Saludos
Combobox Busqueda Incremental
Hola Olvide mencionar que es desde recursos. Y por cierto en el combobox tipo CBS_SIMPLE, la busqueda funciona perfectamente, no asi en CBS_DROPDOWNLIST, al omitir [code=fw:3ofhczr4]<div class="fw" id="{CB}" style="font-family: monospace;">   oGet<span style="color: #000000;">&#91;</span><span style="color: #000000;"...
Combobox Busqueda Incremental
aprovechando tu post con esta funcion se puede realizar la busqueda tipo google? al ir escribiendo va mostrando los registros que van cumpliendo con dicha busqueda, es posible? gracias anticipadas Tomas Hernandez
Combobox Busqueda Incremental
Hola Tomas Bueno cuando funcionaba... Te ubicaba a medida que escribias en el elemento a que correspondia. Lo que hace la busqueda de google es filtrar, y eso se puede hacer pero el problema es que los combos se cargan a memoria, y cuando las tablas crecen, dejan de ser amigables convirtiendose en largas esperas <!--...
Combobox Busqueda Incremental
Hola He intentado compilar la clase Combobox de la FWH 9.06, que era con la que me funcionaba la busqueda incremental,y despues de hacer un par de malabares funciono, Ya que en la FWH 10.10 no anda bien Espero no tener lios con otras clases, me preocupa la clase Get, veremos
Combobox Busqueda Incremental
Una pregunta en la 11.08 Ya se soluciono esto de la busqueda incremental ?? Estos detalles podran parecer pequeños, pero soy muy significantes al menos en mis aplicaciones <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Combobox Busqueda Incremental
[quote="Blessed":39nasxma]Hola Tomas Bueno cuando funcionaba... Te ubicaba a medida que escribias en el elemento a que correspondia. Lo que hace la busqueda de google es filtrar, y eso se puede hacer pero el problema es que los combos se cargan a memoria, y cuando las tablas crecen, dejan de ser amigables convirtiendo...
Combobox Busqueda Incremental
// CAMBIOS EN LA CLASE DBCOMBO.PRG ... Y ME ESTA FUNCIONANDO CLASS TDBCombo FROM TComboBox DATA cSearchBackup // JOHNSON RUSSI - DIC 20 DE 2011 /// METHOD New( nRow, nCol, bSetGet, aItems, nWidth, nHeight, oWnd, nHelpId, ; bChange, bValid, nClrFore, nClrBack, lPixel, oFont, ; cMsg, lUpdat...
Combobox Busqueda Incremental 11.09
Hola a todos Trasladando mi codigo a la FWH 11.09, di con un problema en la busqueda incremental en los combobox en: [code=fw:4yipcqaq]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">METHOD</span> KeyChar<span style="color: #000000;">&#40;</span> nKey, nFlags <span style="colo...
Combobox Busqueda Incremental 11.09
muchas gracias por tu gentileza. el problema lleva tiempo. a ver si lo incluyen en fw 11.10.
Combobox Con boton Más grande
Muy buenas, ¿alguien me podría decir como puedo agrandar el boton del combobox y de la lista horizontal? Un Saludo.
Combobox Con boton Más grande
Juan, El combobox pinta su propio boton, asi que no puede cambiarse.
Combobox Data
To All I am migrating an application and I have a field called Status which I am using in a combobox .. However I ran across a problem .. what happens if the data in the table ( in this case = "Dispute" ) is not found in the array aStatus ? .. apparently cStatus is not found even though the data for cStatus = "Dispute...
Combobox Data
Rick, Is sounds like you have a referential integrity issue. Can't you just add "Dispute" to the array, or are there lots more possible items that aren't in the list? If so, you could create a UNIQUE index on the field and use that data to load the array. But I do wonder how data that was not allowed got into the fie...
Combobox Data
James I am in the process of converting some old Excel data and this data is a mess. As I import the data I am building the lookup tables as I go, so technically, the imported data will be in the lookup tables I create as I loop thru excel. My question is two fold .. what happens if someone deletes a record in one of...
Combobox Data
Rick, [quote:bgfx0ndm]My question is two fold .. what happens if someone deletes a record in one of the look up tables and as I build my array for the combobox during data entry[/quote:bgfx0ndm] I would question why would you allow anyone to do that? Shouldn't the table be built by you and maintained by you, and mayb...
Combobox Data
James If I keep the comboboxes .. I will definitely only allow deletes on the look up data .. only if I check to see if the value exists in the main table .. I haven't made up my mind yet .. I like the incremental search feature of the combobox, but I use Get\Action to fire off a data validation browse .. that way I h...
Combobox Data
Rick, [quote:4fogbtn6]If I keep the comboboxes .. I will definitely only allow deletes on the look up data .. only if I check to see if the value exists in the main table .. [/quote:4fogbtn6] I'm not clear what you are saying. It sounds like you said just the opposite of what I would expect--only allow deletes on the...
Combobox Data
James I am multi-tasking .. If I allow deletes on the look up tables .. I will first look to the main data to see if that value exists .. if it does .. I WILL NOT allow any deletes on the lookup data that makes up the Ccombobox array. Sorry for the confusion RIck Lipkin
Combobox Data
Rick, Got it. Multitasking--the life of every programmer. I think we are all prematurely wearing out our brains... James
Combobox Diff with Style CBS_DROPDOWN and CBS_DROPDOWNLIST
To All I have built a Combobox from Resource and using the styles CBS_DROPDOWN ( preferred ) and CBS_DROPDOWNLIST ( do not want to use ) has profound font differences when you want to disable the control with this syntax : [code=fw:skrsc9oy]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="c...
Combobox Diff with Style CBS_DROPDOWN and CBS_DROPDOWNLIST
Try assigning the system font [code=fw:rrwtirsu]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont <span style="color: #0000ff;">NAME</span> GetSysFont<span style="color: #000000;">&#40;</span><span style="color: #000000...
Combobox Diff with Style CBS_DROPDOWN and CBS_DROPDOWNLIST
Enrico I have tried your suggestion and applied the font to the Dialog [code=fw:loexhbwt]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont <span style="color: #0000ff;">NAME</span> GetSysFont<span style="color: #0...
Combobox Diff with Style CBS_DROPDOWN and CBS_DROPDOWNLIST
[code=fw:1n8rmdaz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #B900B9;">//-------------------------</span><br /><br /><span style="color: #00C800;">function</span> Main<span style...
Combobox Diff with Style CBS_DROPDOWN and CBS_DROPDOWNLIST
Enrico That worked .. never would have got that one without your help!! Thanks Rick Lipkin
Combobox Diff with Style CBS_DROPDOWN and CBS_DROPDOWNLIST
You're welcome, my friend! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> EMG
Combobox Ownerdraw with Icon from DLL Sample
hi, here a Demo how to use Ownerdraw with Comboxbox it also show how to access System Icon "on-fly" so it will look same as Windows OS [img:181eo7ky]https&#58;//i&#46;postimg&#46;cc/NF66p0GD/Combobox-Demo-Ownerdraw&#46;jpg[/img:181eo7ky] [code=fw:181eo7ky]<div class="fw" id="{CB}" style="font-family: monospace;"><spa...
Combobox Picture
Dear friends, in this combobox REDEFINE COMBOBOX oCliente VAR cCliente ID 105 OF oDlg ITEMS aItems oCliente:lIncSearch = .T. oCliente:oGet:bKeyChar = { | nKey | oCLiente:KeyChar( nKey ) } oCliente:oGet:cPicture = "@!" It seems that picture does not work I digit "Antonio" and does not appear "ANTONIO" any ...
Combobox Picture
oCliente:oGet:bKeyChar = { | nKey | oCLiente:KeyChar( ASC(UPPER(CHR(nKey )))) } king regards marco
Combobox Problem
Hello, When the user presses a character to move to the item within a COMBOBOX, it does not work. I updated to version 7.01.
Combobox Problem
I noticed that too. To solve it for the moment, I linked in the COMBOBOX.PRG from FW 2.7. Now it's working fine. Regards, Michel
Combobox Problem
Hi Michel, Thank you. Can you send me the 2.7 PRG as I over wrote my version with the update.
Combobox Problem
No problem. Here it is. Just copy and paste and you've got is. Michel *edited by admin*
Combobox Problem
[quote="cdmmaui":15fd64lt]When the user presses a character to move to the item within a COMBOBOX, it does not work. I updated to version 7.01.[/quote:15fd64lt] Yes, confirm! for solve, replace the method KeyChar with this: [code:15fd64lt]//----------------------------------------------------------------------------//...
Combobox Problem
FWH 7.01 implements incremental search in comboboxes, thats why if you press two chars, one after another, if searches for the item that starts with both chars (implemented by Ugo). Ugo, thanks for the fix <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Combobox Question
Antonio - Using the following code in my clipper/Fivewin apps, the "get" next to the dropdown arrow automatically shows the first element of aYr. The xHarbour/Fivewin version shows a blank get. LOCAL oDlg, oYr, cYr, aYr := {} aYr := GetYrs() REDEFINE COMBOBOX oYr ; VAR cYr ; ITEMS aYr ...
Combobox Question
Hi Charles: Try this: LOCAL oDlg, oYr, cYr, aYr := {} aYr := GetYrs() cYr := aYr[ 1 ] REDEFINE COMBOBOX oYr ; VAR cYr ; ITEMS aYr ; ID 101 of oDlg Regards Manuel Mercado
Combobox Question
Charles, >Using the following code in my clipper/Fivewin apps, the "get" next to the dropdown arrow automatically shows the first element of aYr. This is actually isn't the best behavior. How can you show if the user hasn't made a choice? Also, if I remember correctly, it SHOWS the first choice, but unless the user ...
Combobox Question
Hi James - Thanks for your response. You're right about the best programming form, etc. However, in my case, a lot of my combos are years and/or months. in the case of years, the current year is shown in the get and the dropdown goes back in time eventually to the first year there are data. Also, where there is a ...
Combobox Question
Charles, You can easily modify Class TComboBox source code to make it work the way you want: [code:u40zt12v] METHOD Default&#40;&#41; CLASS TComboBox &#46;&#46;&#46; if Empty&#40; cStart &#41; // instead of&#58; if cStart == nil &#46;&#46;&#46; [/code:u40zt12v]
Combobox Question
Thanks, Antonio. This will do the job for me. Regards, Charles
Combobox Size
I've noticed this for a long time ... never found an answer to it. If I have a series of controls defined in an .rc file, all with a vertical size of 10, if one is a combobox, dropdown, then on the actual dialog it will be a larger then the other edit fields. It appears to be 12 to 14 high rather then 10 like the oth...
Combobox Size
The height of a combobox is tied to the font used, as far as I know. EMG
Combobox Size
Tim, I agree with Enrico. Also, some comboboxes contain a Get so you may be able to change oCmbo:oGet:nHeight. I haven't tried this. James
Combobox Size
It just looks bad. The same font is used for edits and comboboxes ! In the code, we use: REDEFINE COMBOBOX abcITEMS aCol ID 2211 OF oDvm STYLE CBS_DROPDOWN MESSAGE "Enter the color of this unit" UPDATE And the RC is: CONTROL "", 2211, "ComboBox", WS_BORDER|CBS_DROPDOWN|WS_VSCROLL|WS_TABSTOP, 368,41,110, 264 ...
Combobox Size
Tim, Did you try: oCmbo:oGet:nHeight := 10 oCmbo:oGet:refresh() Or you may have to do: oCmbo:oGet:setSize( oCmbo:oGet:nWidth, 10, .t. ) James
Combobox Size
Actually I found that setting the height of my edit boxes on the dialog is probably easiest. I have them set to 13 and they now match the combo box. I'm manually realligning all the dialogs ... so it actually cleans up nicely and makes the screens easier to read. I think my clients will be pleased.
Combobox Size
That's the height I use too. EMG
Combobox TMySql v/s Dbf
Fivewiners favor llevo rato con este tema.. toy comenzado a migrar y utilizar TMsql pero no logro algo basico como este combobox... aqui como lo hago en mi actual DBF y como intento con TmSql CRE0 COMBOBOX CON LOS DATOS DE UNA DBF ::oCliente := TRed():Use( ::cRuta + "MAANALIS.Dbf", ::cRuta + "analisis.Cdx" ) :...
Combobox TMySql v/s Dbf
Y si abris la consulta ordenada? ***ABRO LAS TABLAS ::oCliente := ::oMain:oCon:Query( "SELECT * FROM MAANALIS ORDER BY ...." ) // con el orden que tiene analisis.cdx ::oTipo_Cte := ::oMain:oCon:Query( "SELECT * FROM TIPOCTES ORDER BY ..." ) // con el orden que tiene tipo_cte.cdx Así los datos estarian ordenados igu...
Combobox and VK_UP VK_DOWN keys SOLUCIONADO
Hi, all. Is there any way to avoid it hitting the bChange combobox when using the UP, DOWN keys? What I want to do is use these keys to scroll through the items of combobox, and that this run the code bChange until the ENTER key is pressed. How to do this? Greetings. [url=http&#58;//imageshack&#46;us/photo/my-images...
Combobox and database
Antonio, Is this possible to use combobox control with database alias (one or more character fields) where items are read from database ? Thanks Pawel
Combobox and database
Pawel, In FWH there is a Class TDbCombo where items are read from a DBF. If you want it, we can email it to you, so you can test it with FWPPC. It should work
Combobox and database
Antonio, Yes, please. Thanks Pawel
Combobox and database
Already sent <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Combobox and database
No tenho a classe TDbCombo, dá para enviar um exemplo,, como utilizar essa classe com uma tabela .dbf Obrigado Sérgio Gonçalves
Combobox and database
Sergio, Here you have it, dbcombo.prg [code=fw:tm10goab]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">/*<br />File Name: &nbsp; DBCombo.prg<br />Author: &nbsp; &nbsp; &nbsp;Elliott Whitticar, <!-- e --><a href="mailto:71221.1413@Compuserve.com">71221.1413@Compuserve.com...
Combobox and database
pederias me enviar um exemplo como utilizar esta classe ex. tabela1.dbf Obrigado
Combobox and database
DbCombo.ch is also required: DbCombo.ch [code=fw:2kynq2h8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />*********************************************************************<br />* File <span style="color: #0000ff;">Name</span>:&nbsp; &nbsp; <span style="color: #000000;">DBCombo</span>.ch<br />* Auth...
Combobox and database
This is an example for FWH, and it should work for FWPPC too: test.prg [code=fw:10d7v9xl]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">/*<br />Program : DBC1.PRG<br />Purpose : Test DBCombo<br />Notes &nbsp; :<br />*/</span><br /><br /><span style="color: #00D7D7;">#incl...
Combobox and database
Dá o seguinte erro: error LNK2001: unresolved external symbol HB_FUN_TDBCOMBO Sérgio
Combobox and multiarray
Hi all, another question about combobox. Is there a way to use a combobox to display only the second element of a multiarray ? For example, I have a multi array like this: aItems:={} aadd(aItems,{"01","Marc"}) aadd(aItems,{"02","Frank"}) aadd(aItems,{"03","Paul"}) and I would like to display into the combo just the ...
Combobox and multiarray
@ r, c COMBOBOX oCbx ........ ITEMS ArrTranspose( aItems )[ 2 ] .......
Combobox and multiarray
Hi nageswaragunupudi, thanks for the suggest. It runs well used as command line, but I'm unable to create a command "COMBOLIST" that automatically use this function with multidimensional array taking always the 2nd element. Where I'm wrong ? #xcommand REDEFINE COMBOLIST [ <oCbx> VAR ] <cVar> ; [ <items:...
Combobox and multiarray
ArrTranspose(<aItems>)\[2\]
Combobox and multiarray
Thank you.
Combobox and multimensional arrays
Hi, is there any way to manage a multidimensional array in a combobox ? I have a two dimension array like this: aArray:=array(0,2) aadd(aArray,{01,"Primo"}) aadd(aArray,{02,"Secondo"}) aadd(aArray,{03,"Terzo"}) and I would like to display in the combobox only the second element (First,second, third). Any ideas ...
Combobox and multimensional arrays
Marco, You may review samples\TestArr2.prg. Its a browse, not a combobox, but it uses a multidimensional array
Combobox and scroll mouse SOLVED
Hello friends. Why if a combobox has focus and we do scroll with the mouse in any other control of a dialog, change combobox items?. And if we do several scrolls up and down, always away from the combobox, the items themselves are constantly changing? This is the correct behavior of the combobox, or ... Right? I than...
Combobox and scroll mouse SOLVED
Francisco, [quote="FranciscoA":3ujkc7r9]This is the correct behavior of the combobox, or ... Right?[/quote:3ujkc7r9] Yes, it's the correct behavior. Please check other applications, even MS ones. EMG
Combobox and scroll mouse SOLVED
Enrico, thanks for answering. Indeed, he had already seen the behavior in MS programs like Excel / Word, but these do not change the combobox's Get value, only move their items, when you uses the mouse's scroll away from the combobox.
Combobox and scroll mouse SOLVED
Francisco, If your combobox is using ON CHANGE then it will be evaluated everytime the selection changes. As I commented you, use oComboBox:bCloseUp instead of ON CHANGE on those cases
Combobox and scroll mouse SOLVED
Antonio, Excuse me, I forgot actualize this post. Best regards.
Combobox bajo fhw7.01 no retorna el indice
Buenos dias, Sr. Antonio En la version de fhw701 el combobox no me retorna el indice e sin el contenido, vea el ejemplo: nOp := { "meu", "seu", "deles" } Si seleciono "meu" en el combobox, el retorno es "meu", deberia me retornar 1 como las versões anteriores, que pasa? como resolvo isto? Gracias de antemano,
Combobox bajo fhw7.01 no retorna el indice
Buen día para todos... Que tal amigo laugusto, por casualidad probaste el ejemplo TestComb.prg que está en Samples?.
Combobox bajo fhw7.01 no retorna el indice
Amigo alguna vez a mi me paso algo igual. Y el problema radicaba en que en PELLESC, existe una propiedad llamada SORT o algo asi. Intenta desabilitando esa opción. Saludos Espero te sirva.
Combobox bajo fhw7.01 no retorna el indice
Luiz Augusto, Puedes mostrar el código en donde creas el combobox ? gracias
Combobox bajo fhw7.01 no retorna el indice
Buenas, Gracias por me contestar Antonio, mi código es com segue: [code:2gh2hszx] // Tipo de Cabelo TPCABT &#58;= &#123; "A - Natural ", "B - Seco ", "C - Grosso ", "D - c/Química ",; "E - Resistente", "F - Liso ", "G - Etnico ", "H - c/Queda ",; "I - Fino ", "J -...
Combobox bajo fhw7.01 no retorna el indice
Buenas, Antonio Castro, antes de atualizarme a fwh701, el combobox me retornava el indice del array; Leandro Alfonso, no uso pellesc e sin el workshop; Antonio Linhares, intentei compilar el combobox.prg de source\classes del fwh2.6 junto com meu projeto, e esta funcionando perfecto, no se o que passa, poderia revi...