Re: where to find info of win32lib constant ?
- Posted by daryl_vdb at HOTMAIL.COM May 25, 2001
- 419 views
>hi... > >i'm currently learning win32lib, but i have trouble about win32lib >constant. >for example > >create(aClass, sTitle, aParent, iX, iY, iCx, iCy, aFlags) > >where can i find information about aFlags ? > >thanks I found this very frustrating when I was learning about win32lib. I know how you feel. The docs say nothing about these constants, and hardly even tell you what the flags parameter is for. You might have to look at the constant definitions in the full win32lib source code, read what ever comments there are and generally experiment with different combintations of them to find out what they do. You can just put 0 in the flags parameter and let win32lib use its defaults, which are usually all you need. To use more than one flag, you need to put them in a sequence, and potionally or_all them. Daryl van den Brink