473,791 Members | 2,861 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

old style combobox

As much as 10 years ago we had a combobox that would display, in a
dropdownlist (not a dropdown where you can enter code in a textbox element
of the cbox), a series of items that would be accessible by striking keys in
sequence. So you would strike 'b', 'e', 'r', 'n' and you would get to
'bernie' not 'norman', and not 'bat' if 'bat' were followed by 'bernie' in
the list.

I have yet to find this simple functionality in vb .net, not in the standard
combobox, not in Infragistics, not in C1, not anywhere. Wherever I have
been sent, the cbox is flawed. Why can't this be done?

Anyone know of a combobox that will solve this simple problem - please don't
send me after flawed code, like 'it works except....; or 'it works but you
have to follow the keystrokes by striking the tab key (didn't have to 10
years ago).

Thanks for any help.

Bernie Yaeger


Nov 20 '05 #1
4 1546
Hi,

http://www.thecodeproject.com/vb/net...e_combobox.asp

Ken
-------------------
"Bernie Yaeger" <be*****@cherwe llinc.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
As much as 10 years ago we had a combobox that would display, in a
dropdownlist (not a dropdown where you can enter code in a textbox element
of the cbox), a series of items that would be accessible by striking keys in sequence. So you would strike 'b', 'e', 'r', 'n' and you would get to
'bernie' not 'norman', and not 'bat' if 'bat' were followed by 'bernie' in
the list.

I have yet to find this simple functionality in vb .net, not in the standard combobox, not in Infragistics, not in C1, not anywhere. Wherever I have
been sent, the cbox is flawed. Why can't this be done?

Anyone know of a combobox that will solve this simple problem - please don't send me after flawed code, like 'it works except....; or 'it works but you
have to follow the keystrokes by striking the tab key (didn't have to 10
years ago).

Thanks for any help.

Bernie Yaeger

Nov 20 '05 #2
Cor
Hi Bernie,

I also saw some code from which I thought: Is that real the solution for
this?

I have seen ver few documented bugs from the dotnet combobox textbox, while
we all who are active in the dotnet newsgroups have seen that there are
often problems with is.

However there is one documented and that is the one which says that the
first character entered in a combobox textbox is not correct processed.
After the second one it will it says. (But the text is not clear for me if
that will be always correct or everytime again false when done).

I would make you attent on that because I think it has to do with your
problem.

Cor
Nov 20 '05 #3
Hi Ken,

Tx - I have the code and I'm just about to play around with it.

Tx again for your help.

Bernie
"Ken Tucker [MVP]" <vb***@bellsout h.net> wrote in message
news:un******** ******@TK2MSFTN GP11.phx.gbl...
Hi,

http://www.thecodeproject.com/vb/net...e_combobox.asp

Ken
-------------------
"Bernie Yaeger" <be*****@cherwe llinc.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
As much as 10 years ago we had a combobox that would display, in a
dropdownlist (not a dropdown where you can enter code in a textbox element of the cbox), a series of items that would be accessible by striking keys
in
sequence. So you would strike 'b', 'e', 'r', 'n' and you would get to
'bernie' not 'norman', and not 'bat' if 'bat' were followed by 'bernie'

in the list.

I have yet to find this simple functionality in vb .net, not in the

standard
combobox, not in Infragistics, not in C1, not anywhere. Wherever I have
been sent, the cbox is flawed. Why can't this be done?

Anyone know of a combobox that will solve this simple problem - please

don't
send me after flawed code, like 'it works except....; or 'it works but you have to follow the keystrokes by striking the tab key (didn't have to 10
years ago).

Thanks for any help.

Bernie Yaeger


Nov 20 '05 #4
Hi Cor,

Thanks for your reply, as always. I did find some code that might solve the
problem; working on it now.

Tx again,

Bernie

"Cor" <no*@non.com> wrote in message
news:ed******** ******@TK2MSFTN GP09.phx.gbl...
Hi Bernie,

