1. win32lib -- create()

Hey...

create ( pControl, title, parent, x, y, cx, cy, flags )

can't find _any_ docs for 'flags' above. I need to see a list of these flags and
a description of what they control. I searched the win32lib 'Docs' directory
(grep-ed for WS_DLGFRAME, e.g.) -- no joy! Any clues where there is further docs?
TIA....
-- duke
SW of Calgary - near the Rockies
http://www.rootshell.be/~perlster/euphoria/

new topic     » topic index » view message » categorize

2. Re: win32lib -- create()

duke normandin wrote:
> 
> Hey...
> 
> create ( pControl, title, parent, x, y, cx, cy, flags )
> 
> can't find _any_ docs for 'flags' above. I need to see a list of these flags
> and a description of what they control. I searched the win32lib 'Docs'
> directory
> (grep-ed for WS_DLGFRAME, e.g.) -- no joy! Any clues where there is further
> docs? TIA....
> -- duke
> SW of Calgary - near the Rockies
> <a
> href="http://www.rootshell.be/~perlster/euphoria/">http://www.rootshell.be/~perlster/euphoria/</a>

There are so many flags defined by Microsoft that I couldn't really do a good
job documenting them myself. I suggest you start with the MSDN library site. Here
are some good places to begin ...

  http://msdn2.microsoft.com/en-us/library/ms649779.aspx

  http://msdn2.microsoft.com/en-us/library/ms632597.aspx#window_style


-- 
Derek Parnell
Melbourne, Australia
Skype name: derek.j.parnell

new topic     » goto parent     » topic index » view message » categorize

3. Re: win32lib -- create()

Derek Parnell wrote:
> 
> duke normandin wrote:
> > create ( pControl, title, parent, x, y, cx, cy, flags )
> > 
> > can't find _any_ docs for 'flags' above.
> > Any clues where there is further docs?
> 
> There are so many flags defined by Microsoft that I couldn't ...
> Here are some good places to begin ...

One other place I have in my bookmarks is:

http://www.autoitscript.com/autoit3/docs/appendix/GUIStyles.htm

If nothing else it should give you an idea of just how many there are, and hence
how many ways they could be combined...

Regards,
Pete

new topic     » goto parent     » topic index » view message » categorize

4. Re: win32lib -- create()

Pete & Derek....

Thanks guys for the leads!
--
duke
SW of Calgary - near the Rockies
http://www.rootshell.be/~perlster/euphoria/

new topic     » goto parent     » topic index » view message » categorize

5. Re: win32lib -- create()

Pete Lomax wrote:
> 
> Derek Parnell wrote:
> > 
> > duke normandin wrote:
> > > create ( pControl, title, parent, x, y, cx, cy, flags )
> > > 
> > > can't find _any_ docs for 'flags' above.
> > > Any clues where there is further docs?
> > 
> > There are so many flags defined by Microsoft that I couldn't ...
> > Here are some good places to begin ...
> 
> One other place I have in my bookmarks is:
> 
> <a
> href="http://www.autoitscript.com/autoit3/docs/appendix/GUIStyles.htm">http://www.autoitscript.com/autoit3/docs/appendix/GUIStyles.htm</a>
> 
> If nothing else it should give you an idea of just how many there are, and
> hence
> how many ways they could be combined...
> 
> Regards,
> Pete

<plug>
In the collection of pags at http://euwiki.ayo.biz/Category:Win32lib
, you'll find, by control, a list of applicable flags. Those which apply to 
all controls are in the "Styes that apply to windows" section somewhere.

I don't know if this is an exhaustive reference, it may lack accuracy 
sometimes, but will give you an idea of what does what. As suggested already,
you should go to MSDN to get a supposedly reliable description. I can tell 
you that the description leaves me puzzled about how to use it sometimes, not 
often though.
Also take note that, on MSDN, style and extended style flags are always on 
different pages. 

CChris

new topic     » goto parent     » topic index » view message » categorize

6. Re: win32lib -- create()

