M
Michael Firey
I use the "After Update" code below and am having a puzzling problem.
With certain "Item Codes", it doesn't update. I'm trying to figure
out why.
Example "Itemcodes" that do work:
"Barrister"
"NotebookLabor"
Example "ItemCodes" that do not work:
"Rhombus"
"LaptopLabor"
Here is the code I'm using:
Private Sub ItemCode_AfterUpdate()
Me.ItemCode.Requery
Me.Price = Me.ItemCode.Column(1)
Me.ItemDescription = Me.ItemCode.Column(2)
Me.ItemType = Me.ItemCode.Column(3)
End Sub
With certain "Item Codes", it doesn't update. I'm trying to figure
out why.
Example "Itemcodes" that do work:
"Barrister"
"NotebookLabor"
Example "ItemCodes" that do not work:
"Rhombus"
"LaptopLabor"
Here is the code I'm using:
Private Sub ItemCode_AfterUpdate()
Me.ItemCode.Requery
Me.Price = Me.ItemCode.Column(1)
Me.ItemDescription = Me.ItemCode.Column(2)
Me.ItemType = Me.ItemCode.Column(3)
End Sub