Jump to content

Recommended Posts

Posted

Want to know if there is an option to turn on with the following?

$Checkbox26 = GUICtrlCreateCheckbox("Some Test text that I want to see if I can wrap for a check box", 353, 318, 197, 17)

To show up with a checkbox that is formatted something like:

Some Test text

that I want

to see if

I can wrap

for a check

box

Thanks,

Kent

Posted (edited)

GUICtrlCreateCheckbox("Some Test text that I want to see if I can wrap for a check box", 240, 168, 97, 57, BitOR($BS_CHECKBOX,$BS_AUTOCHECKBOX,$BS_MULTILINE,$WS_TABSTOP))

[edit] Or, if you want the checkbox to be at the top of the text:

GUICtrlCreateCheckbox("Some Test text that I want to see if I can wrap for a check box", 240, 168, 129, 49, BitOR($BS_CHECKBOX,$BS_AUTOCHECKBOX,$BS_TOP,$BS_MULTILINE,$WS_TABSTOP))

Edited by taietel
Posted

GUICtrlCreateCheckbox("Some Test text that I want to see if I can wrap for a check box", 240, 168, 97, 57, BitOR($BS_CHECKBOX,$BS_AUTOCHECKBOX,$BS_MULTILINE,$WS_TABSTOP))

[edit] Or, if you want the checkbox to be at the top of the text:

GUICtrlCreateCheckbox("Some Test text that I want to see if I can wrap for a check box", 240, 168, 129, 49, BitOR($BS_CHECKBOX,$BS_AUTOCHECKBOX,$BS_TOP,$BS_MULTILINE,$WS_TABSTOP))

Very nice! That will work!

Thank you,

Kent

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...