ChrisLeicester
Member
- Local time
- Today, 18:16
- Joined
- Feb 14, 2025
- Messages
- 33
Hi All
I have a main orders form with a order items subform in it.
The order items has fields for the product, the QTY ordered and the selling price, linked to the parent form by order number.
I have an unbound pop up form which comes up if the selling price is double clicked for price adjustment.
I have a textbox in the pop up form where I can enter a new price, ie. i want to lower the usual price for that customer, and then a command button which when pressed I want to change the original selling price to the new price from the pop up form textbox.
After changing, the subform needs to be requeried so the calculated subtotal, Qty * Price can be displayed.
I thought about using an update query command as I struggled with the refresh using a macro and have tried to use vba. my code is;
when i press the update button I get an error message 'Compile Error - Sub or function not defined', and 'Private sub' line is yellow.
why is this, I used the on click event to build the code
Thanks
Chris
I have a main orders form with a order items subform in it.
The order items has fields for the product, the QTY ordered and the selling price, linked to the parent form by order number.
I have an unbound pop up form which comes up if the selling price is double clicked for price adjustment.
I have a textbox in the pop up form where I can enter a new price, ie. i want to lower the usual price for that customer, and then a command button which when pressed I want to change the original selling price to the new price from the pop up form textbox.
After changing, the subform needs to be requeried so the calculated subtotal, Qty * Price can be displayed.
I thought about using an update query command as I struggled with the refresh using a macro and have tried to use vba. my code is;
Code:
Private Sub PriceChange_Click()
Dim ChangeSQL As String
ChangeSQL = "UPDATE " & [SalesTransactionItemsTB]
Set SalesTransactionItemsTB.RetailItemPrice = [Forms]![PriceAdjustFM]![PriceChange]
WHERE (((SalesTransactionItemsTB.TransactionItemID) = [Forms]![NewCustOrderMainFM]![CustOrderListSub]![TransactionItemID]))
CurrentDb.Execute ChangeSQL, dbFailOnError
Me.[Forms]![NewCustOrderMainFM]![CustOrderListSub].Requery
End Sub
when i press the update button I get an error message 'Compile Error - Sub or function not defined', and 'Private sub' line is yellow.
why is this, I used the on click event to build the code
Thanks
Chris