Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Combobox is too fast for client
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00646250
Message ID:
00646609
Views:
11
>Stephen,
>
>The typing speed in the combo is controilled by the value of the _dblclick variable. You can adjust this easily by using a combobox class. Give the class two new properties named OldDblClick and NewDblClick. In the class designer you can set the NewDblClick to the value you want for the combobox and in the combobox's GotFocus put this;
>
>
>This.OldDblClick = _DblClick
>_DblClick = This.NewDblClick
>
>
>In the LostFocus put this;
>
>
>_DblClick = This.OldDblClick
>
>
>By doing this you will have a combobox that has a longer _DblClick and still not affect any other things controlled by the _DblCilck value (because it is restored when the Combo does not have focus).


Thanks. That is exactly what I am going to do, SubClass, that is.

__Stephen
Previous
Reply
Map
View

Click here to load this message in the networking platform