Click here to Skip to main content
15,887,596 members
Home / Discussions / Database
   

Database

 
Questionunbound RadioButtonList Selected Item problem Pin
amit201123-Oct-08 1:16
amit201123-Oct-08 1:16 
AnswerRe: unbound RadioButtonList Selected Item problem Pin
Ashfield23-Oct-08 1:29
Ashfield23-Oct-08 1:29 
AnswerRe: unbound RadioButtonList Selected Item problem Pin
John Gathogo23-Oct-08 1:37
John Gathogo23-Oct-08 1:37 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
amit201123-Oct-08 1:52
amit201123-Oct-08 1:52 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
Paddy Boyd23-Oct-08 2:07
Paddy Boyd23-Oct-08 2:07 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
amit201123-Oct-08 3:30
amit201123-Oct-08 3:30 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
amit201123-Oct-08 3:48
amit201123-Oct-08 3:48 
GeneralRe: unbound RadioButtonList Selected Item problem Pin
John Gathogo23-Oct-08 2:20
John Gathogo23-Oct-08 2:20 

That error will occur if you click the button when you have not selected any of the radio buttons on the RadioButtonList1. So you need to check whether the selection has first happened. Probably using:

if (RadioButtonList1.SelectedIndex != -1)
    lbltemp.Text = RadioButtonList1.SelectedItem.Text;

Questionhow to read returned identity value from stored procedure Pin
Poonam Gandash23-Oct-08 0:08
Poonam Gandash23-Oct-08 0:08 
AnswerRe: how to read returned identity value from stored procedure Pin
Ashfield23-Oct-08 1:26
Ashfield23-Oct-08 1:26 
GeneralRe: how to read returned identity value from stored procedure Pin
Poonam Gandash23-Oct-08 2:20
Poonam Gandash23-Oct-08 2:20 
GeneralRe: how to read returned identity value from stored procedure Pin
Ashfield23-Oct-08 2:36
Ashfield23-Oct-08 2:36 
AnswerRe: how to read returned identity value from stored procedure Pin
Mycroft Holmes23-Oct-08 11:55
professionalMycroft Holmes23-Oct-08 11:55 
GeneralRe: how to read returned identity value from stored procedure Pin
Poonam Gandash23-Oct-08 19:14
Poonam Gandash23-Oct-08 19:14 
GeneralRe: how to read returned identity value from stored procedure Pin
Mycroft Holmes23-Oct-08 19:43
professionalMycroft Holmes23-Oct-08 19:43 
Questioncan't start sql server service manager [modified] Pin
sathyan_829422-Oct-08 23:37
sathyan_829422-Oct-08 23:37 
AnswerRe: can't start sql server service manager Pin
Ashfield22-Oct-08 23:54
Ashfield22-Oct-08 23:54 
QuestionWhat are the various debug visualizers in visual studio ? Pin
lovedotnet22-Oct-08 18:38
lovedotnet22-Oct-08 18:38 
AnswerRe: What are the various debug visualizers in visual studio ? Pin
John Gathogo23-Oct-08 1:53
John Gathogo23-Oct-08 1:53 
QuestionRollback transaction problem Pin
hdtrung22-Oct-08 17:42
hdtrung22-Oct-08 17:42 
AnswerRe: Rollback transaction problem Pin
Mycroft Holmes22-Oct-08 23:44
professionalMycroft Holmes22-Oct-08 23:44 
GeneralRe: Rollback transaction problem Pin
hdtrung23-Oct-08 4:01
hdtrung23-Oct-08 4:01 
GeneralRe: Rollback transaction problem Pin
Mycroft Holmes23-Oct-08 11:51
professionalMycroft Holmes23-Oct-08 11:51 
QuestionProblem with .ldb file Pin
Venumunna22-Oct-08 15:49
Venumunna22-Oct-08 15:49 
AnswerRe: Problem with .ldb file Pin
Wendelius22-Oct-08 17:42
mentorWendelius22-Oct-08 17:42 

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.