I have a strange one here that I just can't seem to figure out.
My Access front-end project runs on an SQL 2005 express backend.
I have been using subforms for donkeys years and it's the only reason why I haven't migrated the application to a VB/VS front end.
However, since upgrading to Access 2010 I cannot get subforms to work. Instead, when I try to add a row, I get the following error (The data was added to the database but the data won't be displayed in the form because it doesn't satisfy the criteria in the underlying record source.):
The master and child forms are linked on poid and PONo.
I have created forms from scratch with all defaults, but still the issue remains.
My SQL tables are
PURCHASE: - - poid, int, PK, Identity, seed 1, inc 1 supplierID, int orderdate, DateTime deliverydate, datetime ordersent, bit ordercomplete, bit initials, nvarchar supplierinvoiceno, nvarchar branchid, int bookedin, bit deliverycharge, money
[STOCK - Detail]: - - stockid, int, PK, Identity, Seed 1, inc 1 CodeID, int service, bit costprice, money PONo, int Instock, bit SerialNo, char StockTake, bit Branch, Char ProductID, int
Any help would be very much appreciated.
Many thanks,
Abe