Greetings,
I'm creating a calculator for a game.. However when i use the code below, i get this error message:
Conversion from string "" to type 'Double' is not valid.
Private Sub DualTimer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DualTimer.Tick
If BuildCombo.Text = "Main-Hand + Off-Hand" Then
APSDPS3.Text = APSDPS.Text * ((15 / 100) + 1)
End If
End Sub
The APSDPS3.Text = APSDPS.Text * ((15/100) + 1) in the code seems to be the problem, but what can i do to fix it?
Regards,
fRodzet