Re: Win32 problems
- Posted by David Cuny <dcuny at LANSET.COM> Dec 19, 1998
- 476 views
Davi Figueirendo wrote: > 1. About once every four or five times, the program crashes ... As Hawke suggested, try to isolate the instruction(s) that cause the error. I'll be glad to take a look at the code, especially if you can narrow it down a bit. > 2. How can I create a window without the title ... Use the last parameter in the create() function. For controls, this value is cumulative (they add on to whatever flags are already set), but for windows, they replace the default values. The flags that control the window styles start with WS_; you might try WS_POPUP. You can also add (or or_all) several attributes together. I may eventually define a number of default window styles for portability between Win32Lib/Dos32Lib. -- David Cuny