I want to set the field Suborder from the table orders to true when i issuing an order.In my main form
i have a control with the following code
If Me!ChkSubOrder = True Then
strSQL = "UPDATE orders SET Suborder = True WHERE orderid= Me!orderid FROM orders)"
End If
However the field for the relevant order is not set to True.I must have an error in my code.Could you help me ?
i have a control with the following code
If Me!ChkSubOrder = True Then
strSQL = "UPDATE orders SET Suborder = True WHERE orderid= Me!orderid FROM orders)"
End If
However the field for the relevant order is not set to True.I must have an error in my code.Could you help me ?