473,756 Members | 6,852 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

MultiColumn ComboBox, how?

I have ask this before and I got a link to a solution where you actually
show a new from on top of everything with a listbox in, where you can have
multicolumns.. and that's what I use now.. That look sokay but it's not a
true Combobox... at all..

So my my customer wants to be able to type stuff into the textfield of
combobox and then it's preselected in the list... With the solution I got
that' simposiible.. since there are no real connection between the Combobox
and the Listbox showing on top of all as a form.

How do I do a TRUE MultiColumn Combobox? Is it even possibel to build
without knowing everything about owenerdrawing and that stuff ...

regards
/Lars
Nov 20 '05 #1
6 3210
Hi Lars,

I have this from a not ready snippet from me, when you do not understand it
reply. It goes synchroon.

\\\
Dim dt As DataTable = ds.Tables(0)
dv = New DataView(dt)
dv.Sort = "Id"
cma = DirectCast(Bind ingContext(dv), CurrencyManager )
TextBox1.DataBi ndings.Clear()
Dim mybinding As Binding = New Binding("text", dv, "Id")
TextBox1.DataBi ndings.Add(mybi nding)
ListBox1.DataSo urce = dv
ListBox1.Displa yMember = "Id"
ComboBox1.DataS ource = dv
ComboBox1.Displ ayMember = "Id"
///

I hope this helps?

Cor
Nov 20 '05 #2
Hi,

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

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

Ken
----------------------
"Lars Netzel" <no****@no.no > wrote in message
news:Ou******** ******@TK2MSFTN GP10.phx.gbl...
I have ask this before and I got a link to a solution where you actually
show a new from on top of everything with a listbox in, where you can have
multicolumns.. and that's what I use now.. That look sokay but it's not a
true Combobox... at all..

So my my customer wants to be able to type stuff into the textfield of
combobox and then it's preselected in the list... With the solution I got
that' simposiible.. since there are no real connection between the Combobox
and the Listbox showing on top of all as a form.

How do I do a TRUE MultiColumn Combobox? Is it even possibel to build
without knowing everything about owenerdrawing and that stuff ...

regards
/Lars

Nov 20 '05 #3
Thanx, seems like the Code Project one is something I'd need... I wonder why
I did'nt get that link the first time I asked:) I got the link with the
crappy solution

/Lars

"Ken Tucker [MVP]" <vb***@bellsout h.net> skrev i meddelandet
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Hi,

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

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

Ken
----------------------
"Lars Netzel" <no****@no.no > wrote in message
news:Ou******** ******@TK2MSFTN GP10.phx.gbl...
I have ask this before and I got a link to a solution where you actually
show a new from on top of everything with a listbox in, where you can have
multicolumns.. and that's what I use now.. That look sokay but it's not a
true Combobox... at all..

So my my customer wants to be able to type stuff into the textfield of
combobox and then it's preselected in the list... With the solution I got
that' simposiible.. since there are no real connection between the Combobox and the Listbox showing on top of all as a form.

How do I do a TRUE MultiColumn Combobox? Is it even possibel to build
without knowing everything about owenerdrawing and that stuff ...

regards
/Lars

Nov 20 '05 #4
But... okay.. I still have a problem... I need to add this into a cell in a
datagrid!

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

How do I do that?

I can't be the first one ever to need a Combobox with multicolumns as a
cell in a Datagrid am i? It's standard in Access 97 .. if you work with
forms there.. but it .NET everything seems tricky!

/Lars

"Ken Tucker [MVP]" <vb***@bellsout h.net> skrev i meddelandet
news:%2******** ********@TK2MSF TNGP10.phx.gbl. ..
Hi,

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

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

Ken
----------------------
"Lars Netzel" <no****@no.no > wrote in message
news:Ou******** ******@TK2MSFTN GP10.phx.gbl...
I have ask this before and I got a link to a solution where you actually
show a new from on top of everything with a listbox in, where you can have
multicolumns.. and that's what I use now.. That look sokay but it's not a
true Combobox... at all..

So my my customer wants to be able to type stuff into the textfield of
combobox and then it's preselected in the list... With the solution I got
that' simposiible.. since there are no real connection between the Combobox and the Listbox showing on top of all as a form.

How do I do a TRUE MultiColumn Combobox? Is it even possibel to build
without knowing everything about owenerdrawing and that stuff ...

regards
/Lars

Nov 20 '05 #5
Lars,

Is it possible that with your next question you add this direct?
But... okay.. I still have a problem... I need to add this into a cell in a datagrid!


I hope you find your solution?

Cor
Nov 20 '05 #6
yes, see my next question
"Cor Ligthert" <no**********@p lanet.nl> skrev i meddelandet
news:%2******** *******@tk2msft ngp13.phx.gbl.. .
Lars,

Is it possible that with your next question you add this direct?
But... okay.. I still have a problem... I need to add this into a cell
in a
datagrid!


I hope you find your solution?

Cor

Nov 20 '05 #7

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

Similar topics

0
1544
by: Keith Smith | last post by:
How can this be done in C#...? http://www.codeguru.com/Cpp/controls/combobox/multicolumncombos/article.php/c1825/
4
2629
by: kackson | last post by:
Hi. I attempted to create a multicolumn listbox for my web based aspx application. I search the net, all I get is something like listview or I need to have system.windwos.form. But for the goodness of my brain, I cant seem to find it anywhere and just not able to do a "using System.WIndows.form". WHere on earth can I get this work? Please help! I just need a simple multicolumn listbox. Why is this so difficult? :(
0
1004
by: jaYPee | last post by:
I'm wondering why if there is an example of using a multiplecolumn combobox in datagrid control. thanks in advance
7
3068
by: Aaron Smith | last post by:
I would like to try to make a combo box have multiple columns. Does anyone know of a good way to attempt this? I saw a project on thecodeproject to do this, I just didn't like the way it looked. I want it to look almost like a datagrid with column lines in it to seperate the columns.. And, I would like to make it bigger than what the combo control itself is... Example.. They click the down button on the combo box, and it opens the drop...
1
9370
by: Mike Swans | last post by:
Has anyone any solutions to multicolumns dropdown combobox? Like to see how to implement it. Thanks!
7
6121
by: Paul Bromley | last post by:
How can I use this please - I need 2 columns. I have been having difficulty finding info on this and the 2005 Treeview control today. Many thanks for any links or info, Paul Bromley
1
2384
by: vijay dahite | last post by:
can anybody tell me how to write code for multicolumn combobox in vb6.0 plzzzz... vijay
5
17763
by: WRH | last post by:
Hello I want to have a multicolumn listbox. I never used one before so I looked at a Help example. I set the multicolumn property and the column width and tested with this example... this.listBox3.Items.AddRange(new object { "Item 1, column 1", "Item 2, column 1", "Item 3, column 1",
1
1510
by: jg007 | last post by:
I am porting something from access to c# and the access project has a multicolumn combo box which c# does not seem to have, I have found a few things with google but either they do not seem to be very good or there is another issue. also I am linking the combobox to a dataset so it would be best if I can find something that works well with a dataset for it's datasource, also if it has autocomplete built in that would be a help thanks
0
9384
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
9212
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
9790
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9779
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
8645
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7186
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
6473
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5069
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3276
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.