Office Systems Developer

Joao Livio (Portugal)

Browse by Tags

All Tags » Microsoft Access » VSTO (RSS)
VSTO (Access) How to Backup the Current project?
Access.Application oAccess = ((Access.Application)                 (Marshal.GetActiveObject("Access.Application"))); // ---------------------------------------------...
VSTO (Access) How to execute a SQL Statement from a File?
public bool ExecuteSqlFromFile(String MyConnectionString, String MyTextFilePath) { using (OleDbConnection sqlConnection = new OleDbConnection(MyConnectionString)) { OleDbCommand cmd = new OleDbCommand(); try { using (StreamReader fh = new StreamReader...