Tech Support > Microsoft Windows > Development Resources
IMAPI
Posted on April 15th, 2006 | 0 Comments

Hello, I have a question regarding "GetActiveDiscRecorder(IDiscRecorder** ppRecorder)". Is it defined in which apartment the new IDiscRecorder object resides? is it in the same apartment of the...

1st DigitalTutor.info Tutorial Contest!
Posted on April 15th, 2006 | 0 Comments

Prizes: 1st) 12 MegaPixel Digital Camera 2nd) 1 GB Mp4 Video/MP3 Player 3rd) Flexible keyboard Go to http://www.digitaltutor.info & send us your tutorial to participate! We are looking for...

Font change message
Posted on April 15th, 2006 | 2 Comments

That's it. Thanks.

Obtaining windows handle from process id
Posted on April 14th, 2006 | 2 Comments

Hi Kellie, Thanks a ton! I used EnumThreadWindows() and search through the titles to identify the window I want. It's perfect! I also like your suggestion better then EnumWindows because you...

Hiding Files from the User
Posted on April 14th, 2006 | 1 Comments

If you are looking for innaccessible files, then a combination of file attributes as you have pointed out and opening the file for exclusive access (no share allowed) and specifiying delete on close...

Global hook to foward mouse messages to host app
Posted on April 14th, 2006 | 0 Comments

Don't pass the structure. Just post the HWND if that's all you need. Makes more sense.

Shell extension
Posted on April 14th, 2006 | 0 Comments

You mean like when Send To -> CDRW only appears in the Send To menu when there's a CDRW in the drive.

How to prevent caption bar from blocking message loop?
Posted on April 14th, 2006 | 2 Comments

Alex, Thanks for your help! I decided to use a multimedia timer with application-specific messages, but only in these few modal situations where the normal message loop flow is blocked. This...

com component related question
Posted on April 14th, 2006 | 3 Comments

How did we get "mac" into the picture? What precisely are you referring to? Have you tried debugging the thing on mac to find what's causing the exception? Dave

Socket Programming in VC++
Posted on April 14th, 2006 | 1 Comments

sanjay <sanjaykusingh@gmail.com> wrote: Communicate (ie. exchange data) with other processes, including processes on a remote computer. Not sure if this is the answer you need, since I do not see...

GDI+ Unhandled execption at shutdown.
Posted on April 13th, 2006 | 2 Comments

The FontFamily's destructor is called when the object goes out of scope. inline FontFamily::~FontFamily() { DllExports::GdipDeleteFontFamily (nativeFamily); } Since you have already executed...

visual studio 2005 - warning when attempting to write outside allocatedmemory boundary?
Posted on April 13th, 2006 | 5 Comments

Grzegorz Wróbel wrote: Thanks a lot... I'll look at it and hopefully I can figure out how to use it........ :-) If not, I hope it's okay to make a new thread discussing how to use it... Best...

Plz help , Bitmap according to DPI
Posted on April 13th, 2006 | 2 Comments

Thanks for reply

GDI+ InvalidateRect?
Posted on April 13th, 2006 | 4 Comments

Opps I thought this was "microsoft.public.dotnet.languages.csharp" Guess my response is usless to your c++ endevours.... sorry. -dm

Free Advanced Tutorials
Posted on April 12th, 2006 | 0 Comments

http://www.digitaltutor.info

Free Advanced Tutorials
Posted on April 12th, 2006 | 0 Comments

http://www.digitaltutor.info

Difference between PostQuitMessage(0) and SendMessage(WM_QUIT)
Posted on April 12th, 2006 | 3 Comments

rz : From the WM_QUIT docs: Do not post the WM_QUIT message using the PostMessage function; use PostQuitMessage lest ye burn in hell. Just goes to show you, unless you want to burn in hell, check...

Scripting support for Win32 C++ programs
Posted on April 12th, 2006 | 2 Comments

David Jones wrote: It looks like Lua does support it both ways, sort of. Refer to: http://lua-users.org/wiki/CppLuaArgumentPassingTutorial David

MFC vs Win32 programming
Posted on April 12th, 2006 | 0 Comments

Have a look at WTL. It gives you a nice mfc-like set of classes but very small executables. Merijn <rajninathpatil@gmail.com> schreef in...

Get file URL from file path
Posted on April 12th, 2006 | 1 Comments

Thanks. I will try. Looks like it's what i need.