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

C#

 
QuestionCreateObject and OLE Automation Server in C# Pin
User 1278219-Mar-09 16:43
User 1278219-Mar-09 16:43 
AnswerRe: CreateObject and OLE Automation Server in C# Pin
Fayu20-Mar-09 5:47
Fayu20-Mar-09 5:47 
GeneralRe: CreateObject and OLE Automation Server in C# Pin
User 1278222-Mar-09 17:28
User 1278222-Mar-09 17:28 
GeneralRe: CreateObject and OLE Automation Server in C# Pin
joejoe2k27-Sep-11 10:32
joejoe2k27-Sep-11 10:32 
GeneralRe: CreateObject and OLE Automation Server in C# Pin
User 1278227-Sep-11 15:50
User 1278227-Sep-11 15:50 
Questionhow can you check build/debug version during runtime? Pin
devvvy19-Mar-09 15:51
devvvy19-Mar-09 15:51 
AnswerRe: how can you check build/debug version during runtime? Pin
Christian Graus19-Mar-09 15:55
protectorChristian Graus19-Mar-09 15:55 
AnswerRe: how can you check build/debug version during runtime? Pin
Yusuf19-Mar-09 15:59
Yusuf19-Mar-09 15:59 
you can interrogate the DEBUG preprocessor

private bool IsDebugMode()
{
      #if DEBUG
         return true;
      #else
         return false;
      #endif

}


Yusuf

Oh didn't you notice, analogous to square roots, they recently introduced rectangular, circular, and diamond roots to determine the size of the corresponding shapes when given the area. Luc Pattyn[^]

GeneralRe: how can you check build/debug version during runtime? Pin
devvvy19-Mar-09 16:20
devvvy19-Mar-09 16:20 
QuestionCan C# 2005 pro edition work with windows vista home basic? Pin
RogerLum19-Mar-09 15:46
RogerLum19-Mar-09 15:46 
AnswerRe: Can C# 2005 pro edition work with windows vista home basic? Pin
Christian Graus19-Mar-09 15:58
protectorChristian Graus19-Mar-09 15:58 
QuestionAn object reference is required for the nonstatic field, method, or property 'Abrapa.Program.SendEmail(object)' Pin
abbd19-Mar-09 12:15
abbd19-Mar-09 12:15 
AnswerRe: An object reference is required for the nonstatic... Pin
Luc Pattyn19-Mar-09 12:27
sitebuilderLuc Pattyn19-Mar-09 12:27 
GeneralRe: An object reference is required for the nonstatic... Pin
abbd19-Mar-09 22:41
abbd19-Mar-09 22:41 
GeneralRe: An object reference is required for the nonstatic... Pin
Mirko198019-Mar-09 23:24
Mirko198019-Mar-09 23:24 
GeneralRe: An object reference is required for the nonstatic... Pin
abbd19-Mar-09 23:31
abbd19-Mar-09 23:31 
GeneralRe: An object reference is required for the nonstatic... Pin
Mirko198020-Mar-09 5:20
Mirko198020-Mar-09 5:20 
QuestionHow can i arrange arrays like delphi array[1].array[2] [modified] Pin
gluttonous19-Mar-09 11:24
gluttonous19-Mar-09 11:24 
AnswerRe: How can i arrange arrays like delphi array[1].array[2] Pin
Christian Graus19-Mar-09 12:51
protectorChristian Graus19-Mar-09 12:51 
GeneralRe: How can i arrange arrays like delphi array[1].array[2] Pin
gluttonous19-Mar-09 22:22
gluttonous19-Mar-09 22:22 
GeneralRe: How can i arrange arrays like delphi array[1].array[2] Pin
King Julien20-Mar-09 5:20
King Julien20-Mar-09 5:20 
QuestionReplacing method/logic in class and runtime. Pin
Member 232448319-Mar-09 9:44
Member 232448319-Mar-09 9:44 
AnswerRe: Replacing method/logic in class and runtime. Pin
Anthony Mushrow19-Mar-09 9:56
professionalAnthony Mushrow19-Mar-09 9:56 
GeneralRe: Replacing method/logic in class and runtime. Pin
Member 232448319-Mar-09 10:23
Member 232448319-Mar-09 10:23 
GeneralRe: Replacing method/logic in class and runtime. Pin
Anthony Mushrow19-Mar-09 13:40
professionalAnthony Mushrow19-Mar-09 13:40 

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.