Microsoft
Software
Hardware
Network
Question : If table does not exist then
I need a aline of vba code to fo teh following
If table tbl"CustomerConcernsCopy" does not exist then run query "qry_CustomerConcerns"
Answer : If table does not exist then
Dim td As TableDef
On Error Resume Next
Set td = CurrentDb.TableDefs("tbl_C
ustomerCon
cernsCopy"
)
On Error GoTo 0
If td Is Nothing Then CurrentDb.Execute "qry_CustomerConcerns"
Random Solutions
logon hours via group policy
How to save pointer function from a c++ dll to vb.net
Indesign CS5 overset text problem
use vb to determine a windows service LogOn AS?
read pdf from blob column write to file
Error when saving a date in MS SQL...
Are there any issues to be aware of with method overloading when using Web Services?
Access Coding
how many computers can use one wireless router?
In VBA (MS-Word) need to know how to find the name of a drawing object(s).