THE BOLD part is where it points to giving me a Invalid conversion error.Code:Dim intText1 As Long Dim intText2 As Integer Dim intText3 As Long intText1 = Val(Frm3.TextBox1.Text) 'Here is says Conversion from string "" to type 'Long' is not valid. intText2 = Val(Frm3.TextBox2.Text) intText3 = CStr(Val(Frm3.TextBox1.Text) * Val(Frm3.TextBox2.Text)) Frm3.TextBox3.Text = intText3


Reply With Quote


Bookmarks