pooterpooter
Technical User
In my database for issuing orders i have problems when i
want to to open an old order in order to edit it.
My main form is called FOrderInformation and the subform
FOrder details extended.
i choose the order from a list box called ListOrders.
Dim stDocName As String
Dim stLinkCriteria As String
stLinkCriteria = "orderid = " & Me![ListOrders]
stDocName = "Forderinformation"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Me![Forder details extended].Visible = True
When i open the form i can see the products in the subform,
but some of the products are with missing product names.
What may be the reason for that ?
want to to open an old order in order to edit it.
My main form is called FOrderInformation and the subform
FOrder details extended.
i choose the order from a list box called ListOrders.
Dim stDocName As String
Dim stLinkCriteria As String
stLinkCriteria = "orderid = " & Me![ListOrders]
stDocName = "Forderinformation"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Me![Forder details extended].Visible = True
When i open the form i can see the products in the subform,
but some of the products are with missing product names.
What may be the reason for that ?