Click here to Skip to main content
15,913,097 members
Home / Discussions / COM
   

COM

 
AnswerRe: Lookup installed com components Pin
Laxman Auti4-May-06 3:40
Laxman Auti4-May-06 3:40 
QuestionActiveX control and COM dll Pin
csylesh3-May-06 2:23
csylesh3-May-06 2:23 
AnswerRe: ActiveX control and COM dll Pin
Milton Karimbekallil4-May-06 5:33
Milton Karimbekallil4-May-06 5:33 
QuestionTypes of DLL Pin
Smith#2-May-06 23:40
Smith#2-May-06 23:40 
AnswerRe: Types of DLL Pin
_AnsHUMAN_ 3-May-06 3:34
_AnsHUMAN_ 3-May-06 3:34 
QuestionDifference between static_cast and normal casting Pin
NiceNaidu2-May-06 2:30
NiceNaidu2-May-06 2:30 
AnswerRe: Difference between static_cast and normal casting Pin
guestcat2-May-06 3:20
guestcat2-May-06 3:20 
AnswerRe: Difference between static_cast and normal casting Pin
Stephen Hewitt2-May-06 15:59
Stephen Hewitt2-May-06 15:59 
"Normal casting" (a.k.a "C-style" casts) should be avoided. If you need to cast always use static_cast, const_cast, reinterpret_cast or dynamic_cast. There are many reasons, some of which are that with these "function-style" casts your cast is:
 1. Explicit (in intent).
 2. Visible.
 3. Checked for safety by the compiler.
 
There are still many people who use C++ but, for one reason or another, use "C-style" casts: These people are making a mistake. If you've been a maintenance programmer for a few years and seen the havoc caused by vague (in intent) and hard to spot or grep for casts you will probably agree. Some people argue that the new casts are ugly. That is intentional: casting, in general, is an ugly and dangerous practice and more often then not indicates a design flaw in your code. Casts should be ugly.


Steve
QuestionWhy Default Interface ??? Pin
NiceNaidu2-May-06 1:33
NiceNaidu2-May-06 1:33 
AnswerRe: Why Default Interface ??? Pin
guestcat2-May-06 1:50
guestcat2-May-06 1:50 
GeneralRe: Why Default Interface ??? Pin
NiceNaidu2-May-06 2:18
NiceNaidu2-May-06 2:18 
GeneralRe: Why Default Interface ??? Pin
Mike Dimmick2-May-06 2:44
Mike Dimmick2-May-06 2:44 
GeneralRe: Why Default Interface ??? Pin
guestcat2-May-06 3:01
guestcat2-May-06 3:01 
QuestionGetRecordInfoFromGUID returns 0x80029C4A Pin
morenz2-May-06 0:07
morenz2-May-06 0:07 
AnswerRe: GetRecordInfoFromGUID returns 0x80029C4A Pin
Vibhash Jha3-May-06 2:35
Vibhash Jha3-May-06 2:35 
GeneralRe: GetRecordInfoFromGUID returns 0x80029C4A Pin
morenz3-May-06 23:06
morenz3-May-06 23:06 
QuestionCOM - ROT - Threading - moniker - RPC - Where is the problem? Pin
guestcat1-May-06 22:47
guestcat1-May-06 22:47 
Questionhow to make a transform filter with one input and two out puts in directshow Pin
Ch Mazhar Iqbal1-May-06 21:15
Ch Mazhar Iqbal1-May-06 21:15 
QuestionATL Exe server.. Pin
Siva Sankar Koyi1-May-06 18:37
Siva Sankar Koyi1-May-06 18:37 
AnswerRe: ATL Exe server.. Pin
Vibhash Jha3-May-06 2:45
Vibhash Jha3-May-06 2:45 
AnswerRe: ATL Exe server.. Pin
morenz3-May-06 23:31
morenz3-May-06 23:31 
QuestionCOM Interop not working with VB.NET Pin
brwrob1-May-06 12:00
brwrob1-May-06 12:00 
Questionsearching Microsoft MAPI Control 6.0 Pin
Vasya - dragon27-Apr-06 1:55
Vasya - dragon27-Apr-06 1:55 
QuestionOffice CommandBar Button Pin
HakunaMatada26-Apr-06 3:44
HakunaMatada26-Apr-06 3:44 
AnswerRe: Office CommandBar Button Pin
Michael Dunn26-Apr-06 8:02
sitebuilderMichael Dunn26-Apr-06 8:02 

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.