boltc Posted October 31, 2006 Posted October 31, 2006 i want to create a inputbox thats not possible to edit and it needs to right aligns the text.i have this for now on:$ctrlinput = GUICtrlCreateInput("", 16, 16, 153, 21, $ES_READONLY)but i also want the right alings.. the code is: "$ES_RIGHT"this doesnt work:$ctrlinput = GUICtrlCreateInput("", 16, 16, 153, 21, $ES_READONLY & $ES_RIGHT) or.. $ctrlinput = GUICtrlCreateInput("", 16, 16, 153, 21, ($ES_READONLY, $ES_RIGHT))need help
Danny35d Posted October 31, 2006 Posted October 31, 2006 (edited) The best way to combine GUI control styles is by using BitOr$ctrlinput = GUICtrlCreateInput("", 16, 16, 153, 21, BitOR($ES_READONLY, $ES_RIGHT)) Edited October 31, 2006 by Danny35d AutoIt Scripts:NetPrinter - Network Printer UtilityRobocopyGUI - GUI interface for M$ robocopy command line
boltc Posted October 31, 2006 Author Posted October 31, 2006 thankyou.. it works.. but what does bitor excelly?
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