Click here to Skip to main content
15,905,686 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Menu Control Popup using TrackPopupMenuEx Pin
Mark Salsbery25-Jul-08 6:13
Mark Salsbery25-Jul-08 6:13 
GeneralRe: Menu Control Popup using TrackPopupMenuEx Pin
dehseth27-Jul-08 19:21
dehseth27-Jul-08 19:21 
GeneralRe: Menu Control Popup using TrackPopupMenuEx Pin
Mark Salsbery28-Jul-08 6:55
Mark Salsbery28-Jul-08 6:55 
QuestionIncluding methods in a DLL Pin
softwaremonkey24-Jul-08 23:03
softwaremonkey24-Jul-08 23:03 
AnswerRe: Including methods in a DLL Pin
Yajnesh Narayan Behera24-Jul-08 23:24
Yajnesh Narayan Behera24-Jul-08 23:24 
GeneralRe: Including methods in a DLL Pin
Matthew Faithfull24-Jul-08 23:27
Matthew Faithfull24-Jul-08 23:27 
GeneralRe: Including methods in a DLL Pin
softwaremonkey25-Jul-08 0:16
softwaremonkey25-Jul-08 0:16 
AnswerRe: Including methods in a DLL Pin
Yajnesh Narayan Behera24-Jul-08 23:55
Yajnesh Narayan Behera24-Jul-08 23:55 
What you are trying to achieve is can easily be done in this way. My project is running fine.

Basically in your interface class you have to derive the classes in this manner.

class MyPPTApplication : public TOleHelper
{
// Operations
public:
LPDISPATCH GetPresentations();

}
This is just a hint how in my project I have achieved this for PPT.
In this way you have to get all the methods for Word, call the method in proper order & you will get the required result. GetPresentations does nothing it internally call this method

LPDISPATCH result = 0;
InvokeHelper(0x7d1, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, NULL);

I do not know what is the use of you Dll, if it is to show the Word application then you have to create your own container object that is a whole big area in it's respect. WTF | :WTF:
GeneralRe: Including methods in a DLL Pin
softwaremonkey25-Jul-08 0:29
softwaremonkey25-Jul-08 0:29 
QuestionAbout CRichEditControl Pin
Manjunath S24-Jul-08 21:56
Manjunath S24-Jul-08 21:56 
AnswerRe: About CRichEditControl Pin
Michael Schubert25-Jul-08 0:22
Michael Schubert25-Jul-08 0:22 
AnswerRe: About CRichEditControl Pin
Raghu Panduranga29-Jul-08 21:03
Raghu Panduranga29-Jul-08 21:03 
Questionhow to show a button after move it? Pin
tataxin24-Jul-08 20:26
tataxin24-Jul-08 20:26 
AnswerRe: how to show a button after move it? Pin
KarstenK24-Jul-08 23:27
mveKarstenK24-Jul-08 23:27 
GeneralRe: how to show a button after move it? Pin
tataxin26-Jul-08 6:17
tataxin26-Jul-08 6:17 
Questioni got a compiling error like: error C2485: '__restrict' : unrecognized extended attribute [modified] Pin
kcynic24-Jul-08 19:40
kcynic24-Jul-08 19:40 
GeneralRe: i got a compiling error like: error C2485: '__restrict' : unrecognized extended attribute Pin
Matthew Faithfull24-Jul-08 22:20
Matthew Faithfull24-Jul-08 22:20 
GeneralRe: i got a compiling error like: error C2485: '__restrict' : unrecognized extended attribute Pin
kcynic24-Jul-08 23:34
kcynic24-Jul-08 23:34 
GeneralRe: i got a compiling error like: error C2485: '__restrict' : unrecognized extended attribute Pin
Matthew Faithfull24-Jul-08 23:41
Matthew Faithfull24-Jul-08 23:41 
QuestionAvoid overloading Pin
CodingLover24-Jul-08 19:27
CodingLover24-Jul-08 19:27 
AnswerRe: Avoid overloading Pin
Saurabh.Garg24-Jul-08 19:41
Saurabh.Garg24-Jul-08 19:41 
QuestionRe: Avoid overloading Pin
CodingLover24-Jul-08 19:52
CodingLover24-Jul-08 19:52 
AnswerRe: Avoid overloading Pin
Saurabh.Garg24-Jul-08 19:54
Saurabh.Garg24-Jul-08 19:54 
NewsRe: Avoid overloading Pin
CodingLover24-Jul-08 19:55
CodingLover24-Jul-08 19:55 
AnswerRe: Avoid overloading [modified] Pin
killabyte24-Jul-08 22:46
killabyte24-Jul-08 22:46 

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.