In a form I have an unbound textbox. I then have a subform in a tab control. The subform is a query as follows:
SELECT PCR.PCRnum AS PCR, STIA.STIARev AS Rev, STIA.WP, STIA.STIAPDF.FileName AS PDF
FROM PCR INNER JOIN STIA ON PCR.PCRnum = STIA.PCR
WHERE (PCR.PCRnum=FindPCR.PCRsearched);
I am trying to build a little VB code that will on exit of the textbox run the query in the subform matching the value with PCR.PCRnum
I am new to access VB (I do a lot of Excel VB) and I am having troubles with the references.
Thank you!