Hello.
bkostertag, I think it is best that you use less coding.
It is always a good habit to program to the minimum and use whatever of the convinience in provided in VB.
Example to use the combobox to list your (currencies).
CODE
Combo1.Add "Yen"
Combo1.Add "Euros"
'..... or the easiest is to go to property and enter the value in the "List"
'column. This means no coding.
'***** But always set the Combo1.Text = "your first list, say "Yen" ".
'That is Combo1.Text = "Yen". so that when program start, it points to
'something not null. =).
Private Sub Command_Whatever()
Label1 = ""
txtInput = ""
If Combo1.Text = "Yen" Then Label1 = txtInput * 115
If Combo1.Text = "Euros" Then Label1 = txtInput * 0.79
If Combo1.Text = "Pesos" Then Label1 = txtInput * 11
End Sub
Basically, the only of coding is in your Command_Whatever(). =).
Anand.
This post has been edited by anand_the_great: 12 May, 2008 - 10:35 PM