Jump to content

Noob question


Recommended Posts

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 by AndreasVliegen
Link to comment
Share on other sites

you'll need to set the width and height for example:

GUICtrlCreateLabel("Post direct openen indien enkel" & @CRLF & "resultaat:",5,157,200,50)

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

 

Link to comment
Share on other sites

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

Increase the height:

GUICtrlCreateLabel("Post direct openen indien enkel" & @CRLF & "resultaat:",5, 157, -1, 45)

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...