Click here to Skip to main content
15,894,646 members
Home / Discussions / C#
   

C#

 
Generalconnect c# web service Pin
colin mcadam18-Jul-03 3:34
colin mcadam18-Jul-03 3:34 
GeneralRe: connect c# web service Pin
Ista21-Jul-03 17:18
Ista21-Jul-03 17:18 
GeneralC# Web Service Client Pin
hwen18-Jul-03 3:14
hwen18-Jul-03 3:14 
GeneralC # development with OWC & XP Pia's Pin
Member 47499718-Jul-03 3:04
Member 47499718-Jul-03 3:04 
QuestionHow to control the number of instances of a application Pin
Ivan Fernandez18-Jul-03 2:57
Ivan Fernandez18-Jul-03 2:57 
AnswerRe: How to control the number of instances of a application Pin
Kastro18-Jul-03 3:53
Kastro18-Jul-03 3:53 
GeneralActivator Class Pin
vikramlinux18-Jul-03 2:10
vikramlinux18-Jul-03 2:10 
GeneralRe: Activator Class Pin
John Fisher18-Jul-03 4:32
John Fisher18-Jul-03 4:32 
Generally, a try/catch block around this will let you see what the exeption says about itself. Very useful stuff. Do something like the following, and you'll get information about the exception. (Also, be aware that the InnerException memeber may need to be looked at in some rarer occasions.)

try
{
// Your code here.
}
catch (Exception err)
{
System.Diagnostics.Trace.WriteLine(err.ToString());
// or
MessageBox.Show(err.ToString());
}

John

"We want to be alone when we hear too many words and we feel alone when it has been a while since anyone has spoken to us." Paul David Tripp -- War of Words

GeneralDataAdapter and StoredProcedure Pin
totig18-Jul-03 1:18
totig18-Jul-03 1:18 
GeneralRe: DataAdapter and StoredProcedure Pin
Kant19-Jul-03 16:42
Kant19-Jul-03 16:42 
GeneralText Pin
totig18-Jul-03 0:03
totig18-Jul-03 0:03 
GeneralRe: Text Pin
A.Wegierski18-Jul-03 2:07
A.Wegierski18-Jul-03 2:07 
QuestionHow can i make a tabpage unvisible in tabcontrol? Pin
Xytme17-Jul-03 23:48
Xytme17-Jul-03 23:48 
AnswerRe: How can i make a tabpage unvisible in tabcontrol? Pin
A.Wegierski18-Jul-03 2:03
A.Wegierski18-Jul-03 2:03 
QuestionFillPolygon problem? Pin
r917-Jul-03 22:58
r917-Jul-03 22:58 
GeneralInitializing a color poperty in c# Pin
mrpink17-Jul-03 22:40
mrpink17-Jul-03 22:40 
GeneralRe: Initializing a color poperty in c# Pin
Mazdak18-Jul-03 2:25
Mazdak18-Jul-03 2:25 
GeneralRe: Initializing a color poperty in c# Pin
mrpink18-Jul-03 5:41
mrpink18-Jul-03 5:41 
GeneralRe: Initializing a color poperty in c# Pin
J. Dunlap18-Jul-03 8:55
J. Dunlap18-Jul-03 8:55 
GeneralLoop though XML Pin
eggie517-Jul-03 19:40
eggie517-Jul-03 19:40 
GeneralRe: Loop though XML Pin
John Fisher18-Jul-03 4:32
John Fisher18-Jul-03 4:32 
GeneralRe: Loop though XML Pin
Ista21-Jul-03 17:19
Ista21-Jul-03 17:19 
GeneralRe: Loop though XML Pin
eggie521-Jul-03 17:23
eggie521-Jul-03 17:23 
GeneralRe: Loop though XML Pin
Ista22-Jul-03 3:15
Ista22-Jul-03 3:15 
GeneralMemory Management Pin
Gaurika Wijeratne17-Jul-03 19:39
Gaurika Wijeratne17-Jul-03 19:39 

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.