473,404 Members | 2,174 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

ComboBox bug???

Hello All,

I have a combo-box that contains three items added at design time. When I
try to set the SelectedText property at run-time based on a value from a
SqlDataReader, the SelectedText is not set, but if I step through the code,
the SelectedText gets set. Any help will be greatly appreciated.

Using VB.Net 2003

Thanks,
Anthony
Nov 20 '05 #1
5 3358
Hi,

Try this.

Dim arColor() As String
arColor = KnownColor.GetNames(GetType(KnownColor))
ComboBox1.Items.AddRange(arColor)

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")
Ken
--------------------

"Anthony" <ac********@yahoo.com> wrote in message
news:#4**************@TK2MSFTNGP12.phx.gbl:
Hello All,

I have a combo-box that contains three items added at design time. When I

try to set the SelectedText property at run-time based on a value from a

SqlDataReader, the SelectedText is not set, but if I step through the
code,
the SelectedText gets set. Any help will be greatly appreciated.

Using VB.Net 2003

Thanks,
Anthony


--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.3 - Release Date: 6/18/2004
Nov 20 '05 #2
Ken,

I appreciate the quick response, and it worked.

Thanks for the help,

Anthony
"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi,

Try this.

Dim arColor() As String
arColor = KnownColor.GetNames(GetType(KnownColor))
ComboBox1.Items.AddRange(arColor)

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")
Ken
--------------------

"Anthony" <ac********@yahoo.com> wrote in message
news:#4**************@TK2MSFTNGP12.phx.gbl:
Hello All,

I have a combo-box that contains three items added at design time. When I
try to set the SelectedText property at run-time based on a value from a

SqlDataReader, the SelectedText is not set, but if I step through the
code,
the SelectedText gets set. Any help will be greatly appreciated.

Using VB.Net 2003

Thanks,
Anthony


--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.3 - Release Date: 6/18/2004

Nov 20 '05 #3
Is there any difference between these two statements?

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")

vs

ComboBox1.Text = "Blue"

They both appear to set the SelectedIndex (if Blue weren't in the list both
will set it to -1).

Just curious.

Greg

"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi,

Try this.

Dim arColor() As String
arColor = KnownColor.GetNames(GetType(KnownColor))
ComboBox1.Items.AddRange(arColor)

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")
Ken
--------------------

"Anthony" <ac********@yahoo.com> wrote in message
news:#4**************@TK2MSFTNGP12.phx.gbl:
Hello All,

I have a combo-box that contains three items added at design time. When I
try to set the SelectedText property at run-time based on a value from a

SqlDataReader, the SelectedText is not set, but if I step through the
code,
the SelectedText gets set. Any help will be greatly appreciated.

Using VB.Net 2003

Thanks,
Anthony


--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.3 - Release Date: 6/18/2004

Nov 20 '05 #4
Hi,

FindString finds an item in the combobox that starts with those
letters. For example combobox1.text = "blu" makes selectionindex=-1
combobox1.findstring("blu") comes up with blue.

Ken
-------------------

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:OK**************@TK2MSFTNGP10.phx.gbl:
Is there any difference between these two statements?

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")

vs

ComboBox1.Text = "Blue"

They both appear to set the SelectedIndex (if Blue weren't in the list
both
will set it to -1).

Just curious.

Greg

"Ken Tucker [MVP]" <HYPERLINK
"mailto:vb***@bellsouth.net"vb***@bellsouth.ne t> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi,

Try this.

Dim arColor() As String
arColor = KnownColor.GetNames(GetType(KnownColor))
ComboBox1.Items.AddRange(arColor)

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")
Ken
--------------------

"Anthony" <HYPERLINK "mailto:ac********@yahoo.com"ac********@yahoo. com>
wrote in message
news:#4**************@TK2MSFTNGP12.phx.gbl:

Hello All,

I have a combo-box that contains three items added at design time.
When
I

try to set the SelectedText property at run-time based on a value from
a

SqlDataReader, the SelectedText is not set, but if I step through
the
code,
the SelectedText gets set. Any help will be greatly appreciated.

Using VB.Net 2003

Thanks,
Anthony

--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.3 - Release Date: 6/18/2004


