HI All,
I am trying to run this little program. It runs without any problem apparently, but do not put value in textbox2.
Any help would be appreciated.
Thanks
Syed


If ComboBox1.Value = "KG" & ComboBox2.Value = "Pounds" Then
TextBox2.Value = Format(TextBox1.Value / 2.2046, "00.00")

ElseIf ComboBox1.Value = "Pounds" & ComboBox2.Value = "KG" Then
TextBox2.Value = Format(TextBox1.Value * 2.2046, "00.00")

End If