Click here to Skip to main content
Sign Up to vote bad
good
See more: C#4.0
In my application combobox is one column field of datagridview.when i selecting items in combobox corresponding data is display from database in to the TextBox Column Field of datagridview ...how to do?
Posted 22 Feb '13 - 22:47
Edited 22 Feb '13 - 22:50


1 solution

private void showSelectedButton_Click(object sender, System.EventArgs e) {
    int selectedIndex = comboBox1.SelectedIndex;
    Object selectedItem = comboBox1.SelectedItem;
 
    MessageBox.Show("Selected Item Text: " + selectedItem.ToString() + "\n" +
                    "Index: " + selectedIndex.ToString());
}
  Permalink  
Comments
KARISHMAKANNAN - 24 Feb '13 - 12:38
But this solutions combobox is outside na? But in my aplication combobox is inside in datagridview ie one column of datagrid is combobox.when i selecting combo box corresponding data will be display in datagridTexbox ....how to do this?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Mahesh Bailwal 353
1 Sergey Alexandrovich Kryukov 339
2 Maciej Los 290
3 CPallini 245
4 Rohan Leuva 175
0 Sergey Alexandrovich Kryukov 9,162
1 OriginalGriff 7,194
2 CPallini 3,923
3 Rohan Leuva 3,176
4 Maciej Los 2,633


Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 23 Feb 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid