K
kimiraikkonen
Hello,
I have an aritmetic calculation like this:
First note that: i need a "timer" to get the value for value3.
(however removing "timer" didn't differ)
Dim value1 As Long
Dim value2 As String
Dim value3 As String
value3 = (value2 * 8) / value1
Label1.Text = value3
which returns result (label1.text) as an "infinity" value. If the
result is not infinity no problem.
Here's a problem that i want to display first 3 chars of the infinity
value?
(eg: if the infinity value is 180,5654568456845684.... i want
label1.text to display "180"
How can i do this?
Thanks...
I have an aritmetic calculation like this:
First note that: i need a "timer" to get the value for value3.
(however removing "timer" didn't differ)
Dim value1 As Long
Dim value2 As String
Dim value3 As String
value3 = (value2 * 8) / value1
Label1.Text = value3
which returns result (label1.text) as an "infinity" value. If the
result is not infinity no problem.
Here's a problem that i want to display first 3 chars of the infinity
value?
(eg: if the infinity value is 180,5654568456845684.... i want
label1.text to display "180"
How can i do this?
Thanks...