I am perplexed but sure I am Doing something wrong!
The following code was working but now I get the error .. "Object doesn't support this property or method."
Private Sub Buy_BeforeUpdate(Cancel As Integer)
If Me![BUY] < Forms.Stock_Data![Lowest] Then
Forms.Stock_Data![Lowest] = Me![BUY]
End If
If Me![BUY] > Forms.Stock_Data![Highest] Then
Forms.Stock_Data![Highest] = Me![BUY]
End If
End Sub
If I make a change to the field[Buy] in the first form, I want to be able to replace a value in another table. Please help. I hope this makes sense! Bill
The following code was working but now I get the error .. "Object doesn't support this property or method."
Private Sub Buy_BeforeUpdate(Cancel As Integer)
If Me![BUY] < Forms.Stock_Data![Lowest] Then
Forms.Stock_Data![Lowest] = Me![BUY]
End If
If Me![BUY] > Forms.Stock_Data![Highest] Then
Forms.Stock_Data![Highest] = Me![BUY]
End If
End Sub
If I make a change to the field[Buy] in the first form, I want to be able to replace a value in another table. Please help. I hope this makes sense! Bill