--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.3 - Release Date: 6/18/2004
Nov 20 '05 #5
Even though that solution worked I am curious as to why just stepping
through the debugger without changing any code caused it to work.
I am having a similair problem but with a listbox in an ASP.NET
page. On the click of a button items are being added to the listbox which
do not show up unless I put a break point in the code and sort of give
it time to show up it seems. It seems if the pause is about 1 second or
greater
it shows up otherwise it does not. Same as Anthony's problem.

Kenny.

"Ken Tucker [MVP]" <vb***@bellsouth.net> wrote in message
news:Oh**************@TK2MSFTNGP11.phx.gbl...
Hi,

FindString finds an item in the combobox that starts with those
letters. For example combobox1.text = "blu" makes selectionindex=-1
combobox1.findstring("blu") comes up with blue.

Ken
-------------------

"Greg Burns" <greg_burns@DONT_SPAM_ME_hotmail.com> wrote in message
news:OK**************@TK2MSFTNGP10.phx.gbl:
Is there any difference between these two statements?

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")

vs

ComboBox1.Text = "Blue"

They both appear to set the SelectedIndex (if Blue weren't in the list
both
will set it to -1).

Just curious.

Greg

"Ken Tucker [MVP]" <HYPERLINK
"mailto:vb***@bellsouth.net"vb***@bellsouth.ne t> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Hi,

Try this.

Dim arColor() As String
arColor = KnownColor.GetNames(GetType(KnownColor))
ComboBox1.Items.AddRange(arColor)

ComboBox1.SelectedIndex = ComboBox1.FindString("Blue")
Ken
--------------------

"Anthony" <HYPERLINK "mailto:ac********@yahoo.com"ac********@yahoo. com> wrote in message
news:#4**************@TK2MSFTNGP12.phx.gbl:

> Hello All,
>
> I have a combo-box that contains three items added at design time.
> When


I
>
> try to set the SelectedText property at run-time based on a value from > a
>
> SqlDataReader, the SelectedText is not set, but if I step through
> the
> code,
> the SelectedText gets set. Any help will be greatly appreciated.
>
> Using VB.Net 2003
>
> Thanks,
> Anthony
>

--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.3 - Release Date: 6/18/2004


--
Outgoing mail is certified Virus Free.
Checked by AVG Anti-Virus (http://www.grisoft.com).
Version: 7.0.230 / Virus Database: 263.3.3 - Release Date: 6/18/2004

Nov 20 '05 #6

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

Similar topics

13
by: Mr. B | last post by:
Here's the situation... You've a combobox with Items already added. Say they look like this (or even lines of text): 10-00-232 10-00-256 10-01-006 10-01-213 10-02-200
7
by: Nicolae Fieraru | last post by:
Hi All, I am trying to change the rowsource of a combobox when I click on it. I played with many events, associated with the form and the combobox, but still haven't figured out what is the way...
8
by: Zlatko Matię | last post by:
There is a form (single form) and a combobox. I want that current record of the form is adjusted according to selected value in the combobox. Cuurrent record should be the same as the value in the...
1
by: anonymous | last post by:
I've been trying to put a them, please help me out. Here's the major parts of my code: public Form1() { DataSet myDataSet = new DataSet("myDataSet"); DataTable testTable = new...
3
by: TT (Tom Tempelaere) | last post by:
Hay there, I'm writing my own DataGridComboBoxColumn because .NET 1.1 does not have one (I hope .NET 2.0 supplies one). I based it on this article:...
2
by: Don | last post by:
I've looked high and low for some code that will allow me to have a combobox with a flat borderstyle. I found a few examples, but nothing that was really usable for me. I had the following...
4
by: jon f kaminsky | last post by:
Hi- I've seen this problem discussed a jillion times but I cannot seem to implement any advice that makes it work. I am porting a large project from VB6 to .NET. The issue is using the combo box...
6
by: dbuchanan | last post by:
VS2005 I've been reading all the help I can on the topic (MSDN, other) but I can't make sense of this. Desired behavior; The user is to choose from the displayed list of the databound combobox...
1
by: polocar | last post by:
Ciao a tutti, leggendo qua e lą per il forum ho scoperto che non sono l'unico ad avere questo problema. Se si inserisce un controllo ComboBox in un form di C#, non č possibile impostare la sua...
5
by: Rich | last post by:
Hello, I have a search application to search data in tables in a database (3 sql server tables). I populate 2 comboboxes with with data from each table. One combobox will contain unique...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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...
0
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,...
0
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...
0
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...
0
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...
0
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,...
0
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...

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.