Lepton Posted May 24, 2010 Posted May 24, 2010 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
taietel Posted May 24, 2010 Posted May 24, 2010 (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 May 24, 2010 by taietel Things you should know first...In the beginning there was only ONE! And zero... Progs: Create PDF(TXT2PDF,IMG2PDF) 3D Bar Graph DeskGadget Menu INI Photo Mosaic 3D Text
Lepton Posted May 24, 2010 Author Posted May 24, 2010 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now