Click here to Skip to main content
15,913,941 members
Home / Discussions / C#
   

C#

 
AnswerRe: .cpp or .hpp with C# Pin
Christian Graus13-Feb-07 8:26
protectorChristian Graus13-Feb-07 8:26 
GeneralRe: .cpp or .hpp with C# Pin
ShermansLagoon13-Feb-07 19:57
ShermansLagoon13-Feb-07 19:57 
QuestionHow to resolve the remote host name from IP address? [modified] Pin
Hussam Fattahi13-Feb-07 3:29
Hussam Fattahi13-Feb-07 3:29 
AnswerRe: How to resolve the remote host name from IP address? [modified] Pin
topcatalpha13-Feb-07 4:49
topcatalpha13-Feb-07 4:49 
AnswerRe: How to resolve the remote host name from IP address? Pin
wasife13-Feb-07 11:41
wasife13-Feb-07 11:41 
GeneralRe: How to resolve the remote host name from IP address? Pin
topcatalpha13-Feb-07 23:06
topcatalpha13-Feb-07 23:06 
QuestionCasting object Pin
Matglas13-Feb-07 3:16
Matglas13-Feb-07 3:16 
AnswerRe: Casting object Pin
Ravi Bhavnani13-Feb-07 3:30
professionalRavi Bhavnani13-Feb-07 3:30 
While syntactically correct, executing that statement will throw an exception, since an instance of iFirstC is not of type SecondClass. If you prefer not to handle exceptions, you should use the as operator and check for null.
SecondClass iSecondC = iFirstC as SecondClass;
if (iSecondC == null) {
    // Handle error
}
/ravi

This is your brain on Celcius
Home | Music | Articles | Freeware | Trips
ravib(at)ravib(dot)com

AnswerRe: Casting object Pin
stancrm13-Feb-07 3:36
stancrm13-Feb-07 3:36 
AnswerRe: Casting object Pin
Colin Angus Mackay13-Feb-07 3:36
Colin Angus Mackay13-Feb-07 3:36 
GeneralRe: Casting object Pin
Matglas13-Feb-07 3:42
Matglas13-Feb-07 3:42 
QuestionImage file validation Pin
DanB198313-Feb-07 3:10
DanB198313-Feb-07 3:10 
QuestionInsert statement dBase Pin
choopie13-Feb-07 3:10
choopie13-Feb-07 3:10 
Questionaudio streaming techniques Pin
giltendezm13-Feb-07 2:52
giltendezm13-Feb-07 2:52 
QuestionMaking form full screen in windows mobile ce 5.0 c# application Pin
Ashvin Gunga13-Feb-07 2:06
Ashvin Gunga13-Feb-07 2:06 
AnswerRe: Making form full screen in windows mobile ce 5.0 c# application Pin
Ashvin Gunga22-Feb-07 0:43
Ashvin Gunga22-Feb-07 0:43 
QuestionExcel Date Parsed as Integer Pin
StyleGuide13-Feb-07 1:00
StyleGuide13-Feb-07 1:00 
Questiondataview sort is not working. Pin
irsh_is13-Feb-07 0:23
irsh_is13-Feb-07 0:23 
AnswerRe: dataview sort is not working. Pin
Nidhi.s13-Feb-07 0:49
Nidhi.s13-Feb-07 0:49 
QuestionHow to import "user32.dll'' from C# application [modified] Pin
rrpatel13-Feb-07 0:21
rrpatel13-Feb-07 0:21 
AnswerRe: How to import "user32.dll'' from C# application Pin
Martin#13-Feb-07 0:53
Martin#13-Feb-07 0:53 
GeneralRe: How to import "user32.dll'' from C# application Pin
rrpatel13-Feb-07 3:03
rrpatel13-Feb-07 3:03 
AnswerRe: How to import "user32.dll'' from C# application Pin
wasife13-Feb-07 11:48
wasife13-Feb-07 11:48 
QuestionExport to Excel Pin
HimaBindu Vejella12-Feb-07 23:44
HimaBindu Vejella12-Feb-07 23:44 
QuestionHow to fill combo & listbox in popup windows form. Pin
utksThedeveloper12-Feb-07 23:17
utksThedeveloper12-Feb-07 23:17 

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.