Jump to content

Recommended Posts

Posted

so i created a lable and set the character limit to like 60 but when i try to GUIctrlsetdata a list of names, it wont show all of it. do i have to somehow allow it to show multi lines ?

Posted

make sure that the size of the label is big enough : GUICtrlCreateLabel("some data", 10, 10, 200, 200)

you can also use this example

Local $names = "my name" & @CRLF & "your name" & @CRLF & "some name"
GUICtrlSetData($label, $names)

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
×
×
  • Create New...