I dont know what I am doing! I want to use this field to do calculations on.It is a textbox and has a value list of 0,15,30,45 named min
I am trying to calculate the hourly rate of a selected value, lets say $10 an hour and when the user selects the minutes then the value will calculate out.
bound control named min uses a value list with options of 0,15,30,45 I also have an unbound textbox named txtmin to store the value of that selection times the hourly rate for the control named myrate
So, it's myrate * min and that value shows up in the textbox txtmin. Here is my code:
Dim txtmin As varValue (Is This Right?)
Select Case Me.min
Case Is = "15" 'if user selects 15 minutes use this
Me.txtmin = [myrate] * 0.25