Jump to content

Recommended Posts

Posted

Is there a way to make a Control have more than one style?

My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
Posted

Would you mind explaining me how to do that? *crosses fingers and gets ready to be yelled at*

My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
Posted (edited)

so

$channeltext = GUICtrlCreateEdit("hi", 1, 1, $channeltextwidth, $channeltextheight, 0x0800)

is the same as

$channeltext = GUICtrlCreateEdit("hi", 1, 1, $channeltextwidth, $channeltextheight, $ES_READONLY)

?

Edited by the_lord_mephy
My site for HTML Help :)[quote name='Valik' date='Oct 15 2004, 12:29 PM']Maybe nobody is an "elite uber-coder" like me because thinking is a capital offense in today's online-world?[right][snapback]36427[/snapback][/right][/quote]
Posted

That really depends on whether or not the actual value for $ES_READONLY is 0x0800. I don't know about the rest of you, but I remember the style names a hell of a lot easier than the numbers, so I don't care what the numbers are.

Posted (edited)

so

$channeltext = GUICtrlCreateEdit("hi", 1, 1, $channeltextwidth, $channeltextheight, 0x0800)

is the same as

$channeltext = GUICtrlCreateEdit("hi", 1, 1,$channeltextwidth,$channeltextheight, $ES_READONLY)

?

<{POST_SNAPBACK}>

It should be

$ChannelText = GUICtrlCreateEdit("hi", 1, 1,-1,-1,BitOR($channeltextwidth,$channeltextheight))

Edited by GEOSoft

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...