I have a string which is built up with a calculate button and is displayed in a label:
The Price is: £ 985 Per Product
Me.LblCost.Caption = "The Price is: " & "£ " & CStr(Price) & Strpriceduration
this gives me the cost per product, some products are priced per week and I wanted to calculate the total price by multiplying the weekly price. I have a combo with 1 to 20 to allow user to select a multiplier value that I wanted to send the value to a total value text field. (all unbound) I am going then to create a recordset to update a bookings table and also a transactions table where the invoices take their details from.
How do I extract the varying length price from the string above. The multiplier combo change event is where this is looking for the price off the form.
hope I explained that well.
regards in advance and happy may day.
The Price is: £ 985 Per Product
Me.LblCost.Caption = "The Price is: " & "£ " & CStr(Price) & Strpriceduration
this gives me the cost per product, some products are priced per week and I wanted to calculate the total price by multiplying the weekly price. I have a combo with 1 to 20 to allow user to select a multiplier value that I wanted to send the value to a total value text field. (all unbound) I am going then to create a recordset to update a bookings table and also a transactions table where the invoices take their details from.
How do I extract the varying length price from the string above. The multiplier combo change event is where this is looking for the price off the form.
hope I explained that well.
regards in advance and happy may day.