gomindi Posted December 16, 2002 Posted December 16, 2002 I am new to VB.NET and need a little help with combo boxes. basically I want to perform a calculation from two comboboxes. so if A combo box choice 1 were selected and B combobox choice 3 were selected I want to calculate the two and show it in a table. Any help?!! Please!! Quote
*Gurus* Derek Stone Posted December 17, 2002 *Gurus* Posted December 17, 2002 Dim i As Integer = Int32.Parse(ComboBox1.Text) + Int32.Parse(ComboBox2.Text) MessageBox.Show(i.ToString(), Application.ProductName) Quote Posting Guidelines
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.