I also saw some code from which I thought: Is that real the solution for
this?

I have seen ver few documented bugs from the dotnet combobox textbox, while we all who are active in the dotnet newsgroups have seen that there are
often problems with is.

However there is one documented and that is the one which says that the
first character entered in a combobox textbox is not correct processed.
After the second one it will it says. (But the text is not clear for me if
that will be always correct or everytime again false when done).

I would make you attent on that because I think it has to do with your
problem.

Cor

Nov 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
4950
by: Bhom | last post by:
I am trying to create a grid on a form that looks like the 'Split Transaction' grid in Quicken - it allows drop down controls in various cells of grid to make a selection, and then stores the text of the drop down list/combo boxes in the grid. I know how to use hidden combo/list boxes that display when a user clicks on a cell that is setup with the drop down button and event. However, when the user makes a selection, the ID (bound...
1
1921
by: David | last post by:
Hello, I would like to change the style of a specific column in a DataGrid - into a ComboBox. Namely, when the user selects that specific column (in any row), he will see a ComboBox which is binded to a specific column in table B, while the DataGrid is binded to table A. Any help will be appreciated. Thanks, David
0
1087
by: David | last post by:
Hello, I practice C#, and I would like to change the style of a specific column in a Windows Forms DataGrid - into a ComboBox. Namely, when the user selects that specific column (in any row), he will see a ComboBox which is binded to a specific column in table B, while the DataGrid is binded to table A. Any help will be appreciated. Thanks,
1
4330
by: Morten Wennevik | last post by:
Like a Button and RadioButton has a FlatStyle and a TextBox has a BorderStyle, is it possible to set a ComboBox to appear in the same way? No 3D borders. -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
16
2345
by: Mike L | last post by:
This is for a Win form. My combo box DropDownStyle is set to simple. When the user types in a 3 character string in the combo box, the closest item in the collection is shown, right below where the user typed in the 3 character string. When the user leaves the combo box I want it to automatically select the item in the collection that is right below where the user typed in the 3 character string.
8
328
by: Bernie Yaeger | last post by:
As much as 10 years ago we had a combobox that would display, in a dropdownlist (not a dropdown where you can enter code in a textbox element of the cbox), a series of items that would be accessible by striking keys in sequence. So you would strike 'b', 'e', 'r', 'n' and you would get to 'bernie' not 'norman', and not 'bat' if 'bat' were followed by 'bernie' in the list. I have yet to find this simple functionality in vb .net, not in...
0
1039
by: Ben Coats | last post by:
Hey I'm trying to find code for an Explorer-style Directory ComboBox. (You know, it display "Desktop", "My Computer", all drives, etc., but it has a treeview control inside the combobox so that you can navigate through the file system as well.) I've found some on the web, but all of them just have the drives and desktop directories and are static in that you cannot expand the directories. I normally build a treeview control to do it with,...
4
14181
by: Ben Coats | last post by:
Hey, I'm trying to find code for an Explorer-style Directory ComboBox. (You know, it display "Desktop", "My Computer", all drives, etc., but it has a treeview control inside the combobox so that you can navigate through the file system as well.) I've found some on the web, but all of them just have the drives and desktop directories and are static in that you cannot expand the directories. I normally build a treeview control to do it with,...
1
2278
by: Henry Jan | last post by:
Hi All, I want to create ComboBox and ListBox control with MAC style as this one on .NET: http://www.econtechvn.com/en/macuisuite_detail.htm However, it's really difficult with the scrollbar. I don't know how to replace the scrollbar of the system with MAC style scrollbar. Please help me. Thanks.
4
1576
by: GS | last post by:
in visual studio 2005 express VB I found mention of drop style for listbox but so far my searches came up empty as to how and what they are. I was to set height and I figure I can probably do something with setting height during the focus events to simulate drop down list However if there are drop down list style or dropdown list then it would be better for to use them.
0
9669
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9515
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10426
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10154
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9993
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7537
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5558
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4109
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2913
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.