Trainer Search

ArtificialReape

New Member
Joined
Dec 31, 2015
Messages
5
Reaction score
0
CNHf0x2


How do i complete this? [Apparently double can't be converted to label, so what can?]
 

epsilonpsi

New Member
Joined
Feb 7, 2016
Messages
1
Reaction score
0
Not sure what you are attempting to do, are you trying to display something there?
 

tolsen64

New Member
Joined
Oct 4, 2016
Messages
1
Reaction score
0
CNHf0x2


How do i complete this? [Apparently double can't be converted to label, so what can?]
It sounds like you are trying to set a label to a number. You can't do that. A label is a control. You need to set the text property of the label to the number. For example, don't do this, it won't work.

Code:
label1 = 9

but instead, do this:

Code:
label1.text = 9
 
Top