Click here to Skip to main content
15,921,884 members
Home / Discussions / C#
   

C#

 
GeneralRe: about Rama's screensaver? Pin
zhoujun18-May-02 21:56
zhoujun18-May-02 21:56 
Generalplease give me some guide to find such resources! Pin
zhoujun18-May-02 16:54
zhoujun18-May-02 16:54 
GeneralRe: please give me some guide to find such resources! Pin
Rama Krishna Vavilala18-May-02 18:42
Rama Krishna Vavilala18-May-02 18:42 
GeneralRe: please give me some guide to find such resources! Pin
zhoujun18-May-02 22:53
zhoujun18-May-02 22:53 
Question.NET Forms in a web browser? Pin
Chris Hafey18-May-02 12:59
Chris Hafey18-May-02 12:59 
AnswerRe: .NET Forms in a web browser? Pin
SHaroz20-May-02 7:43
SHaroz20-May-02 7:43 
GeneralRe: .NET Forms in a web browser? Pin
Chris Hafey20-May-02 16:25
Chris Hafey20-May-02 16:25 
Questiontry / catch breaks if statement !? Pin
tcs18-May-02 11:14
tcs18-May-02 11:14 
try
{
AccountTable = AccountDb.Tables["Accounts"];

if (AccountTable == null)
throw (new NullReferenceException());
}
catch (NullReferenceException)
{
// Table not present, create empty DB
AccountDb.Clear();
CreateEmptyDataBase();
}

Take a look at that if check. It passes even if AccountTable is NOT null. I checked with the debugger, it's NEVER null, but the if check always passes. The if check behaves fully correctly if I remove the try/catch statement.

That sounds broken to me, I have a hard time imagining this "feature" is by design Wink | ;-) Any ideas ? Wink | ;-)

greetings,
Tim
AnswerRe: try / catch breaks if statement !? Pin
tcs18-May-02 11:47
tcs18-May-02 11:47 
GeneralLetting the debugger catch unhandles exceptions in web services Pin
tcs18-May-02 8:49
tcs18-May-02 8:49 
General.NET (C#) interopability Pin
17-May-02 14:08
suss17-May-02 14:08 
GeneralPlease help: Substitution parameters! Pin
Rohde17-May-02 12:41
Rohde17-May-02 12:41 
GeneralRe: Please help: Substitution parameters! Pin
David Wengier17-May-02 13:12
David Wengier17-May-02 13:12 
Questionwhat does it do? Pin
zhoujun16-May-02 22:00
zhoujun16-May-02 22:00 
AnswerRe: what does it do? Pin
James T. Johnson17-May-02 1:11
James T. Johnson17-May-02 1:11 
GeneralRe: what does it do? Pin
zhoujun17-May-02 17:01
zhoujun17-May-02 17:01 
GeneralRe: what does it do? Pin
James T. Johnson18-May-02 12:27
James T. Johnson18-May-02 12:27 
GeneralRe: what does it do? Pin
zhoujun18-May-02 16:30
zhoujun18-May-02 16:30 
QuestionHow to run c# app on a win2000 machine without installing the framework? Pin
16-May-02 20:18
suss16-May-02 20:18 
AnswerRe: How to run c# app on a win2000 machine without installing the framework? Pin
Rickard Andersson2016-May-02 20:31
Rickard Andersson2016-May-02 20:31 
AnswerRe: How to run c# app on a win2000 machine without installing the framework? Pin
Michael P Butler16-May-02 22:27
Michael P Butler16-May-02 22:27 
AnswerRe: How to run c# app on a win2000 machine without installing the framework? Pin
James T. Johnson17-May-02 1:00
James T. Johnson17-May-02 1:00 
GeneralVariants in .net Pin
ElCortez16-May-02 13:21
ElCortez16-May-02 13:21 
GeneralRe: Variants in .net Pin
Rama Krishna Vavilala16-May-02 14:35
Rama Krishna Vavilala16-May-02 14:35 
GeneralRe: Variants in .net Pin
ElCortez16-May-02 20:51
ElCortez16-May-02 20:51 

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.