Questions tagged [selectedindexchanged]

A Microsoft .NET Framework event which occurs when the SelectedIndex property has changed.

A Microsoft .NET Framework event which occurs when the SelectedIndex property has changed.

The event can be raised from ComboBox, GridView, ListControl and ListBox objects.

http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.selectedindexchanged(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.selectedindexchanged(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.listcontrol.selectedindexchanged(v=vs.110).aspx
http://msdn.microsoft.com/en-us/library/system.windows.forms.listbox.selectedindexchanged(v=vs.110).aspx

305 questions
-1
votes
1 answer

Multiple JList selected indexes breaking each other

I have a simple interface that is designed to select one or more seats in a theater and reserve them for yourself. I have three columns: zone / row / seat. You select the first to populate the second, and the second to populate the third. When I…
Kalec
  • 2,681
  • 9
  • 30
  • 49
-2
votes
1 answer

How to tranfer selected row data from gridview to TextBoxes when clicking button using JavaScript

I have created gridview and it will shown as popup gridview.Now, i need to add the button on this gridview to transfer selected row's column values to the TextBoxes when clicking the button (this is similar to OnSelecetedIndexChanged,but i need to…
Ram
  • 45
  • 2
  • 16
-2
votes
2 answers

c# Exception with combobox.SelectIndexChanged after loading data to database

I have a problem with a event SelectIndexChanged after populating with a Database. The combobox is populating in FORMLOAD event QueryAssist queryAssist = new QueryAssist(); DataTable dataTable = new DataTable(); dataTable =…
rul3z
  • 173
  • 1
  • 16
-2
votes
1 answer

Using Index in If statement for SlecetedIndexChanged Event VB.NET

I have a dropdown list with 4 values. I'm trying to add an If statement in the event that a value is selected from the dropdown list. Each value in the dropdown list enables another dropdown list later on in the form. I have no syntax errors when…
Hasib Ibradzic
  • 29
  • 1
  • 12
-2
votes
1 answer

how to get checked or unchecked in checkbox list

Check box list how to get boolean value of the check box list likewise if checked return true if unchecked return false. i tried using for in selected it return true for all the check box.return boolean value based on checked and unchecked …
sifeee
  • 13
  • 1
  • 1
  • 7
1 2 3
20
21