CChris wrote:
> 
> Pete Lomax wrote:
> > 
> > Derek Parnell wrote:
> > > 
> > > duke normandin wrote:
> > > > create ( pControl, title, parent, x, y, cx, cy, flags )
> > > > 
> > > > can't find _any_ docs for 'flags' above.
> > > > Any clues where there is further docs?
> > > 
> > > There are so many flags defined by Microsoft that I couldn't ...
> > > Here are some good places to begin ...
> > 
> > One other place I have in my bookmarks is:
> > 
> > <a
> > href="http://www.autoitscript.com/autoit3/docs/appendix/GUIStyles.htm">http://www.autoitscript.com/autoit3/docs/appendix/GUIStyles.htm</a>
> > 
> > If nothing else it should give you an idea of just how many there are,
> > and hence how many ways they could be combined...
> > 
> > Regards,
> > Pete
> 
> <plug>
> In the collection of pags at <a
> href="http://euwiki.ayo.biz/Category:Win32lib">http://euwiki.ayo.biz/Category:Win32lib</a>
> , you'll find, by control, a list of applicable flags. Those which apply to
> 
> all controls are in the "Styes that apply to windows" section somewhere.
> 
> I don't know if this is an exhaustive reference, it may lack accuracy 
> sometimes, but will give you an idea of what does what. As suggested
> already, you should go to MSDN to get a supposedly reliable description.
> I can tell you that the description leaves me puzzled about how to use it
> sometimes, not often though.
> Also take note that, on MSDN, style and extended style flags are always on 
> different pages. 
> 
> CChris

Thanks again for the extra lead! I have NO excuse now not create my first
"widget" in Euphoria. However, it just dawned on me (duhhh) that if I want to
make this earth-shattering "widget" platform-independent, I had better use
something other than win32lib. L8r....
--
duke
SW of Calgary - near the Rockies
http://www.rootshell.be/~perlster/euphoria/

new topic     » goto parent     » topic index » view message » categorize

7. Re: win32lib -- create()

duke normandin wrote:
> 
> CChris wrote:
> > 
> > Pete Lomax wrote:
> > > 
> > > Derek Parnell wrote:
> > > > 
> > > > duke normandin wrote:
> > > > > create ( pControl, title, parent, x, y, cx, cy, flags )
> > > > > 
> > > > > can't find _any_ docs for 'flags' above.
> > > > > Any clues where there is further docs?
> > > > 
> > > > There are so many flags defined by Microsoft that I couldn't ...
> > > > Here are some good places to begin ...
> > > 
> > > One other place I have in my bookmarks is:
> > > 
> > > <a
> > > href="http://www.autoitscript.com/autoit3/docs/appendix/GUIStyles.htm">http://www.autoitscript.com/autoit3/docs/appendix/GUIStyles.htm</a>
> > > 
> > > If nothing else it should give you an idea of just how many there are,
> > > and hence how many ways they could be combined...
> > > 
> > > Regards,
> > > Pete
> > 
> > <plug>
> > In the collection of pags at <a
> > href="http://euwiki.ayo.biz/Category:Win32lib">http://euwiki.ayo.biz/Category:Win32lib</a>
> > , you'll find, by control, a list of applicable flags. Those which apply to
> > 
> > all controls are in the "Styes that apply to windows" section somewhere.
> > 
> > I don't know if this is an exhaustive reference, it may lack accuracy 
> > sometimes, but will give you an idea of what does what. As suggested
> > already, you should go to MSDN to get a supposedly reliable description.
> > I can tell you that the description leaves me puzzled about how to use it
> > sometimes, not often though.
> > Also take note that, on MSDN, style and extended style flags are always on 
> > different pages. 
> > 
> > CChris
> 
> Thanks again for the extra lead! I have NO excuse now not create my first
> "widget"
> in Euphoria. However, it just dawned on me (duhhh) that if I want to make this
> earth-shattering "widget" platform-independent, I had better use something
> other
> than win32lib. L8r....
> --
> duke
> SW of Calgary - near the Rockies
> <a
> href="http://www.rootshell.be/~perlster/euphoria/">http://www.rootshell.be/~perlster/euphoria/</a>

That's what wxEuphoria is for.

Don Cole

new topic     » goto parent     » topic index » view message » categorize

8. Re: win32lib -- create()

don cole wrote:
> 
> duke normandin wrote:
 
> > Thanks again for the extra lead! I have NO excuse now not create my first
> > "widget" in Euphoria. However, it just dawned on me (duhhh) that if I
> > want to make this earth-shattering "widget" platform-independent, I had
> > better use something other than win32lib. L8r....

> That's what wxEuphoria is for.

Yep! Found it! Thanks.
--
duke
SW of Calgary - near the Rockies
http://www.rootshell.be/~perlster/euphoria/

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu