Winforms - .net, Combobox.datasource Will Change Selected Index?
Mar 1, 2012
Let me try to describe my problems in the simplest way: I have combobox1 and combobox2. I hope to achieve two things: Combox1 is bound to list1 (a list of string). When a user selects an item in list1, list2 (a list of string) will be obtained from database and combobox is bound to list2.If user specifies text1 in combobox1 and text2 in combobox2, then these two values will be shown in the comboboxes regardless of the bound lists.
[Code]...
So the results of above code is that goal 1 is achieved, but goal 2 is never achieved. combobox1.selected index is always 0 and combobox2.selected index is always 0 too.
View 1 Replies
ADVERTISEMENT
Nov 23, 2010
I am using a combobox which is connected by data source with a table. On this table I do a Select distinct with some filters. Everything is fine except the fact that when I click on the combobox and dont select a value the app hangs until I select one value.Sometimes I have this error, sometimes no.I call the value by the sub load:
[code]...
View 6 Replies
May 16, 2010
im having a problem regard combobox selected index.the combobox wont change its index when i type a text that is the same with one of the items and pressing tab. when i check its selected index its -1. ill give an example to make it simple..combobox items = AB, AC, AD i entered "AB" by simply typing it not by selecting in the dropdown.its index is -1, how can i make the index the same with the items in the drop down?
View 2 Replies
Aug 21, 2010
I am using vb 2008, DataBound Controls and typed dataset. My form is having Group Box (initially hidden) and some text box, combobox controls for Data Entry, and the code is
bsSales.AddNew()
txtCreditDays.Text = 20
dtDueDate.Value = dtSalesDate.Value.AddDays(txtCreditDays.Text)
cboGodown.SelectedIndex = 0 '
Default
gBox.Visible = True
dtSalesDate.Focus()
I have set the combo box to select the 1st record in the list however, when the next Statement that is "gBox.Visible=True" is executed, the Combo Box is again set to -1 position. Why is it?
View 2 Replies
May 19, 2012
I need to develop a function called SetComboBox that accepts the category(ies) in the ComboBox as a string and returns an integer indicating the index position of the category in the ComboBox. The function is supposed to set the category in the ComboBox Selected Index property to match the string category stored in a database for an inventory item.
View 1 Replies
Feb 6, 2010
I have a combo box setup with 4 items, with indexes ranging from 0 to 3.
Later in my code, I need to do a certain event depending on what is selected. To do this I thought about comparing what the index of the selected combo box item is, because integer comparison is faster than strings, right?
how I can grab the index of the selected value?
View 3 Replies
Oct 13, 2008
I can't seem to set the selected index or selected value of a DataGridView combobox when loading data from a database. My DGV has two combobox columns which are bound to datatables. The DGV itself is not bound initially. After adding a row, I select a value from each combobox which then populates the rest of the cells in the row. I'm using the EditingControlShowing event to add an eventhandler to catch the SelectedIndexChange of the combo boxes. This all works as needed. My issue comes when populating the DGV with saved data, I need to add the rows and set the selected index and/or selected value of each combo box. I've searched through various forums and articles for the last week with no luck.
I'm using VS2008 sp1, .NET 3.5 sp1 and SQL 2005 sp2 Express.
View 8 Replies
Feb 15, 2012
I have 1 Table Called "Menu" there are some textboxes and a combobox. I want to fill data in the Textbox called "Menu_Rate" on Selection of combobox selected item & coressponding rate of the Menu shoud be displayed in the textbox.
This is my Code
con.ConnectionString = "Data Source=localhost;Integrated Security=true;Initial Catalog=Restaurant"
cmd.CommandText = "select Menu_Rate from Menu where Menu_Name='" & cbMenu.SelectedItem & "'"
[Code].....
View 10 Replies
Jan 20, 2010
I am trying to have the index value of a selected item in a combobox returned to a variable. Then, if the variable = 1 (which would be the index of th second item in the combobox), I want a groupbox to be hidden (be invisible) on the form. Here is my code...Getting an error that says:
'ListIndex' is not a member of 'System.Windows.Forms.ComboBox'
Code:
Private Sub cbxAccounts_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim selection As Integer = CInt(cbxAccounts.ListIndex)
If selection = 1 Then gbxCheck.Hide()
End Sub
View 14 Replies
Jan 20, 2010
I am trying to have the index value of a selected item in a combobox returned to a variable. Then, if the variable = 1 (which would be the index of th second item in the combobox), I want a groupbox to be hidden (be invisible) on the form. Here is my code...Getting an error that says:[code...]
View 1 Replies
Mar 24, 2012
how do i get the selectedindex/item of a datagridview combobox column?what i want to do is change the back color of datagridcombobox when something is selected from the combobox?So, selecting 'false' will change the color to RED and selecting 'true' changes the color to GREEN.
View 39 Replies
Apr 3, 2011
What is the correct way of assigning the selected index's value from a listbox to a variable? The user selects an item in a listbox and then the output changes depending on their selection.
I use:variablename = listbox.text
in the listBox_SelectedIndexChanged event and this works.
When I use the button_click event I use:
variablename = listbox.selectedindex
But this does not work in the listbox_selectedindexchanged event.you let me know if it is okay to use it like I did above or if I will run into problems and why you cannot use the selectedindex method.
View 2 Replies
Mar 22, 2012
You wouldn't think so, but it does when the listbox is bound to a datasource (as far as I can see).
I've reduced the behaviour to the code below. The "if" line toggles between loading a list via data binding and loading a list "manually" (both use the same data table). In each case I set the selected index afterwards, and then change the parent form. With manual loading, the selected index is retained, with binding it is lost. I cannot see how this makes any sense - I don't see why changing the host form should alter any property of the list. Is this a bug?
Public Class Form1
Sub main() Handles Me.Load
Dim ListControl1 As ListBox = New ListBox
[Code]....
View 1 Replies
Aug 2, 2011
I am working on windows application form I am having one text box and Listbox. I want if user type on textbox, then List box item is going to be selected, that is working fine. List Box has more than 10,000 records. It takes time to select item from ListBox, while write data in textbox.
[Code]...
View 1 Replies
Dec 16, 2010
I have a combo boxthat holds a list of values that are a custom object and when a value is selected a few text boxes are loaded with data. I use the SelectedIndexChanged Event. Works wonderfully.I noticed that this even is also called when a user clicks the 'x' to close the form. I just wanted to understand the logic behind that. I get that the technically index is changing since the cbobox value is being set to nothing, but to me that just seems a little inefficient.
View 6 Replies
Nov 17, 2009
I am using the following code to populate a picturebox at form event load
c
Me.PictureBox1.Image = Image.FromFile(String.Format("{0}{1}.jpg", Subject_Values.TextBox1.Text, Me.list1_MLStxt.Text))
[code].....
View 6 Replies
Mar 23, 2012
I have a WinForms app built with VB.Net in VS 2010, and I'm scratching my head over the following issue.I have a form with a combobox which gets bound to a datasource when the form is loaded:
With Me.cboCompany
.DataBindings.Clear()
.DataSource = Me.m_dsBidResults.Tables("Company")
.ValueMember = "company_id"
[code].....
This seems to work fine, as long as the user doesn't switch focus to some other control and then go back to the combobox. After switching focus, if the user then changes the combobox selection to the first item in the dropdown list (SelectedIndex = 0), the SelectionChangeCommitted event fires, but the SelectedValue remains set to the previously selected value. I've verified this by adding a message box in the above event handler, displaying SelectedIndex and SelectedValue side-by-side.
'add this to SelectionChangeCommitted event handler MsgBox(String.Format("Selected Index: {0}, Selected Value: {1}", cboCompany.SelectedIndex, cboCompany.SelectedValue))
This does NOT happen if the user changes SelectedIndex to anything other than 0; everything behaves as expected. I've verified that the table I'm binding to contains unique values for company_id and company_name.Do I need to use some other event to verify that the SelectedValue has actually changed?
View 1 Replies
Sep 29, 2011
WInforms Combobox SelectionChangeCommitted event doesn't always change SelectedValue
View 1 Replies
Jun 18, 2010
How can i change the selected text to a font with a combobox?
I know how i can do this.
But how can i change it when nothing selected?
View 3 Replies
Jan 30, 2011
I use vb.net and windows form and sqlserver
I added Data Source(Microsoft SQL Server (SqlClient)) to my project. and now I need to change it to ODBC Data Source .
View 1 Replies
Aug 18, 2009
I'm selecting a ListItem as I add it to a ListItemCollection. Then I use that ListItemCollection as a datasource for a DropDownlist but the Selected List Item is not being selected after databind.[code]...
View 3 Replies
Jul 6, 2007
I'm selecting a ListItem as I add it to a ListItemCollection. Then I use that ListItemCollection as a datasource for a DropDownlist but the Selected List Item is not being selected after databind. Here is an example of the code:
[code]...
I'm trying to get this to work so I can return only a list of items, instead of a list of items and the selected value. Is there a way to make the DropDownList select the selected ListItem from the ListItemCollection (or any other type of collection)?
View 10 Replies
Jan 5, 2011
I am working with two seperate SQL statements when user conducts a search on my winforms app.A user can search based on an OrderNumber, OrderDate, ClaimNumber, ClaimDate, CustomerID, CustomerPhone One SQL statement returns the OrderNumber (in case the user searched based on OrderDate), which is used to execute another SQL statement, which returns the details about the order.
The results are populated in a gridview.Once the first statement is executed, I have a DataSource (DataSet). How can I append that datasource to display the fields from the second statement as well, keeping in mind, that the first statement could return multiple records, all of which will need to have the appropriate order details correctly linked.
View 1 Replies
Dec 30, 2009
Check out the simple code below :
[code]...
What happens is that when the Item2 is selected in the first listbox, the second listbox automatically changes its selected item to the Item2. This happens just the same with the other listbox.
View 3 Replies
Mar 15, 2010
I have a gridview that is bound to a datasource (Windows Forms, VB.NET). One of columns is a property of type boolean, and I want to show "yes/no" in the column instead of 0/1 or "true/false". Is this possible? Can you edit displays of columns that are bound?
View 1 Replies
Oct 31, 2009
Just started on vb.net
I have a combo box with "yes" and "no" with i select Yes i want the label2 to change the text to "yes" likewise with "no"
I've tried to code it in a logical way as possible but it just doesn't works except for the "wtf" so i think that overall my code is correct but the way i want to retrieve the selected item from combo box is wrong.
Public Class Form1
Dim aa As String
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
[Code].....
View 3 Replies
Jan 18, 2012
I am trying to use datasource and bind in my application to set a dropdown list to the results of a query. The dropdownlist populates correctly (shows each different type_name in the set) but later when I use ddltype.selectedvalue - I am always getting the value from the first item in the dataset. Here is the code.
[Code]...
View 1 Replies
Mar 7, 2009
How to list all font in combobox, and how to change selected font in list accordin font in combobox?
View 3 Replies
Dec 8, 2011
I know this is a very basic question but it has been awhile since I created a project with a database( been using a lot of XML). I created a database then selected it as a data source added some controls to some forms. Then I realized I needed to adjust some tables and I needed to add a whole new table. I deleted the controls and updated the tables that needed some adjustment. Now I would like another table. Can I disassociate the data source and do my adjustment to the database?
Have I created a problem with the binding object since I just deleted the controls on the form. I have written classes and some logic or else I might just start over. I guess I could copy those files but I am wondering if there is an easy way to fix what I have started. I realize that there are alot of questions here so any resource on how to modify a database that is attached to a VB.Net project.
View 5 Replies
Feb 22, 2011
i have a remove button like i would like to delete just sigle selected row from both datagridview and the acutual database.the problem I am having is in deleting selected row.if i dont use the parameter the contents of the table gets deleted ,i dont have any primery key just an ID field (AutoNumber).
[code]...
View 1 Replies