Tech Support > Microsoft Windows > Development Resources
Send message from a process to a thread in another process
Posted on May 23rd, 2007 | 1 Comments

* Kellie Fitton: Kellie, you sent your message /four/ times. Perhaps use some other API than the one you used for that? ;-) Cheers, - Alf --

Send message from a process to a thread in another process
Posted on May 23rd, 2007 | 0 Comments

On May 23, 3:40 am, param <sparamesw...@gmail.com> wrote: Hi, Well, windows32 applications operate in their own protected address space. So, if your two application processes/windows are existing...

Send message from a process to a thread in another process
Posted on May 23rd, 2007 | 0 Comments

On May 23, 3:40 am, param <sparamesw...@gmail.com> wrote: Hi, Well, windows32 applications operate in their own protected address space. So, if your two application processes/windows are existing...

Send message from a process to a thread in another process
Posted on May 23rd, 2007 | 0 Comments

On May 23, 3:40 am, param <sparamesw...@gmail.com> wrote: Hi, Well, windows32 applications operate in their own protected address space. So, if your two application processes/windows are existing...

Error ERROR_INVALID_HANDLE directly after WinMain (created with VC++ 2003, .net 1.1)
Posted on May 23rd, 2007 | 1 Comments

Axel Wild wrote: GetLastError is meaningful only after calling an API that returns an error. Do not call it in other situations. -- Scott McPhillips

How to launch Acrobat Reader from my own source
Posted on May 23rd, 2007 | 2 Comments

"Alf P. Steinbach" <alfps@start.no> wrote: I figured it out: To get full path to acrobat I use: FindExecutable("mypdf.pdf","",buffer); buffer will then have: C:\Program Files\Adobe\Reader...

Any key pressed?
Posted on May 23rd, 2007 | 0 Comments

On May 23, 12:06 pm, aleksa <aleks...@gmail.com> wrote: Several PeekMessage with WM_KEYDOWN, WM_SYSKEYDOWN, WM_LBUTTONDOWN, WM_RBUTTONDOWN and WM_MBUTTONDOWN has solved the problem. Thanks

Any key pressed?
Posted on May 23rd, 2007 | 0 Comments

On May 23, 12:06 pm, aleksa <aleks...@gmail.com> wrote: Several PeekMessage with WM_KEYDOWN, WM_SYSKEYDOWN, WM_LBUTTONDOWN, WM_RBUTTONDOWN and WM_MBUTTONDOWN has solved the problem. Thanks

Incoming COM messages while waiting !
Posted on May 23rd, 2007 | 0 Comments

Hi ! I have a re-enter problem in a large STA application. The problem occurs when the app is waiting for response on a Synchronous outgoing call. Because the incoming messages are dispatched by the...

Send message from a process to a thread in another process
Posted on May 23rd, 2007 | 0 Comments

Hi I want to send a message from a process to a thread which is part of another process. The process is started as part of a service. So If i send a message using PostThreadMessage from unrelated...

CREATEProcess Problems with Commandline Program!!!
Posted on May 23rd, 2007 | 0 Comments

On 23 Mai, 10:26, jimbo <joachim.zett...@googlemail.com> wrote: Hmm...it seems that everytime I reply to a post it is sent two times : ( Sorry for that

CREATEProcess Problems with Commandline Program!!!
Posted on May 23rd, 2007 | 0 Comments

On 23 Mai, 09:48, "Alf P. Steinbach" <a...@start.no> wrote: Hi, thank you for your answer. In fact I finally found a solution. I just replaced the > < signs with TI and TO and it worked just fine...

CREATEProcess Problems with Commandline Program!!!
Posted on May 23rd, 2007 | 0 Comments

On 23 Mai, 09:48, "Alf P. Steinbach" <a...@start.no> wrote: Hi, thank you for your answer. In fact I finally found a solution. I just replaced the > < signs with TI and TO and it worked just fine...

CREATEProcess Problems with Commandline Program!!!
Posted on May 23rd, 2007 | 1 Comments

* joachim.zettler@googlemail.com: The redirection operators are interpreted by the command interpreter, not by CreateProcess. So one solution is to run solver.exe via the command interpreter, i.e....

Get Drive and Partition Numbers from Drive Letter?
Posted on May 23rd, 2007 | 1 Comments

Computer Guru wrote: Get a handle to the storage volume by calling CreateFile with "\\.\\\\C:" (0 access is good enough), then call DeviceIoControl with IOCTL_STORAGE_GET_DEVICE_NUMBER. Greetings...

LUA Problem
Posted on May 23rd, 2007 | 4 Comments

On May 22, 12:32 pm, Grinder <grin...@no.spam.maam.com> wrote: I think SetFileSecurity API can help me out in this matter

How does Windows 2003 Server record shutdown reason?
Posted on May 23rd, 2007 | 2 Comments

I'm not meant to ask how to call a Dll-exported function. But to know how does RecordShutdownReason works. Anyway, thanks for your answer.:-) GrepAll On 5ÔÂ23ÈÕ, ÉÏÎç2ʱ55·Ö, Rymfax...

An Unsupported operation was attempted
Posted on May 22nd, 2007 | 1 Comments

On May 18, 9:25 pm, ramsara...@gmail.com wrote: Hi, I have found out the problem - what it is. There are lot of reasons for this kind of messages 1. If you have an ocx which has used another ocx...

window hierarchy design
Posted on May 22nd, 2007 | 1 Comments

On May 17, 6:31 pm, Jason S <jmsa...@gmail.com> wrote: Well, I got a dummy window working properly for resizing. Now my only issue is that I still can't use DS_CONTROL without my application locking...

Using SendMessage To Send TAB Key
Posted on May 21st, 2007 | 3 Comments

On May 20, 5:00 am, Ram <Ste...@gmail.com> wrote: Hi, The following links should help you...