Click here to Skip to main content
15,905,686 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
QuestionUnable to drop a file on a new message in outlook 2007 Pin
sisrahul19-Jun-12 2:57
sisrahul19-Jun-12 2:57 
GeneralBug in ATL/MFC 8.0 CString Pin
XmlSeeker14-Jun-12 18:58
XmlSeeker14-Jun-12 18:58 
GeneralRe: Bug in ATL/MFC 8.0 CString Pin
Richard MacCutchan14-Jun-12 21:48
mveRichard MacCutchan14-Jun-12 21:48 
QuestionATL - Raise Event to all clients and acces to same variable Pin
ljubek7414-Jun-12 7:08
ljubek7414-Jun-12 7:08 
AnswerRe: ATL - Raise Event to all clients and acces to same variable Pin
barneyman17-Jun-12 14:51
barneyman17-Jun-12 14:51 
GeneralRe: ATL - Raise Event to all clients and acces to same variable Pin
ljubek7418-Jun-12 2:02
ljubek7418-Jun-12 2:02 
QuestionMFC exe to ATL service Pin
es196812-Jun-12 3:39
es196812-Jun-12 3:39 
AnswerRe: MFC exe to ATL service Pin
barneyman13-Jun-12 18:02
barneyman13-Jun-12 18:02 
QuestionAPI Decision Pin
Collin Biedenkapp11-Jun-12 18:53
Collin Biedenkapp11-Jun-12 18:53 
AnswerRe: API Decision Pin
Richard MacCutchan11-Jun-12 22:01
mveRichard MacCutchan11-Jun-12 22:01 
Questionhow to use an interface as a parameter in other atl objects? Pin
astupidboy31-May-12 20:41
astupidboy31-May-12 20:41 
AnswerRe: how to use an interface as a parameter in other atl objects? Pin
Richard MacCutchan31-May-12 21:26
mveRichard MacCutchan31-May-12 21:26 
GeneralRe: how to use an interface as a parameter in other atl objects? Pin
astupidboy31-May-12 22:29
astupidboy31-May-12 22:29 
GeneralRe: how to use an interface as a parameter in other atl objects? Pin
Richard MacCutchan31-May-12 22:35
mveRichard MacCutchan31-May-12 22:35 
GeneralRe: how to use an interface as a parameter in other atl objects? Pin
astupidboy31-May-12 22:56
astupidboy31-May-12 22:56 
GeneralRe: how to use an interface as a parameter in other atl objects? Pin
Richard MacCutchan31-May-12 23:08
mveRichard MacCutchan31-May-12 23:08 
GeneralRe: how to use an interface as a parameter in other atl objects? Pin
astupidboy31-May-12 23:24
astupidboy31-May-12 23:24 
GeneralRe: how to use an interface as a parameter in other atl objects? Pin
barneyman3-Jun-12 17:58
barneyman3-Jun-12 17:58 
GeneralRe: how to use an interface as a parameter in other atl objects? Pin
astupidboy31-May-12 22:35
astupidboy31-May-12 22:35 
QuestionSave a _RecordsetPtr into map Pin
MrKBA30-May-12 6:39
MrKBA30-May-12 6:39 
AnswerRe: Save a _RecordsetPtr into map Pin
barneyman3-Jun-12 18:04
barneyman3-Jun-12 18:04 
QuestionCOM_INTERFACE_ENTRY correct use ? Pin
MrKBA24-May-12 23:58
MrKBA24-May-12 23:58 
I have the chain of inheritance :
C#
coclass _A
{
    [default] interface _IA;
};

C#
coclass _A_1
{
    [default] interface _IA_1;
};

C#
coclass A
{
    [default] interface IA;
    [default, source] dispinterface _IA_ControllerEvents;
};

C#
interface _IA   : IDispatch{
interface _IA_1 : _IA{
interface  IA    : _IA_1{


all class inherits from IDispatchImpl

In the COM map of the class CA that expose the interface IA, I didn't know the correct code and how I manage the macros COM_INTERFACE_ENTRY and COM_INTERFACE_ENTRY2
So I do :
VB
BEGIN_COM_MAP(CA)
    COM_INTERFACE_ENTRY(IA)
    COM_INTERFACE_ENTRY2(IDispatch, _IA)
    COM_INTERFACE_ENTRY(IConnectionPointContainer)
    COM_INTERFACE_ENTRY(ISupportErrorInfo)
    COM_INTERFACE_ENTRY(_IA)
    COM_INTERFACE_ENTRY(_IA_1)
END_COM_MAP()


is this correct ? or should I add an other macro COM_INTERFACE_ENTRY2 like this :
COM_INTERFACE_ENTRY2(_IA, _IA_1)

?
Thank you.
QuestionIE 10 Protected Mode issues with Winodws 8 x64 CP. Pin
birajendu21-May-12 23:47
birajendu21-May-12 23:47 
QuestionHow to do inheritance in ATL Pin
Rahul.RK21-May-12 0:19
Rahul.RK21-May-12 0:19 
SuggestionRe: How to do inheritance in ATL Pin
Pablo Aliskevicius21-May-12 2:41
Pablo Aliskevicius21-May-12 2: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.