hello everyone.
I have a DB that maintains truck information...such as plate numbers, titles, inspections, so on and so forth.
These trucks have a certificate for the amount of weight
they can carry. I took all the physical cert's and scanned them. What I want to do is to add these cert's into the DB either as a "report" or a "form" (what ever is best) and assign a truck number to each cert, but the way I want it to work is by way of "stLinkCriteria" when you search for a truck on the main form you can then double click inside of the truck numbers "textbox" and link the cert with the current truck number showing. I want to use something like this to link to the cert (and bring up a popup)
How do I add 41 certificates to my DB and how to assign a truck number to each cert. The cert are truck number specific, so the right truck number has to appear on the right cert.
_________________
FYI
current table, form names
mainform name "Unitplus"
table for main form name "tblUnitPlus"
truck textbox name (on mainform) name "TruckNo"
Does anyone have a suggestion...I appreciate any help at all
Thank you
JZ
Testkitt2
I have a DB that maintains truck information...such as plate numbers, titles, inspections, so on and so forth.
These trucks have a certificate for the amount of weight
they can carry. I took all the physical cert's and scanned them. What I want to do is to add these cert's into the DB either as a "report" or a "form" (what ever is best) and assign a truck number to each cert, but the way I want it to work is by way of "stLinkCriteria" when you search for a truck on the main form you can then double click inside of the truck numbers "textbox" and link the cert with the current truck number showing. I want to use something like this to link to the cert (and bring up a popup)
Code:
stLinkCriteria = "[truckNumber]=" & "'" & Me![TruckNO] & "'"
DoCmd.OpenForm stDocName, , , stLinkCriteria
_________________
FYI
current table, form names
mainform name "Unitplus"
table for main form name "tblUnitPlus"
truck textbox name (on mainform) name "TruckNo"
Does anyone have a suggestion...I appreciate any help at all
Thank you
JZ
Testkitt2