I am working on an application which is a Windows Service.
There is another process which needs to be called from user context by my service. This I have achieved using Imporsonating logged...
I need to hook a dialog in Windows Vista. I am doing it successfully in Windows XP by getting handle and a control id of particular control. I am using SendDlgItemMessage API for the same....
Thanks a lot for all ur replies..
Meanwhile I came across this tutorial on MSDN which is regarding the use of shared memory. I think its pretty easy and I can use that in future as well.
Thanks a lot for the reply..
I gone through the link regarding WM_COPYDATA, But I dont have the handle for the window. That is why I am broadcasting the custom message. So I am afraid I cant use...
Hi,
I need to pass the character array or char* to the another process through BroadcastSystemMessage() API. If I use WPARAM for this, I get the junk address in the recieving process.I am doing...
I still have some doubt abt printer drivers. If they are like DLL's then we must be able to use them as dll. I mean there should be some way we can call the same API's...
As there is no such control available, you need to create one yourself. If you have gone through the links provided by HanneSThEGreaT, you would have noticed one such custom control by...
I am working on this task to convert some mostly used document formats like doc, xls, txt, pdf to the jpeg images. The idea here is to save the first page/part of the document as an image...
I guess there is a problem with linking order of MFC and CRT libraries. As saud in earlier post You can try linking MFC libraries explicitly before CRT libraries.
I am loading the library dynamically using LoadLibrary(). Also I am using .def file, so i guess I dont need to use dllexport and dllimport explicitly....