... You can get the colorscheme here: http://www.codeproject.com/menu/newmenuxpstyle.asp I started doing the Office XP 2003 look and got about 75% through it ...
Just a note on the rules for job postings. They are acceptable, in small doses. If you want to post a job, please put it in the Jobs folder [1] on the group...
I am working on some ADO classes designed more for WTL than MFC :) I want to mek them a bit more intelligent :) Is there a way to detect if COInitialize or...
... I don't believe so. Is there a problem with just calling CoInitialize? As it says in the help: "each successful call to CoInitialize or CoInitializeEx,...
MSDATGRD.OCX is included with VS6.0. I did a little searching on Google and came up with http://81.111.145.208:85/ as a site where you can download it for...
I usually define class Co { HRESULT hr; public: Co() { hr = CoInitialize(NULL); } ~Co() { if (SUCCEEDED(hr)) CoUninitialize(); } }; In single threaded...
Hello I have been using WTL since 2001. Previously MFC - pretty much migrated our customers applications over to WTL now. I also have extensive ATL, Win32...
Hi Folks, Some of the projects I work on are addins to Excel. I have on occasion had to bring up a dialog box which host various controls etc to achive my...
Hi All, I have one problem, and I need help to resolve it. Can anyone help- me. I use a class that I found in codeproject (exellent class), this class is for...
... Thanks :-) ... There are a couple choices. The first place to start would be to derive your own class from CMDITabOwnerImpl. Then if you want the main...
Depending on how robust you need this, there are a handful of things to be aware of. If you're controlling the final client application, then having a global...
... If you can do Win32 style programming for the add-in, you can use WTL. All the same issues you have there you'll have with WTL too though (like hooking...
Hi, I try use this(CMyMDITabOwner), but I don´t have success, I´m a junior with Templates. Can you show me how to use this in my MainFrame? I need get this...
From: rayguthrie2002 [mailto:ray.guthrie@...] ... Hi Ray: I have apps that are addins to PowerPoint and Word. I do modal dialog boxes using WTL with no...
I want to attempt a nice, quick, small, AOL chat client on top of libgaim since AOL's AIM has gotten pretty ad-crufty over the years. Unfortunately I'm utterly...
Thank you Daniel for your very very useful links. Knowing something is possible is a great start. All that is left is just some silly coding and lots of...
Thank you Ryan. I guess I need to do a bit more investigating into "hooking". As I mentioned to Daniel, knowing something is possible and other folks have...
Thank you very much for your interest in the post I put up on the Yahoo WTL group. Unfortunately with the time restraints we have decided to put this part of...
Hi All, I have problems with CMiniHtml from Bjarke Viksoe , and I need help to resolve it. Can anyone help me. 1) GetFont() in CMiniHtml::DoPaint alwais return...
"thehurricane19" <thehurricane19@...> wrote in message news:cooh3r+rkl0@eGroups.com ... I'd start with Dialog app. You'll have to rip out a lot of the...