I'm making a program for the cinema in which you select a movie, number of people (adults, children, teens, seniors) and whether or not you have a loyalty card. The aim is the program takes the number of people and the movie into account, calculates a price and also how many points you will have earned in that sale. Only problem is, i'm using ComboBoxes in the form and I don't know how to utilize them. If I were using Radio Buttons I would do something like this:
If [Radio button var].Checked Then
Whereas I don't know how to declare and use ComboBoxes. I know all options in ComboBoxes are stored as arrays, i.e. Option 1, 2, and 3 is [0, 1, 2] but I don't know how to utilize this in VB. Is it something like:
If [ComboBoxName].[Option].Selected Then
I have no idea.