I'd like to try to embed an Excel worksheet in my WTL app. I'd like to write a control wrapper around Excel so that I can add my own functionality. Has anyone...
... I tried to control Excel from an ATL DLL once. After using #import, I could not create a new document (opposed to opening an existing document). Many of...
Hi Mateusz, I don't really understand what you call poor WinCE. WinCE is a set of software modules implementing a (slowly growing) subset of the Win32 API and...
Hi, ... Standard Windows CE, without any customized shell and UI like Smartphone or Pocket PC. ... That's right. ... OK, let me call non-Pocket PC or...
We used MSChartControl (which is, I think, the display side of Excel) for a while in a WTL data acquisition application. We finally abandoned it as it had too...
Hi, ... I have evc4 and sp4 too, plus I use STLport instead of Microsoft (not complete) STL, and I've just tried to compile some example from the "C++ Template...
... If I remember correctly, EVC4 is pretty much VC6 with a different back-end, so it's unlikely to support ketchup without significant work (if at all)....
I wish I could punt this one, but I really need to find a way to integrate Excel. Looks like a lot of late night sessions for me. :( Thanks for your input! ...
I've run into this as well. It looks like no one else has successfully done this, so I'll have to just keep plugging away. If I end up with something useful,...
I do not envy you. Another approach might be to use DDE to talk to Excel. Some time ago we wrote a bunch of Excel macros and then called them from our...
I already support DDE, incluind using the XLDATA format, but the app I'm working on needs to support a greater degree of integration. Thanks for the...
Hi, ... Certainly, you are right. I'm moving to VS 2005 but till stable version is not released I have to work with evc4 :-( Cheers -- Mateusz Loskot...
Matt, are you trying to in-place activate Excel within your WTL app or just automate an external instance from your app? Michael ... From: wtl@yahoogroups.com...
Is it necessary to Init the CAppModule when used in a DLL? Unfortunately, i have to use this in order to set up PreTranslateMsg, but i have to be in an...
Yes. At runtime? If so, why do you want to do this? If not, register it with a different class name to begin with. See the DECLARE_FRAME_WND_CLASS macro's...
... There should be only one message loop running on a thread, unless you have a good reason (modal dialog) for it not to be. Only if the message loop is to...
It looked around and it turns out you have to have the creating exe pass its _Module.GetMessageLoop() to you as an api call exposed by the dll, and then you...
The IE Browser sends the following sequence of messages when loading a page: BeforeNavigate, Navigate Complete, DocumentComplete. Or for a page with frames it...
Hello! CSortListViewCtrl work alright, but i want to process all notifications in control. I tried to inherit some new control from CSortListViewCtrlImpl with ...
Dmitry Beshenov
BeshenowD@...
Aug 6, 2005 12:52 pm
12296
... If you want to process messages sent to the ListView, or override some of CSortListViewCtrlImpl methods, then a class similar to the following should work:...
... with ... If you also want to handle notifications sent to the ListView's parent in the ListView, then put REFLECT_NOTIFICATIONS() in the parent's message...
Hello, Roger. You wrote: RH> If you also want to handle notifications sent to the ListView's RH> parent in the ListView, then put REFLECT_NOTIFICATIONS() in...
Dmitry Beshenov
BeshenowD@...
Aug 6, 2005 3:25 pm
12299
Hello, Just for fun I'm tinkering with a small WTL project for my pocketpc. I've made a plain "hello world" demo, which works nicely. I compiled the Code...
Hi Andrew, For 'legal reasons' there is no AppWizard for EVC 4 in WTL 7.5. But you may use the WTL 7.1 EVC 4 AppWizard with WTL 7.5. Download WTL 7.1 at: ...
Hi, I'm creating a floating tool window based on a modeless dialog, i.e. CDialogImpl<CToolWindow>. The problem is that only one focused window is allowed....