topic
stringlengths
1
63
text
stringlengths
1
577k
Combobox focus problem
Hi, Why combobox control (dropdown list) inside a folder dont display a doted focus line? Using Manifest Theme. Any tricks? Porque los combobox não mostram a linha pontilhada quando se tem o foco dentro de um folder? Thanks in advance. Wanderson.
Combobox focus problem
Example?
Combobox focus problem
please try this. [url:393wk9g5]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38603&p=230373&hilit=alt+key#p230373[/url:393wk9g5]
Combobox focus problem
[quote="carlos vargas":3mqnxtsl]please try this. [url:3mqnxtsl]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=38603&p=230373&hilit=alt+key#p230373[/url:3mqnxtsl][/quote:3mqnxtsl] Gracias Carlos Vargas, funcionou!
Combobox focus problem
[quote="karinha":1ynwwlgt]Example?[/quote:1ynwwlgt] Karinha, obrigado, Carlos Vargas solucionou o problema!
Combobox focus problem
Hola.. retomando este hilo.. . la solución propuesta es correcta, se soluciona, pero para mi compu, pienso más en las compus de los clientes, habrá alguna posibilidad de modificar algo en el programa para que no tengamos que retocar el Panel de Control de cada cliente?? Muchas gracias por su ayuda!! Roberto
Combobox font problem
Hi all, Why combobox don't display the same font like gets if i use when .f.? [url=http://img265.imageshack.us/i/combobox.jpg/:3psjixcr][img:3psjixcr]http://img265.imageshack.us/img265/5653/combobox.jpg[/img:3psjixcr][/url:3psjixcr] Thanks in advance.
Combobox font problem
Antonio any idea? Thanks.
Combobox font problem
[code=fw:2dag4gi2]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />&nbsp; &nbsp;<span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">FONT</span> oFont &nbsp; <span style="color: #0000ff;">NAME</span> <span style="color: #ff0000;">"Ms Sans Serif"</span> <span style="color: #0000...
Combobox in Folder
It's the Folder time today ;- ) Well, another problem - simple, I hope. When I have the focus on a combobox in a dialog and I press the Enter key then the focus go to the next control (a get for example) The problem is that it doesn't runs on a folder. If I have the focus on a combobox in a folder and I press the ...
Combobox in Folder
Marco, Just add this method to Class TComboBox: [code:2nzjsjig] METHOD KeyChar&#40; nKey, nFlags &#41; CLASS TComboBox if nKey == VK_RETURN &#58;&#58;oWnd&#58;GoNextCtrl&#40; &#58;&#58;hWnd &#41; endif return nil [/code:2nzjsjig]
Combobox in Folder
Yes, runs fine. Thanks for your quick reply. Best Regards, Marco
Combobox in Folder
Great! EMG
Combobox in Folder
Marco, Keep in mind that using the Enter key to move from field to field is DOS program behavior NOT Windows program behavior. Users expect the Enter key to trigger the default pushbutton (ususally OK). They will surprised and disappointed when it doesn't. There is good reason to have it trigger the default pushbutto...
Combobox in Folder
I already tried to convice him but there is no hope. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> EMG
Combobox in Folder
James, you are right. However about my specific situation my target was a quick migration to my customers from my old Clipper app to the new FWH app to avoid the costs of two platforms updates and I could make it immediatly leaving the same input process in the new Windows app. Furthermore there still are a lot of c...
Combobox in Folder
If the application is a orginally developed for the 1st time in Windows ( not migrated from any DOS based application ), Mr.James statement is correct. But in other case I agree with Mr.Marco. - Ramesh Babu
Combobox in toolbar
I would want to insert a combobox in the toolbar between the buttons. How I can make? Thanks in advance. Pier Luigi
Combobox in toolbar
Try [code:167busgc]@ row, col COMBOBOX &#46;&#46;&#46; OF oBar[/code:167busgc] EMG
Combobox in toolbar
I write [code:32hfblte] &#46;&#46;&#46; oToolBar&#58;AddButton&#40; &#123; || MsgInfo&#40;&#41; &#125;, nil, nil &#41; // 1 oToolBar&#58;AddButton&#40; &#123; || MsgInfo&#40;&#41; &#125;, nil, nil &#41; // 2 @ row, col COMBOBOX &#46;&#46;&#46; OF oToolBar oToolBar&#58;AddButton&#40; &#123; || MsgInfo&#40;&#41; ...
Combobox in toolbar
You may try using oBtn:Move() method. EMG
Combobox incremental seek bug
Hi, I think there is a bug using the incremental seek in a combobox. In this self-contained sample at: <!-- w --><a class="postlink" href="http://www.softwarexp.co.uk/beta/combo.zip">www.softwarexp.co.uk/beta/combo.zip</a><!-- w --> I have and array with 3 elements: First, Second, Third, When the combobox has the foc...
Combobox incremental seek bug
Marco: Pls try with a numeric var as follow: acMonths := {"Jan","Feb","Mar","Apr","May","Jun",; "Jul","Aug","Sep","Oct","Nov","Dec"} nMonth := 1 REDEFINE COMBOBOX oGet VAR nMonth ID 100 OF oDlg; PROMPTS acMonths Regards, Armando
Combobox incremental seek bug
Nothing to do. If I select the month pressing the first key the return value will be the string instead of the numeric position. See <!-- w --><a class="postlink" href="http://www.softwarexp.co.uk/beta/test.png">www.softwarexp.co.uk/beta/test.png</a><!-- w --> This problem appairs with the latest fivewin version,the...
Combobox incremental seek bug
Marco, Please make this change at source\classes\combobox.prg line 506: ::Set( If( ValType( Eval( ::bSetGet ) ) == "N", AScan( ::aItems, uItem ), uItem ) )
Combobox incremental seek bug
Yes, the return value is correct now but the incremental seek runs only for the first key pressed. You can easely check it in the sample I gave you. Marco
Combobox incremental seek bug
Marco, It seems to work fine. Please remember that you have to press Space in order to make a new search
Combobox incremental seek bug
Yes, pressing SPACE the seek reinitialize itself but this solution is really unpracticol for the customer. For example if you have an array like: Antonio Fabio Andrea Marco Alfonso .. .. Alexandro with the old FWH April 2006 the customer simply pressing "A" go to the first name that start with this character and th...
Combobox incremental seek bug
Marco, Yes, you are right, it behaves in a different way. Several customers requested this new behavior to perform incremental search. You may use the Class TComboBox from the previous FWH build.
Combobox incremental seek bug
[quote="Antonio Linares":1avw6ekv]You may use the Class TComboBox from the previous FWH build.[/quote:1avw6ekv] Antonio, I have insert any modification for incremental or previous use. If insert the new clause INCREMENTAL the incremental search is active without new clause the Combobox search is the previous version. ...
Combobox incremental seek bug
Marco, Antonio Fabio Andrea Marco Alfonso .. .. Alexandro I don't think this is a very good design. Potentially, the user could have to type a lot more keystrokes to find what they are looking for. What if there are 50 items beginning with A. They might have to type A, 50 times. However, you can usually find ...
Combobox incremental seek bug
Hi James, I created an unsorted list only for this sample for a better explain of this problem. In my commercial apps I obviusly use combos with sorted arrays. The problem of this new kind of incremental seek is that it is a programmer-like feature and not an end-user feature. Unfortunately I could have a human-monke...
Combobox incremental seek bug
Marco, >The problem of this new kind of incremental seek is that it is a programmer-like feature and not an end-user feature. Unfortunately I could have a human-monkey meeting point customers but really I have had a lot of call of customers with many difficult to scroll the combos list with this solution. I have not...
Combobox lChanged problems
Hi all, I'm moving now from FWH Nov 2010 to FWH Dec 2012 and I'm dealing with the issues related. The most important issue is related to the lChanged clause on the combobox class because with FWH Dec 2012 it is evaluated more times when the control is initialized and this generate errors in my app usually when a dialog...
Combobox lChanged problems
Hello, Did you try with revised build published yesterday?. I though it was fixed in revised build.
Combobox lChanged problems
Yes, it has been fixed. Thanks for the info.
Combobox más grande
Muy buenas, me gustaría saber como puedo a la hora de elegir y expandir el combobox, hacer que se vean más elementos en el combobox con solo hacer click en la flecha. Gracias.
Combobox no Cambia
Saludos a Todos, amigos foristas. Nuevamente acudo a Uds. en busca de ayuda. Tengo esta situacion usando dos Combobox dentro de un TFolderEx en el primer combo, al seleccionar cualquier elemento, se ejecuta bien el [b:3m8xmjsl]On Change[/b:3m8xmjsl]... esa es la idea. Aqui no hay problema. no asi el segundo combo, e...
Combobox no Cambia
Muestre algo asi... [code=fw:39duqlh6]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">FUNCTION</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />&nbsp; &nbsp;<span style="color: #00C800;">LOCAL</span> ARRITEM := <spa...
Combobox no Cambia
Hola Karanha, saludos Creo entender en tu codigo, que los combox estan relacionados.. en mi caso no, el primer combo no tiene nada que ver con el comportamiento del segundo, ni el segundo con el primero.. son totalmente individuales.. no estan ralacionados.
Combobox no Cambia
Jose, como inicializas las variables cCbxPresenta y cCbxColor? Cuando pones en el combo 2 la opcion 2, luego pasas a el combo 1, y luego vuelves al combo 2 y cambias a opcion 1 no te ejecuta la accion?
Combobox no Cambia
Hola Cesar... saludos. las inicializo asi: cCbxPresenta:='Agregar' cCbxColor :='Agregar' incluso he tratado con : cCbxPresenta:=pad('Agregar',xx) cCbxColor :=pad('Agregar',xx) para igualar los tamaños. La situacion es esta: Ambos combos trabajan de manera totalmente indivivual. Ninguno tiene que ver co...
Combobox no Cambia
Me alegro que lo hayas podido resolver! Saludos
Combobox no Cambia
Aca dejo un video donde se explica mejor. Como dije, el problema es en el segundo combo, el primero funciona perfecto y no tiene nada que ver ni hacer con el segundo, solo lo menciono para mostrar que trabaja bien y que asi deberia funcionar el segundo. [url:29pa0h5p]http&#58;//www&#46;datanet&#46;space/fw/error&#46;...
Combobox no Cambia
Hola José: Según lo que entiendo, cuando en el combo dos tenes una opcion seleccionada distinta de la 1, y lo cambias a la opcion 1, ahi si te ejecuta la accion [quote:xtxjhpam] Incluso, dentro del mismo combo2 luego de seleccionar cualquier otro valor, vuelvo al primero, la accion se ejecuta. [/quote:xtxjhpam] Si es a...
Combobox no Cambia
hola cesar.. gracias de nuevo por tu auyda Probe con el bLostFocus, igual falla, la accion se ejecuta dos veces. Por lo pronto resolvi de una manera la cual no queria aplicar, pero es la unica hasta el momento. inclui dentro del arreglo el elemento "agregar" y listo. Funciono. pero por logica "Agregar" aparece co...
Combobox no actualiza
Buenos dias Tengo el siguiente codigo: [code=fw:mhtz7t7n]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">&#40;</span>aAlias<span style="color: #000000;">&#91;</span><span style="color: #000000;">26</span><span style="color: #000000;">&#93;</span><span style="color: #000000;">&#4...
Combobox no actualiza
Estimado Jose Luis, Prueba con: oCombo1:Set( cVar1 ) despues de modificar cVar1
Combobox no actualiza
Correcto Gracias Antonio!
Combobox no se actualiza. Estoy perdido y me urge.
Hola tengo un Dialog en el cual existe un checkbox que al clicar en el , crear dos tablas , aunque la primera es la que sale en el combobox, pero cuando le pongo el setitems me da el siguiente error : Error description: Error BASE/1132 Error de rango: acceso al array Args: [ 1] = A { ... } [ 2] = ...
Combobox no se actualiza. Estoy perdido y me urge.
Prueba con: ON CHANGE (vlcomponente:=alltrim(tlcomponente[Max( vvcomponente, 1 )]),ovlcomponente:refresh()) update
Combobox no se actualiza. Estoy perdido y me urge.
Perfecto. Muchisimas Gracias, Maestro.
Combobox not change
The code below does not work: [code=fw:10yhaerl]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">STATIC</span> aQtdes, cQtde<br /><br /><span style="color: #000000;">&#40;</span>...<span style="color: #000000;">&#41;</span><br /><br />aQtdes := <span style="color: #000000;"...
Combobox not change
Fabio, Are you using it from a window or from a dialog ?
Combobox not change
I'm using Dialog. I use TSBUTTON, but it does not work with Window. Thanks, Fabio Souza
Combobox not change
Fabio, Please build and test samples\combos.prg and check if it works for you, thanks
Combobox o dbcombo
Amigos: Tengo un array que contiene aHoras :={"H00_A1","H01_A2","H02_A3",....} Que debo usar combobox o dbcombo con el array y Hay alguna forma que me muestra solo los 00, 01, 02 y al seleccionar seleccione todo el string? Muchas gracias. Ruben Fernandez.
Combobox o dbcombo
Hola, puedes utilizar cualquiera pieso, un combo normal, puedes post procesar el resultado en On CHANGE y creo que tambien en el VALID, para que en funcion de tu seleccion tengas el resultado que esperas, por otra parte el DBCOMBO tambien te sirve, utilizando ITEMFIELD, LISTFIELD para los arreglos de visualizacion y ...
Combobox o dbcombo
Creo que lo mas sencillo es con dbCombo. Algo parecido al siguiente código. [code:1iummj1n] REDEFINE DBCOMBO cHora ID 4001 OF oDlg ITEMS &#123;"H00_A1",H01_A2","H02_A3"&#125; PROMPTS &#123;"00","01","02"&#125; [/code:1iummj1n]
Combobox o dbcombo
Gracias a los 2 muy amables. Saludos. Ruben Fernandez.
Combobox on BTNBAR
Hi, In a application, I use BUTTONBAR with TBtnBmp() to add the buttons. Is it possible to add also a COMBOBOX on BUTTONBAR , or do I have to use another class? I would like to keep using the BUTTONBAR, because the customers are used the work with this...
Combobox on BTNBAR
Marc, Just check not to cover any buttons ( added to sample testbar.prg ) @ 2, [color=#FF0000:27ezvh5l]350[/color:27ezvh5l] COMBOBOX oCbx VAR cItem ITEMS { "Testing", "this", "ComboBox" } ; SIZE 100, 300 [color=#FF0000:27ezvh5l]OF oBar [/color:27ezvh5l] PIXEL HEIGHTGET 22 [img:27ezvh5l]http&#58;//www&#46;pflegeplus...
Combobox on BTNBAR
Thank you Uwe, I will try it.
Combobox on Folder (Gradient-background) ?
Hello, I have a Problem, showing a Combobox on a Folder-Gradient-Background using Function [color=#FF0000:37dvp9jn]Gradientbrush[/color:37dvp9jn] ( needed for Gradient-painting on Folders ). Normal Brush and Image works. To define a Background-color, I tested : oCbx:nClrText := 0 // Black oCbx:nClrPane := 16777215 ...
Combobox on multidimensional array
Hi all, I have a multidimensional array like: aArray:=array(0,2) aadd(1,"Marc") aadd(2,"Luca") aadd(3,"Jannette") aadd(4,"Francis") and I would make a combobox with only the second element list (the names). Is there a quick way to make this directly into the REDEFINE COMBOBOX command line ? Thank you in advance
Combobox on multidimensional array
Marco, [code=fw:3phzftbp]<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: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</...
Combobox on multidimensional array
Hi Antonio, it runs. Thank you. I have just a problem trying to use the ArrTranspose() into the command syntax, essentially I have to replace the <aItems> with ArrTranspose(<aItems>)[2] but it doesn't runs, sure for a syntax problem. Any ideas ? Thank you. #xcommand REDEFINE COMBOLIST [ <oCbx> VAR ] <cVar> ; ...
Combobox on multidimensional array
Marco, Please try this: ArrTranspose(<aItems>)\[2\]
Combobox on multidimensional array
Great !! Thank you Antonio.
Combobox on multidimensional array
Marco I think the solution is: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=25496&start=0&hilit=arrtranspose">viewtopic.php?f=3&t=25496&start=0&hilit=arrtranspose</a><!-- l --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!--...
Combobox open and ESC
Hi, when combo is open and I press Escape dialog closes.I expect that only combo closesAny ideasThanksmarco #include "Fivewin.ch"FUNCTION MAIN()LOCAL oDlgLOCAL oComboLOCAL cVariab := SPACE( 10 )DEFINE DIALOG oDlg@ 1, 1 COMBOBOX oCombo VAR cVariab ITEMS { "AAAAAA", "BBBBBB", "CCCCCC", "DDDDDD", "EEEEEE" }ACTIVATE DI...
Combobox open and ESC
Hola amigo...Prueba con un VALID en el ACTIVATE del DIALOG.Espero te sirva. Saludos desde Argentina, Esteban.
Combobox open and ESC
Marco,I think that this may be a bug in TCombobox as other apps do close the combobox, not the dialog.You can try adding this to the KeyChar() method: if nKey == VK_ESCAPE ::close() return 0 endifI'm am not sure if you need to call the ::close() or ::closeUp() method so try both.Let us know what you find...
Combobox open and ESC
James, no goodI've tried but ....nothing <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> thanks
Combobox open and ESC
I didn't test it, but this might be a solution ?[code:1ht3dofg]FUNCTION MAIN&#40;&#41; LOCAL oDlg LOCAL oCombo LOCAL cVariab &#58;= SPACE&#40; 10 &#41; LOCAL CbRet &#58;= &#46;T&#46; DEFINE DIALOG oDlg @ 1, 1 COMBOBOX oCombo VAR cVariab ITEMS &#123; "AAAAAA", "BBBBBB", "CCCCCC", "DDDDDD", "EEEEEE" &#125; oC...
Combobox open and ESC
Meanwhile I did the test myself but I noticed that I couldn't open the combobox anymore.But if I click on the combobox (unfortunately without opening), pushing the Escape-key doesn't end the dialog box anymore. After having clicked on another field, the dialog box does end again if I push the Escape-key.So looking for ...
Combobox open and ESC
Marco:Try this way[code:56ewy7x6] ACTIVATE DIALOG oDlg CENTER VALID ! GetASyncKey&#40;VK_ESCAPE&#41; [/code:56ewy7x6]Regards
Combobox open and ESC
Armando,The problem is that the first time you press Esc the combobox should close, and then if you press Esc again, the dialog should close. Your VALID clause will prevent the dialog from closing when pressing Esc.I did some testing and the combobox is getting closed, but then the dialog is also closed. So, I now thin...
Combobox open and ESC
Marco,From FWH 8.08 you can do:...[b:2p4vhfi3]SetDialogEsc( .F. )[/b:2p4vhfi3]DEFINE DIALOG oDlg ...
Combobox open and ESC
OK, I have found the solution. Add this line to the method definitions in TCombobox. METHOD KeyDown inline ::close(), 1Antonio, will you add this to the FW source?Regards,James
Combobox open and ESC
James,That code would not process any KeyDown received msgs. We could try with:[code:26kj64k8] METHOD KeyDown&#40; nKey, nFlags &#41; CLASS TComboBox if nKey == VK_ESC &#58;&#58;Close&#40;&#41; return 1 endif return Super&#58;KeyDown&#40; nKey, nFlags &#41; [/code:26kj64k8]
Combobox open and ESC
Antonio,Of course. I didn't think it through.I tried your solution and it seems to be working. The incremental search is working as are the up and down arrows, home, end, pg dn, and pg up keys.You do need to change VK_ESC to VK_ESCAPE.James
Combobox open and ESC
Great!EMG
Combobox open and ESC
James,Already implemented for next FWH build.Thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Combobox open and ESC
I'm shocked <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> about how many [size=150:6sh71760]beautiful minds [/size:6sh71760] <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: -->in this forum!!!! <!-- s:wink: --...
Combobox over-ride ITEM array of values
To All I am trying to figure out how to use a combobox from resources that will allow me to insert a value other than the array values defined by the ITEM parameter. [code=fw:2rpu9rd0]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #000...
Combobox over-ride ITEM array of values
[code=fw:2baixvds]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">COMBOBOX</span> oCity  <span style="color: #0000ff;">var</span> cCity   <span style="color: #0000ff;">ID</span> <span style="color: #000000;">157</span> <span sty...
Combobox over-ride ITEM array of values
Enrico .. Thank you ! Rick
Combobox para llenar DBf
Buenas tardes, Alguno de ustedes me podria ayudar con esto: Necesito llenar un campo de una Dbf desde un Combobox. Ya intente usar el DBCombo pero debo crear una DBf para sus valores. La idea es cargar los valores del Combobox desde un array y tambien que permita visualizar el registro ya cargado al momento de modific...
Combobox para llenar DBf
local aMeses := {"Enero", "Febrero", "Marzo", ...}, oCbx, cMes := "" REDEFINE COMBOBOX oCbx VAR cMes ITEMS aMeses ID ID_MES OF oDlg ... if lSave ARCHIVO->CAMPO := cMes
Combobox para llenar DBf
MIl gracias!!!
Combobox para llenar DBf
Compuin; Si entiendo tu consulta, lo hago así: [code=fw:893wgsky]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   <span style="color: #0000ff;">REDEFINE</span> DBCOMBO aO<span style="color: #000000;">&#91;</span>_CmbM2<span style="color: #000000;">&#93;</span> <span style="color: #0000ff;">VAR</span>...
Combobox para llenar DBf
Gracias MarioG,
Combobox para llenar DBf
Hola. Vamos, a ver, en un entorno de tablas, el uso de dbCombo sólo es comprensible siempre y cuando mantengas un número pequeño de registros. ¿Por qué? Porque te los carga en un array. Si tengo 10 ó 20 registros en la tabla, pues bien, pero cuando tienes 800, 1000 o 5000 registros no es comprensible su uso. Además, si...
Combobox para llenar DBf
En el caso que me presentas el combobox agrega al campo de la dbf el valor del array (Seria la rutina de Incluir) . Como puedo cargar desde el dbf al combobox para actualizar?
Combobox para llenar DBf
Hola para eso deberas modificar la Clase dbCombo [code=fw:1fwd1ptg]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">REDEFINE</span> DBCOMBO aGet<span style="color: #000000;">&#91;</span>id_tipot<span style="color: #000000;">&#93;</span>                                           ...
Combobox problem
I have a combobox working OK The next one in a different Dialog will not show its Array after clicking on it. First example: Function Minpunten(cAlias, oDlwBew ) Local oDlp, oRadmenu, oCbx Local MyArrMinJn := {"J","N"} Local oMyComb DEFINE DIALOG oDlp RESOURCE "Minpunten" REDEFINE COMBOBOX oMyComb VAR cMinjn...
Combobox problem
Is the combo tall enough? Check also what really is in the array. EMG
Combobox problem
Dear Enrico, That's it. I did not paint the Combobox tall enough in the Workshop. Thank you. Jules
Combobox problem
In the sample program combos.prg when I press the enter key the dialog is closed. Regards Pier Luigi