G
Guest
This is my form's RecordSource (it works fine)
SELECT tblProfiles.txtProfileID, tblProfiles.Version, tblProfiles.Type, tblProfiles.Description, tblProfiles.SKUSCCITF, tblProfiles.UPCUCCEAN, tblProfiles.OriginDate, tblProfiles.ApprovedDate, tblProfiles.ActiveDate, tblProfiles.InactiveDate, tblProfiles.RevisedDate, tblProfiles.RevisionHistory, tblProfiles.AllergenComments FROM tblProfiles WHERE (((tblProfiles.Type)="CP"));
Here it is with an OLE object field added. Now when I open the form, none of the records show
SELECT tblProfiles.txtProfileID, tblProfiles.Version, tblProfiles.Type, tblProfiles.Description, tblProfiles.SKUSCCITF, tblProfiles.UPCUCCEAN, tblProfiles.OriginDate, tblProfiles.ApprovedDate, tblProfiles.ActiveDate, tblProfiles.InactiveDate, tblProfiles.RevisedDate, tblProfiles.RevisionHistory, tblProfiles.AllergenComments, tblCPPhysicalAttributes.OLECupLidImage FROM tblProfiles INNER JOIN tblCPPhysicalAttributes ON tblProfiles.txtProfileID=tblCPPhysicalAttributes.txtProfileID WHERE (((tblProfiles.Type)="CP"))
Why would adding the OLE field to the RecordSource do this? How can I resolve it
Thanks!
SELECT tblProfiles.txtProfileID, tblProfiles.Version, tblProfiles.Type, tblProfiles.Description, tblProfiles.SKUSCCITF, tblProfiles.UPCUCCEAN, tblProfiles.OriginDate, tblProfiles.ApprovedDate, tblProfiles.ActiveDate, tblProfiles.InactiveDate, tblProfiles.RevisedDate, tblProfiles.RevisionHistory, tblProfiles.AllergenComments FROM tblProfiles WHERE (((tblProfiles.Type)="CP"));
Here it is with an OLE object field added. Now when I open the form, none of the records show
SELECT tblProfiles.txtProfileID, tblProfiles.Version, tblProfiles.Type, tblProfiles.Description, tblProfiles.SKUSCCITF, tblProfiles.UPCUCCEAN, tblProfiles.OriginDate, tblProfiles.ApprovedDate, tblProfiles.ActiveDate, tblProfiles.InactiveDate, tblProfiles.RevisedDate, tblProfiles.RevisionHistory, tblProfiles.AllergenComments, tblCPPhysicalAttributes.OLECupLidImage FROM tblProfiles INNER JOIN tblCPPhysicalAttributes ON tblProfiles.txtProfileID=tblCPPhysicalAttributes.txtProfileID WHERE (((tblProfiles.Type)="CP"))
Why would adding the OLE field to the RecordSource do this? How can I resolve it
Thanks!