Click here to Skip to main content
15,914,162 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how can i create .CHM files using .Net Pin
Vasudevan Deepak Kumar1-Sep-07 2:18
Vasudevan Deepak Kumar1-Sep-07 2:18 
QuestionEvent handling in Asp.net(C#) Pin
chnikhil31-Aug-07 19:52
chnikhil31-Aug-07 19:52 
AnswerRe: Event handling in Asp.net(C#) Pin
Vasudevan Deepak Kumar1-Sep-07 2:19
Vasudevan Deepak Kumar1-Sep-07 2:19 
Questionhow to generate sequential number of certain format?? Pin
biswa4731-Aug-07 19:46
biswa4731-Aug-07 19:46 
GeneralRe: how to generate sequential number of certain format?? Pin
mihirhp31-Aug-07 20:18
mihirhp31-Aug-07 20:18 
QuestionRe: how to generate sequential number of certain format?? Pin
biswa4731-Aug-07 23:40
biswa4731-Aug-07 23:40 
Questionprblem on checkboxlist Pin
biswa4731-Aug-07 19:45
biswa4731-Aug-07 19:45 
AnswerRe: prblem on checkboxlist Pin
mihirhp31-Aug-07 21:00
mihirhp31-Aug-07 21:00 
hello...

Try this out ...
I had done in C# and convert it to vb

Protected Sub CheckBoxList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
For i As Integer = 0 To CheckBoxList1.Items.Count - 1
Dim txt As String = ""
If CheckBoxList1.Items(i).Selected Then
txt = CheckBoxList1.Items(i).Text
Select Case txt
Case "A"
TextBox1.Enabled = True
Exit Select
Case "B"
TextBox2.Enabled = True
Exit Select
Case "C"
TextBox3.Enabled = True
Exit Select
Case "D"
TextBox4.Enabled = True
Exit Select
Case "E"
TextBox5.Enabled = True
Exit Select
Case Else
Exit Select
End Select
Else
txt = CheckBoxList1.Items(i).Text
Select Case txt
Case "A"
TextBox1.Enabled = False
Exit Select
Case "B"
TextBox2.Enabled = False
Exit Select
Case "C"
TextBox3.Enabled = False
Exit Select
Case "D"
TextBox4.Enabled = False
Exit Select
Case "E"
TextBox5.Enabled = False
Exit Select
Case Else
Exit Select

End Select
End If
Next
End Sub


AnswerRe: prblem on checkboxlist Pin
Imran Khan Pathan31-Aug-07 21:04
Imran Khan Pathan31-Aug-07 21:04 
QuestionHow to run an application with windowAuthentication connectionString from IIS? Pin
Kuricheti31-Aug-07 19:39
Kuricheti31-Aug-07 19:39 
AnswerRe: How to run an application with windowAuthentication connectionString from IIS? Pin
Michael Sync31-Aug-07 21:00
Michael Sync31-Aug-07 21:00 
QuestionRe: How to run an application with windowAuthentication connectionString from IIS? [modified] Pin
Kuricheti2-Sep-07 19:38
Kuricheti2-Sep-07 19:38 
AnswerRe: How to run an application with windowAuthentication connectionString from IIS? Pin
Michael Sync2-Sep-07 20:16
Michael Sync2-Sep-07 20:16 
QuestionRe: How to run an application with windowAuthentication connectionString from IIS? Pin
Kuricheti2-Sep-07 20:36
Kuricheti2-Sep-07 20:36 
AnswerRe: How to run an application with windowAuthentication connectionString from IIS? Pin
Michael Sync2-Sep-07 23:13
Michael Sync2-Sep-07 23:13 
QuestionGetting Data From database using webservices Pin
dhulipudi31-Aug-07 17:18
dhulipudi31-Aug-07 17:18 
AnswerRe: Getting Data From database using webservices Pin
N a v a n e e t h31-Aug-07 18:51
N a v a n e e t h31-Aug-07 18:51 
GeneralRe: Getting Data From database using webservices Pin
dhulipudi31-Aug-07 19:13
dhulipudi31-Aug-07 19:13 
GeneralRe: Getting Data From database using webservices Pin
N a v a n e e t h31-Aug-07 19:26
N a v a n e e t h31-Aug-07 19:26 
GeneralRe: Getting Data From database using webservices Pin
dhulipudi31-Aug-07 19:44
dhulipudi31-Aug-07 19:44 
QuestionConnectionstring trouble Pin
kumswa31-Aug-07 14:34
kumswa31-Aug-07 14:34 
AnswerRe: Connectionstring trouble Pin
N a v a n e e t h31-Aug-07 18:52
N a v a n e e t h31-Aug-07 18:52 
AnswerRe: Connectionstring trouble Pin
Satish_S31-Aug-07 20:53
Satish_S31-Aug-07 20:53 
GeneralRe: Connectionstring trouble Pin
kumswa1-Sep-07 20:20
kumswa1-Sep-07 20:20 
QuestionHelp with ASP.NET Pin
Andrew Brock31-Aug-07 12:17
Andrew Brock31-Aug-07 12:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.