Advertisement

no buttons

Started by June 15, 2001 09:15 PM
0 comments, last by ti_mo_n 23 years, 7 months ago
I wrote test-prog. that had to create a window on the screen (i''m talking about win32 asm), but there are no buttons when i run it. there is no sysmenu either, and it doesn''t appear on taskbar. whatever i put in classstruc or wndstruc - it''s always the same. help! i''m using: borland tasm32, tlink32, and import32.lib (included with tasm)
I''ll admit it upfront: I don''t know Win32 ASM. But, the way you get buttons in C/C++ is when you call CreateWindow to have the style OR''ed with WS_SYSMENU (0x00080000), WS_MINIMIZEBOX (0x00020000), and/or WS_MAXIMIZEBOX (0x00010000).

[Resist Windows XP''s Invasive Production Activation Technology!]

This topic is closed to new replies.

Advertisement