Value of SW_SHOWNOACTIVATE!!!
-
What is the correct value for SW_SHOWNOACTIVATE in ShowWindow function? Is it 0x0700 or 12? Do I have to give in hexadecimal or decimal? Can anyone please help me find this? Muthu.
I believe that it is actually 4, and it doesn't matter whether or not it is hex.
the last thing I want to see is some pasty-faced geek with skin so pale that it's almost translucent trying to bump parts with a partner - John Simmons / outlaw programmer
Deja View - the feeling that you've seen this post before. -
What is the correct value for SW_SHOWNOACTIVATE in ShowWindow function? Is it 0x0700 or 12? Do I have to give in hexadecimal or decimal? Can anyone please help me find this? Muthu.
File C:\...\VC98\Include\WINUSER.H Line 257: #define SW_SHOWNOACTIVATE 4 :)
Luc Pattyn
-
File C:\...\VC98\Include\WINUSER.H Line 257: #define SW_SHOWNOACTIVATE 4 :)
Luc Pattyn
-
The symbol SW_SHOWNOACTIVATE does not look at all like a C# name, it really is part of the good old Win32 API specifications. Whatever you do at a high level, in whatever language, in the end the UI stuff gets handled deep down in Windows so when you do some magic that is supposed to understand SW_SHOWNOACTIVATE, just pass it the value of 4. :)
Luc Pattyn