Click here to Skip to main content
15,902,832 members
Home / Discussions / C#
   

C#

 
AnswerRe: owner draw menu ? Pin
sreejith ss nair8-Aug-04 18:12
sreejith ss nair8-Aug-04 18:12 
GeneralSerial/Parellel ports Pin
Christian Graus8-Aug-04 10:30
protectorChristian Graus8-Aug-04 10:30 
GeneralRe: Serial/Parellel ports Pin
Dave Kreskowiak9-Aug-04 6:57
mveDave Kreskowiak9-Aug-04 6:57 
GeneralDefining a UserControl's Client Area Pin
Barguast28-Aug-04 8:48
Barguast28-Aug-04 8:48 
GeneralRe: Defining a UserControl's Client Area Pin
Barguast29-Aug-04 2:36
Barguast29-Aug-04 2:36 
GeneralRe: Defining a UserControl's Client Area Pin
Dave Kreskowiak9-Aug-04 7:00
mveDave Kreskowiak9-Aug-04 7:00 
GeneralHelp with checking if numeric Pin
Tom Dziedzic8-Aug-04 7:22
Tom Dziedzic8-Aug-04 7:22 
GeneralRe: Help with checking if numeric Pin
DougW488-Aug-04 8:47
DougW488-Aug-04 8:47 
C# doesn't really have an IsNumeric function like VB had. Even though it's not the best idea to intentionally use the try/catch block for functional code, what I sent you yesterday will work.

try
{
O = UInt32.Parse( string_expression );
}
catch
{
}

if the string_expression is not in the correct format for a UInt32, it will throw an exception, which you can handle in the catch block. There are quite a few forum discussions on this, with some examples on how to implement a better IsNumeric function without using the try/catch block.
GeneralRe: Help with checking if numeric Pin
Christian Graus8-Aug-04 10:37
protectorChristian Graus8-Aug-04 10:37 
GeneralRe: Help with checking if numeric Pin
climacs9-Aug-04 16:52
sussclimacs9-Aug-04 16:52 
GeneralCOMException verifying signatures with CAPICOM in a webService Pin
Escroto8-Aug-04 6:55
Escroto8-Aug-04 6:55 
GeneralUsing Reflection to walk the Object Model Pin
Tony Antonucci8-Aug-04 6:16
Tony Antonucci8-Aug-04 6:16 
GeneralRe: Using Reflection to walk the Object Model Pin
Nick Parker8-Aug-04 6:24
protectorNick Parker8-Aug-04 6:24 
GeneralRe: Using Reflection to walk the Object Model Pin
Tony Antonucci8-Aug-04 6:43
Tony Antonucci8-Aug-04 6:43 
GeneralRe: Using Reflection to walk the Object Model Pin
leppie8-Aug-04 9:37
leppie8-Aug-04 9:37 
GeneralRe: Using Reflection to walk the Object Model Pin
Anonymous8-Aug-04 10:55
Anonymous8-Aug-04 10:55 
GeneralRe: Using Reflection to walk the Object Model Pin
leppie8-Aug-04 11:48
leppie8-Aug-04 11:48 
QuestionSetting Property Classification - Attributes? Pin
Tristan Rhodes8-Aug-04 3:22
Tristan Rhodes8-Aug-04 3:22 
AnswerRe: Setting Property Classification - Attributes? Pin
leppie8-Aug-04 4:28
leppie8-Aug-04 4:28 
GeneralManaged Direct3D won't work Pin
NhImF8-Aug-04 2:53
NhImF8-Aug-04 2:53 
GeneralRe: Managed Direct3D won't work Pin
leppie8-Aug-04 4:30
leppie8-Aug-04 4:30 
GeneralRe: Managed Direct3D won't work Pin
NhImF8-Aug-04 5:00
NhImF8-Aug-04 5:00 
GeneralRe: Managed Direct3D won't work Pin
leppie8-Aug-04 5:25
leppie8-Aug-04 5:25 
GeneralRe: Managed Direct3D won't work Pin
Alex Korchemniy8-Aug-04 11:50
Alex Korchemniy8-Aug-04 11:50 
GeneralSaving Time from a DataGrid Pin
CarpyDog8-Aug-04 1:41
CarpyDog8-Aug-04 1:41 

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.