Sub Timer1_Tick
Dim price,pounds,results As Float
price = PriceLabel.Text
If PriceButtonDown Then
If PriceButtonPressed ="Increase" Then
price = price + .05
Else
If price>0 Then
price = price - .05
End If
End If
PriceLabel.Text = NumberFormat(price,0,2)
End If
pounds = PoundsLabel.Text
NumberFormat(pounds,0,2)
If PoundsButtonDown Then
If PoundsButtonPressed ="Increase" Then
pounds = pounds + .05
Else
If pounds>0 Then
pounds = pounds - .05
End If
End If
PoundsLabel.Text = NumberFormat(pounds,0,2)
End If
ResultsLabel.Text = ((PriceLabel.Text / 50) * PoundsLabel.Text)
ResultsLabel.Text = NumberFormat(results,0,2)
End Sub