PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → strange proble with combo box
strange proble with combo box
Débuté par chc, 28 aoû. 2008 01:58 - 3 réponses
Posté le 28 août 2008 - 01:58
recently I found that if you navigate combo box content using keyboard (like type in the first 2 character ) without using mouse to click the selection and tab/click to other control . you will notice the combo box return nothing .
any work around for this bugs ?
Posté le 28 août 2008 - 17:41
Hello chc,
I have no problem at all. Couldn't replicate it.
Regards,
Frans
Posté le 28 août 2008 - 18:17
yo chc
maybe this wil help you:
ReturnValue = combo_Naam..DisplayedValue

cheers Marc. :cool:
Posté le 29 août 2008 - 16:35
Hi,
this behaviour is present since WD7 and you'll probably find that PC Soft consider it a feature and not a bug, though I agree with you. Actually, the row selection process of the combo when the box is editable and assisted input is on is only executed when a value is selected by either the mouse or the up/down key, although it looks as if the value was selected.
A work around that works for me:
Entry:
myVal=MySelf
Row Selection:
myVal = MySelf
Exit:
IF myVal MySelf THEN
ExecuteProcess(MySelf..Name, trtSelection)
END

Regards
Mat