Firstly you need to be sure that you send something and receive something. You can put AfxMessageBox(TEXT("Received")); if ReadFile returns TRUE.
The code I wrote in the previous message will show...
But where you test your application? If it is an emulator so you need to put your pictures in its folder. If you have a PDA, so copy the application and the picture into \\Windows\StartMenu, for...
Perhaps, I don't know how to use such functions correctly. So I prefer to use events when I need to suspend a thread. The thread is a loop with WaitForMultipleObjects.
I don't know what is this the ICE or how you called it and I'm not sure that I understand what is this the DOS application but I can try to answer you. I think there is no problem with Win32 Serial...
If all previous answers did not help, try to remove your static picture control and draw the bitmaps directly on the window HDC. This way always works. Especialy on WinCE. If it's difficult for you,...
I found a function: SHSetAppKeyAssoc.
It works exactly as I wanted.
I saw this arcticle (with undocumented function). I don't know why somebody needs it. Do you have any idea?
Did you solve this problem ?
I thought the buttons are hot keys and I can use RegisterHotKey and that will work like it written in MSDN. I was mistaken.
So can you tell me what to do?
maybe we can help you without downloading?
1. From my point of view you can use only one view and put on it all controls you need and your button will hide part of them and show other part.
2. What...
WOW! It's too complicated.
1. The button belongs to the first dialog and the dialog has somethig like OnButton function where you wrote int nRet = dlg2.DoModal(). If it is correct you can write...
What I know about it you can remove the caption - that's the window style you can remove it using ModifyStyle function. Or if you like the caption :) you can play with WM_SIZE or better with...
If you're talking about standard application projects in MFC (or WTL), you can
1. create SDI application and on the last page of the wizard you can set CFormView as a base class for your view...