Click here to Skip to main content
15,890,512 members
Home / Discussions / C#
   

C#

 
GeneralRe: C#.net- two ways to access active directory code Pin
Dave Kreskowiak2-Sep-11 11:16
mveDave Kreskowiak2-Sep-11 11:16 
QuestionC#.net error obtained from sql server Pin
dcof1-Sep-11 6:42
dcof1-Sep-11 6:42 
AnswerRe: C#.net error obtained from sql server Pin
Dave Kreskowiak1-Sep-11 7:47
mveDave Kreskowiak1-Sep-11 7:47 
GeneralMessage Removed Pin
1-Sep-11 8:52
dcof1-Sep-11 8:52 
GeneralRe: C#.net error obtained from sql server Pin
#realJSOP1-Sep-11 9:28
mve#realJSOP1-Sep-11 9:28 
AnswerRe: C#.net error obtained from sql server Pin
Luc Pattyn1-Sep-11 7:54
sitebuilderLuc Pattyn1-Sep-11 7:54 
GeneralRe: C#.net error obtained from sql server Pin
dcof1-Sep-11 8:52
dcof1-Sep-11 8:52 
AnswerRe: C#.net error obtained from sql server Pin
#realJSOP1-Sep-11 8:28
mve#realJSOP1-Sep-11 8:28 
0) Just put a try/catch block around your code and handle each exception individually.

1) You can get a list of possible exceptions off the MSDN web site (just google the class.method you're interested in).

2) Handle the exceptions you want to show the user, and pass on the ones you don't.

C#
try
{
    create connection
    open conn ection
    query the database
    do something with the data
}
catch (ThisException ex)
{
}
catch (ThatException ex)
{
}
catch (AnotherException ex)
{
}
finally
{
}


Go forth, and code.
".45 ACP - because shooting twice is just silly" - JSOP, 2010
-----
You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
-----
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass." - Dale Earnhardt, 1997


Questionretrive data from GridView Pin
jashimu1-Sep-11 5:27
jashimu1-Sep-11 5:27 
AnswerRe: retrive data from GridView Pin
Abhinav S1-Sep-11 6:01
Abhinav S1-Sep-11 6:01 
Questionemail sender program : Unable to connect to the remote server Pin
bigz_100031-Aug-11 23:57
bigz_100031-Aug-11 23:57 
AnswerRe: email sender program : Unable to connect to the remote server Pin
Qendro1-Sep-11 1:29
Qendro1-Sep-11 1:29 
GeneralRe: email sender program : Unable to connect to the remote server Pin
bigz_10001-Sep-11 3:02
bigz_10001-Sep-11 3:02 
AnswerRe: email sender program : Unable to connect to the remote server Pin
Dave Kreskowiak1-Sep-11 3:56
mveDave Kreskowiak1-Sep-11 3:56 
GeneralRe: email sender program : Unable to connect to the remote server Pin
bigz_10001-Sep-11 5:24
bigz_10001-Sep-11 5:24 
QuestionWhat is an Integer Pin
Anubhava Dimri31-Aug-11 18:50
Anubhava Dimri31-Aug-11 18:50 
AnswerRe: What is an Integer Pin
Abhinav S31-Aug-11 19:12
Abhinav S31-Aug-11 19:12 
GeneralRe: What is an Integer Pin
Anubhava Dimri31-Aug-11 20:10
Anubhava Dimri31-Aug-11 20:10 
GeneralRe: What is an Integer PinPopular
Roger Wright31-Aug-11 21:04
professionalRoger Wright31-Aug-11 21:04 
GeneralRe: What is an Integer Pin
Pete O'Hanlon31-Aug-11 21:09
mvePete O'Hanlon31-Aug-11 21:09 
GeneralRe: What is an Integer Pin
Roger Wright31-Aug-11 21:27
professionalRoger Wright31-Aug-11 21:27 
GeneralRe: What is an Integer Pin
Anubhava Dimri1-Sep-11 18:24
Anubhava Dimri1-Sep-11 18:24 
GeneralRe: What is an Integer Pin
Roger Wright1-Sep-11 20:05
professionalRoger Wright1-Sep-11 20:05 
GeneralRe: What is an Integer Pin
MicroVirus3-Sep-11 18:26
MicroVirus3-Sep-11 18:26 
GeneralRe: What is an Integer Pin
Pete O'Hanlon31-Aug-11 21:04
mvePete O'Hanlon31-Aug-11 21:04 

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.