I'm using VBA to generate a dynamic sql statement. In Access Query designers you can relate a table to a query result. that would look like
SELECT tblStateTax.StateAbbr, SOurce_Recon.Source_Count, SOurce_Recon.Source_Cost
FROM tblStateTax LEFT JOIN SOurce_Recon ON tblStateTax.StateAbbr =...
I'm using VBA to generate a dynamic sql statement. In Access Query designers you can relate a table to a query result. that would look like
SELECT tblStateTax.StateAbbr, SOurce_Recon.Source_Count, SOurce_Recon.Source_Cost
FROM tblStateTax LEFT JOIN SOurce_Recon ON tblStateTax.StateAbbr =...
I'm using the following code to grab the folder name where my files sit. The troubling this is I can't see the files when I'm in the browser. Is there a way to grab the folder name AND see it's contents???
Set dlgOpen = Application.FileDialog(msoFileDialogFolderPicker)
dlgOpen.Show
Me!chkTaxPP = True
Returns Runtime Error 2448 You can't assign a value to this object.
I have no idea why I'm getting this error. I'm trying to assign TRUE to a checkbox on a form.
Any idea why this would occur
Using Access2002 VBA
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.