Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Execute code before SelectedIndexChanged in combobox occ
Message
From
22/02/2005 08:36:37
 
 
To
03/02/2005 10:18:24
General information
Forum:
ASP.NET
Category:
Forms
Miscellaneous
Thread ID:
00983452
Message ID:
00989191
Views:
17
you can take the idea to add the code, to your class.


Dim intLastIndex As Integer

Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
If Not AllowChangeIndex() Then
CType(sender, ComboBox).SelectedIndex = intLastIndex
End If

intLastIndex = CType(sender, ComboBox).SelectedIndex
End Sub

'You could also use a variable as a flag that indicates
'if the user can or not change the item
Private Function AllowChangeIndex() As Boolean
'Code to allow or not change the index
Return False
End Function
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform