Kreatorul Posted October 6, 2006 Posted October 6, 2006 How can I center a label? the label data is changing so I need it centered no matter the lengh of the label
BigDod Posted October 6, 2006 Posted October 6, 2006 Lookup $SS_CENTER in the GUI Control Styles Appendix of the help file. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
GaryFrost Posted October 6, 2006 Posted October 6, 2006 #include <GuiConstants.au3> GUICreate("Center Label",200,200) $lbl = GUICtrlCreateLabel("Here's some text",10,10,180,20, BitOR($SS_CENTER, $SS_SUNKEN)) GUISetState() Sleep ( 3000 ) GUICtrlSetData($lbl,"Here's some more text") Sleep ( 3000 ) GUICtrlSetData($lbl,"less text") Sleep ( 3000 ) SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
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