Click here to Skip to main content
15,888,351 members

Comments by ZamirF (Top 3 by date)

ZamirF 15-Feb-11 15:17pm View    
Deleted
Reason for my vote of 5
You learn something new every day. I use 'if' without parenthesis all the time, will be careful next time.
ZamirF 29-Nov-10 12:27pm View    
Deleted
Thanks Enver, can you please provide us with the line you added for cultural check? I will try to incorportate that in my code.
ZamirF 24-Nov-10 17:22pm View    
Deleted
This line:

ADOX.CatalogClass cat = new ADOX.CatalogClass();

may not work if you are using C# 4.0+

You will need
ADOX.Catalog cat = new ADOX.Catalog();

For a completed method checkout:
http://zamirsblog.blogspot.com/2010/11/creating-access-database.html[^]