Click here to Skip to main content
15,891,951 members
Home / Discussions / C#
   

C#

 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen5-May-10 4:24
professionalEddy Vluggen5-May-10 4:24 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 4:49
Tunisien865-May-10 4:49 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 2:17
Tunisien866-May-10 2:17 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen6-May-10 2:29
professionalEddy Vluggen6-May-10 2:29 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 3:40
Tunisien866-May-10 3:40 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien866-May-10 4:58
Tunisien866-May-10 4:58 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Eddy Vluggen6-May-10 5:30
professionalEddy Vluggen6-May-10 5:30 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Luc Pattyn5-May-10 2:57
sitebuilderLuc Pattyn5-May-10 2:57 
don't use
catch (Exception ex) {
    MessageBox.Show(ex.Message);
}


as it may hide a lot of useful information.
Instead use
catch (Exception ex) {
    MessageBox.Show(ex.ToString());
}

at least as long as it is not working properly all the time.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

Prolific encyclopedia fixture proof-reader browser patron addict?
We all depend on the beast below.


GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 3:22
Tunisien865-May-10 3:22 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Luc Pattyn5-May-10 3:43
sitebuilderLuc Pattyn5-May-10 3:43 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Pete O'Hanlon5-May-10 3:57
mvePete O'Hanlon5-May-10 3:57 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 4:08
Tunisien865-May-10 4:08 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:16
Michel Godfroid5-May-10 4:16 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 5:06
Tunisien865-May-10 5:06 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 5:12
Michel Godfroid5-May-10 5:12 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 5:29
Tunisien865-May-10 5:29 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Michel Godfroid5-May-10 4:08
Michel Godfroid5-May-10 4:08 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Pete O'Hanlon5-May-10 4:40
mvePete O'Hanlon5-May-10 4:40 
GeneralRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien865-May-10 4:59
Tunisien865-May-10 4:59 
AnswerRe: TCP/IP connexion failed in csharp smart device Pin
Tunisien8611-May-10 6:33
Tunisien8611-May-10 6:33 
Questiondictionary Pin
toto_20105-May-10 0:26
toto_20105-May-10 0:26 
AnswerRe: dictionary Pin
Peace ON5-May-10 0:41
Peace ON5-May-10 0:41 
AnswerRe: dictionary Pin
sanforjackass5-May-10 0:43
sanforjackass5-May-10 0:43 
AnswerRe: dictionary Pin
Richard MacCutchan5-May-10 1:02
mveRichard MacCutchan5-May-10 1:02 
GeneralRe: dictionary Pin
Luc Pattyn5-May-10 2:59
sitebuilderLuc Pattyn5-May-10 2:59 

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.