--
----------------------------------------------------------------------------
--------------------------
Sheri Steeves | Applying computer technology is a matter of finding
Software Developer | the right wrench to pound in the correct screw.
TYDAC Research Inc.
-------------------------------------------------------------------
2 Gurdwara, Suite 210 | Phone : 1-613-226-5525
Ottawa, Ontario K2E 1A2
-------------------------------------------------------------------
http://www.tydac.com | Fax : 1-613-226-3819
----------------------------------------------------------------------------
---------------------------
******************* Part of the PCI Geomatics Group
******************
----------------------------------------------------------------------------
---------------------------
--Mike Smith
Sheri Rector <sre...@tydac.com> wrote in article
<01bd41f3$96350f40$5b4470cf@srector>...
Sheri Rector wrote in message <01bd41f3$96350f40$5b4470cf@srector>...
|Hi -
| I need a way to bring a window up initially hidden.
ShowWindow( hWnd, SW_HIDE );
Regards,
davep
--
Dave Postill Email: personal <da...@visix.com>
European Support Manager galaxy support <supp...@visix.com>
vibe support <vibe-s...@visix.com>
Visix Software (UK) Ltd Direct: +44 (0) 171 753 2843
1 Northumberland Avenue Switchboard: +44 (0) 171 872 5825
Trafalgar Square Fax: +44 (0) 171 753 2720
London, WC2N 5BW Web: http://www.visix.com
--
Patrick Philippot
-pp (MainSoft sarl)
------------------------------------
patrick....@iname.com
Compuserve: mainsoft / main...@compuserve.com
http://ourworld.compuserve.com/homepages/mainsoft
tel/fax: +33 (0)1 69 40 94 85
Unless I'm missing out on something obvious, why can't you
use SW_HIDE instead of SW_NORMAL in the call to ShowWindow()?
Window styles don't handle hiding/showing windows. Maybe that
was a red herring.
Scott
--
Look at Softbase Systems' client/server tools, www.softbase.com
Check out the Essential 97 package for Windows 95 www.skwc.com/essent
All my other cool web pages are available from that site too!
My demo tape, artwork, poetry, The Windows 95 Book FAQ, and more.
Yes it is -- there's a WS_VISIBLE flag, and if it's not set, the
window is invisible. If you're creating a modal dialog, Windows will
normally force the WS_VISIBLE bit on, even if you don't set it.
However, with normal windows if WS_VISIBLE isn't set, the window is
invisible.
--
Later,
Jerry.
The Universe is a figment of its own imagination.
Wouldn't it be better to either
- no call ShowWindow(hWnd, SW_SHOW)
- remove the WS_VISIBLE flag
- Sten