AndreasVliegen Posted September 30, 2005 Posted September 30, 2005 (edited) Hello, I started today with AutoIt and I like it, but I'm just a n00b, so please be gentle :"> ... I use the newest stable AutoIt version... I've got a question... I've got this line in my code: GUICtrlCreateLabel("Post direct openen indien enkel" & @CRLF & "resultaat:",5,157) It's a Dutch sentence... But 'resultaat' is only half on the next line, as you can see at the picture in the attachement... How can I solve this problem? Greetings, Andreas Edited September 30, 2005 by AndreasVliegen
GaryFrost Posted September 30, 2005 Posted September 30, 2005 (edited) you'll need to set the width and height for example: GUICtrlCreateLabel("Post direct openen indien enkel" & @CRLF & "resultaat:",5,157,200,50) Edited September 30, 2005 by gafrost SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
Josbe Posted September 30, 2005 Posted September 30, 2005 Hello,I started today with AutoIt and I like it, but I'm just a n00b, so please be gentle :"> ...I use the newest stable AutoIt version...I've got a question...I've got this line in my code:GUICtrlCreateLabel("Post direct openen indien enkel" & @CRLF & "resultaat:",5,157)It's a Dutch sentence...But 'resultaat' is only half on the next line, as you can see at the picture in the attachement...How can I solve this problem? Greetings,AndreasIncrease the height:GUICtrlCreateLabel("Post direct openen indien enkel" & @CRLF & "resultaat:",5, 157, -1, 45) AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
AndreasVliegen Posted September 30, 2005 Author Posted September 30, 2005 Thank you very much, both of you! I'll work this out now...Thanks again Regards, Andreas
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