ı want to 20+30+40 with lisbox but ı not understand where is the wrong
plz help
Professional Software Development Tools
ı want to 20+30+40 with lisbox but ı not understand where is the wrong
plz help
Be sure to use String.ToNumber() when you are getting a numeric value from a label, input, etc...
Not totally sure but I did notice this in your code:
should beCode:result = Label.GetText("Label1"); is = result + 40 Label.SetText("Label4", is);
Not sure if that is the answer but it is worth a shot. You might need to explain further.Code:result = Label.GetText("Label1"); is = result + 40; Label.SetText("Label4", is);
Adam Kapilik
No, ; is optional in Lua.
Label.GetText("Label1") returns a string.
Never know what life is gonna throw at you.
(Based on a true story.)
good call.
Adam Kapilik
for clarification
output enhanced with AMS Code PrettyCode:result = Label.GetText( "Label1"); result = String.ToNumber(result); is = result + 40 Label.SetText( "Label4", is);
Open your eyes to Narcissism, Don't let her destroy your life!!
thanks a lot
ı could make