472,362 Members | 1,749 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

Clearing items from combobox

Hola

I wanted to kno how to clear the current text that is displayed in my combobox
I am filling it with a query which is run against my database

I have tried this but it not work

Combobox1.text = "

am i using the wrong event
Can someone advise me with correction?
Jul 21 '05 #1
4 2016
I think anyone will have to have additional info to answer your question.
In the simpliest of cases, manually adding the items from the result of the
query, the line of code you illustrated will clear the text of the combo.
Therefore, I have to ask, does your statement that you are filling the combo
with a query, mean that the combo is bound to a query result? If so, where
the Combobox.text = "" instruction located; ie, what event? Are you setting
any other properties of the combo, ie, DisplayMember, etc. I don't know for
sure that I can answer the question, but I know I would need more info to
answer it. Maybe someone else can answer it with the current info, I can't.
If you provide answers to these questions, maybe someone can answer the
problem question.

http://www.knowdotnet.com

"Newbee" <an*******@discussions.microsoft.com> wrote in message
news:EA**********************************@microsof t.com...
Hola,

I wanted to kno how to clear the current text that is displayed in my combobox. I am filling it with a query which is run against my database.

I have tried this but it not work.

Combobox1.text = ""

am i using the wrong event?
Can someone advise me with correction?

Jul 21 '05 #2
Newbee:

What event are you firing this from? Is it a bound control or are you
populating it as you walk through a datareader for instance.

I just added a bound combobox control to a form, bound it to an array and
used this code:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

ComboBox1.Text = String.Empty

End Sub
Which worked fine. If I had done it on Form_Load, it wouldn't have b/c the
binding took place after I called this, perhaps that's the problem? In
addition, I set the SelectedIndex to -1 and that cleared it as well.
ComboBox1.SelectedIndex = -1

Can you post the whole code snippet or tell me more about how it's populated
and where you are calling this from?

"Newbee" <an*******@discussions.microsoft.com> wrote in message
news:EA**********************************@microsof t.com...
Hola,

I wanted to kno how to clear the current text that is displayed in my combobox. I am filling it with a query which is run against my database.

I have tried this but it not work.

Combobox1.text = ""

am i using the wrong event?
Can someone advise me with correction?

Jul 21 '05 #3
I'd seriously recommend another approach....First, pull over two queries
with two dataadapters. If the tables are in a Parent Child format, (where
the top combobox uses the parents data and the child data is displayed in
the bottom one, you may want to use a DataRelation). Or, if they aren't,
you can just bind the bottom one to a dataview and set it's rowfilter to
correspond to whatever was selected in the top combobox.

DataReaders rock and they are very easy to use..but you'll potentially be
making a LOT of trips to the DB that aren't necessary if you do it that way.

However, more to the point, what happens if you set the selectedIndex of the
combobox to -1? That should do it for you although I just used similar code
and can't cause the problem to happen.
If you want to pursue the DataBound method, this should help, and either
way, the -1 index should do it for you.
Here's some code I use to do essentailly the same thing with a grid. I bind
the grid to a dataview..Then when the comboboxes selectedindex changes, I
reset the rowfilter:
Dim dv2 As New DataView(ds.Tables(0))

dv2.RowFilter = "Work_Type = '" CType(cboDepartment.SelectedItem, String)"'"

"Newbee" <an*******@discussions.microsoft.com> wrote in message
news:4B**********************************@microsof t.com...
I am filling the combobox like so:
Try
GioCn.Open()
Dim reader3 As SqlDataReader
reader3 = cmd.ExecuteReader()
While reader3.Read
ComboBox1.Items.Add(reader3.GetSqlString(0))
End While
Catch ex As Exception
MsgBox(ex.Message)
Finally
GioCn.Close()
End Try

The above coding is fired when the combobox0 (the combobox above it) value is changed. (valuechanged). i.e when combobox0 value is changed, this code
is run to fill comboBox1. I write the combobox1.text = "" in a button onclick event. (like a reset button)
the code does not seem to clear the text value of my combobox!!! :(

Jul 21 '05 #4
I'm about to head home now...if you want, I can send you a working example
of this. Cheers,

Bill
"Newbee" <an*******@discussions.microsoft.com> wrote in message
news:4B**********************************@microsof t.com...
I am filling the combobox like so:
Try
GioCn.Open()
Dim reader3 As SqlDataReader
reader3 = cmd.ExecuteReader()
While reader3.Read
ComboBox1.Items.Add(reader3.GetSqlString(0))
End While
Catch ex As Exception
MsgBox(ex.Message)
Finally
GioCn.Close()
End Try

The above coding is fired when the combobox0 (the combobox above it) value is changed. (valuechanged). i.e when combobox0 value is changed, this code
is run to fill comboBox1. I write the combobox1.text = "" in a button onclick event. (like a reset button)
the code does not seem to clear the text value of my combobox!!! :(

Jul 21 '05 #5

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

Similar topics

3
by: Wayne Wengert | last post by:
I am trying to populate a combobox with a lisy of items. I want the 1st item to be "Make a Selection" and the following items will be names from a table in my DB (See code below). When I run the...
0
by: rmatteson | last post by:
I am trying to figure out how to clear all items from a combobox (Access 2002). On my form, I have to comboboxes. Combobox 2 is populated with a set of child data dependent on the parent data...
0
by: tupolev | last post by:
Hi, I already post this item but now I know whats wrong: I want to allow the user to edit the items in a combobox. The problem is that the textchange event works just one time (for the first...
9
by: Don | last post by:
Is there any way to detect when an item has been added to the Items collection of a combobox or listbox? I am inheriting a Combobox and want to validate items before they are added to the...
4
by: Newbee | last post by:
Hola I wanted to kno how to clear the current text that is displayed in my combobox I am filling it with a query which is run against my database I have tried this but it not work ...
2
by: Brett Romero | last post by:
After I remove all items from a combobox, the last selected item remains in the display area. I've tried: mycbox.SelectedText = string.Empty; and mycbox.refresh(); How do I clear the...
1
by: ray well | last post by:
i'm loading a combobox from a database in code, by setting the the DataSouce to a table, and the DisplayMember to a field. it loads the first row into the text area of the combobox automatically....
7
by: Brad Pears | last post by:
I have something strange going on - pretty sure it used to work before - and now it does not... Why does the following code not clear a combo box? Me.cboLocation.Text = String.Empty OR ...
5
by: Kevinp | last post by:
I've spent the last four hours Google searching for a way to disable items in a Combobox. I found one example in C++ which I can't get to work and another in C# that I couldn't get to work either....
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
1
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
0
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...

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.