Jump to content

GUICtrlSetData with 3 variables?


Recommended Posts

   Hi guys!

How to get this GUICtrlSetData right? Id like in label $info will be shown 2 different things from varables $Total and $TreeTime.
So far i got only one of them to work like this GUICtrlSetData($info, $Total)

While 1
Sleep (1000)
   $TreeTime -= 4
   $Total += 3
   GUICtrlSetData($info, $Total[$TreeTime]) ; first cell 70 width
WEnd

 

Link to comment
Share on other sites

While 1
Sleep (1000)
   $TreeTime -= 4
   $Total += 3
   GUICtrlSetData($info, $Total & " " & $TreeTime) ; first cell 70 width
WEnd

So, what I did was added the & and also you can see I made a "space" so it will show like this:

"3 4" instead of "34"

Kind Regards
Skeletor

"Coffee: my defense against going postal."

Microsoft Office Splash Screen | Basic Notepad Program (Beginner) | Transparent Splash Screen | Full Screen UI

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