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
Images in select drop-down list
Working with the fopen() function in PHP
MM_preloadImages(), what does "#" in the passed argument mean, why do that.
Hirarchy problem
Why is my email being bounced back? HELP!
mysql installation,configuration
in linux
network_desiign
hp deskjet 5943 makes a funny noise
How do I delete all Outlook (2010) message prior to this year?
Need Microsoft VBA to loop through clipboard and add records via sql statement executed by Currentdb?