QUOTE(pzeller @ 4 Apr, 2008 - 09:21 AM)

Oh my ... that was it ... Thank you so much.
The teacher left out that little part of the equation.
Peg
I know I shouldn't expect you to help with my homework ... I've tried and tried and tried ... I thought I understood sub procedures but I keep getting an "expression is not an array or a method, and cannot have an argument list". I placed a Sub Procedures called Temp, I called out the Dim's in it and assigned the mathematical equation to the C variable but the 9 in the 5 divided by 9 is erroring with the above statement.
Can someone help me?
Here is my sub code and the calcButton code ...
Private Sub Temp()
Dim F As Decimal
Dim C As Decimal
Dim isConverted As Boolean
C = 5 / 9(F - 32)
isConverted = Decimal.TryParse(FahrTextBox.Text, F)
celsiusLabel.Text = C.ToString
End Sub
Private Sub calcButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles calcButton.Click
Call Temp()
Call Clear()
End Sub
I really would be ok with a hint or two about what the error is talking about. I'm just a beginner in VB05.
Thanks,