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
PHP: Output image on die
How to automatically resize pictures in Outlook 2007
How to get asp.net page to execute code on page close
php query strings - mod rewrite with pretty URLS - db driven content
How do I CAST DATETIME to get only the month
can a windows 2003 domain controller and a windows 2008 domain controller coexist ?
Change backcolor of the tab header +windows programming vb.net 2005
How can I get an extended desktop in this setup?
Can I reserve a drive letter for a USB external drive
Possible to rename "remote." sub-domain to "mail.domain"?