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

C#

 
GeneralRe: Graphics Pin
microsoc21-Dec-05 20:41
microsoc21-Dec-05 20:41 
GeneralRe: Graphics Pin
microsoc21-Dec-05 20:20
microsoc21-Dec-05 20:20 
GeneralRe: Graphics Pin
Mahi.Ragava21-Dec-05 22:32
Mahi.Ragava21-Dec-05 22:32 
QuestionIs this the right PInvoke? Pin
eggie520-Dec-05 15:31
eggie520-Dec-05 15:31 
AnswerRe: Is this the right PInvoke? Pin
leppie21-Dec-05 4:18
leppie21-Dec-05 4:18 
GeneralRe: Is this the right PInvoke? Pin
eggie521-Dec-05 13:45
eggie521-Dec-05 13:45 
QuestionHandling Nullable Types in .NET 1.1? Pin
RobertF5720-Dec-05 15:17
RobertF5720-Dec-05 15:17 
AnswerRe: Handling Nullable Types in .NET 1.1? Pin
Michael Ceranski20-Dec-05 15:34
Michael Ceranski20-Dec-05 15:34 
You want to check to see if the row is equal to DBNull.Value instead of null.

if (Tables[FormList].Rows[0].["Custodian"] == DBNull.Value ){
strColumnValue = "";
}
else {
strColumnValue = Tables[FormList].Rows[0].["Custodian"];
}

GeneralRe: Handling Nullable Types in .NET 1.1? Pin
RobertF5721-Dec-05 6:59
RobertF5721-Dec-05 6:59 
GeneralRe: Handling Nullable Types in .NET 1.1? Pin
RobertF5721-Dec-05 11:55
RobertF5721-Dec-05 11:55 
GeneralRe: Handling Nullable Types in .NET 1.1? Pin
Michael Ceranski21-Dec-05 14:37
Michael Ceranski21-Dec-05 14:37 
GeneralRe: Handling Nullable Types in .NET 1.1? Pin
RobertF5728-Dec-05 8:36
RobertF5728-Dec-05 8:36 
QuestionImplementing Delete Pin
monrobot1320-Dec-05 14:35
monrobot1320-Dec-05 14:35 
AnswerRe: Implementing Delete Pin
Curtis Schlak.20-Dec-05 15:54
Curtis Schlak.20-Dec-05 15:54 
GeneralRe: Implementing Delete Pin
monrobot1320-Dec-05 19:19
monrobot1320-Dec-05 19:19 
GeneralRe: Implementing Delete Pin
Curtis Schlak.21-Dec-05 4:36
Curtis Schlak.21-Dec-05 4:36 
QuestionPreventing "Show Desktop" Pin
jstrulens20-Dec-05 11:45
jstrulens20-Dec-05 11:45 
AnswerRe: Preventing "Show Desktop" Pin
Curtis Schlak.20-Dec-05 15:43
Curtis Schlak.20-Dec-05 15:43 
Questionlist of all computers Pin
sebastianos20-Dec-05 11:42
sebastianos20-Dec-05 11:42 
AnswerRe: list of all computers Pin
Tonster10120-Dec-05 15:16
Tonster10120-Dec-05 15:16 
GeneralRe: list of all computers Pin
Colin Angus Mackay20-Dec-05 22:53
Colin Angus Mackay20-Dec-05 22:53 
GeneralRe: list of all computers Pin
Tonster10120-Dec-05 22:59
Tonster10120-Dec-05 22:59 
GeneralRe: list of all computers Pin
Colin Angus Mackay20-Dec-05 23:05
Colin Angus Mackay20-Dec-05 23:05 
Questionin what remote computer? Pin
sebastianos20-Dec-05 11:38
sebastianos20-Dec-05 11:38 
QuestionMoving through forms - problem! Pin
eyej20-Dec-05 11:36
eyej20-Dec-05 11:36 

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.