What do you want to do with the result and where do you need to do the calculation? Maybe you can do the calculation behind a form and display it in an unbound control. If you are going to use code behind a form, I suggest you start by adding a Command Button Control to your form while in Design View. Then, in the button's click event, you could use code like ...
Code:
msgbox Me.ListControlName.Value * Me.ComboName.Value
While in form view, you could select an option from the List Box control and also select a value from the Combo Box control. Then, click the button you added to execute the VBA code.