Link to home
Start Free TrialLog in
Avatar of jitell
jitell

asked on

Windowless MFC

I am written a number of MFC class
based programs using VC++ app wizard.

I made these programs dialog based.

Now my customer does not want any
windows available to the operators.
Busy fingers and all that.  

How do I generate an MFC application
without using any windows.....and not
loosing access to Windows events...etc.

 
ASKER CERTIFIED SOLUTION
Avatar of jhance
jhance

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jitell
jitell

ASKER

The ShowWindow function was the answer.
ShowWindow(SW_SHOWMINIMIZED)

Thank you
SW_SHOWMINIMIZED still leaves the icon for the app in the taskbar.  SW_HIDE, hides it entirely.  Depends on what you want...