Office Systems Developer

Joao Livio (Portugal)

Feeds

Tags

Recent Posts

Email Notifications

Archives

Generic Content

<p><script type="text/javascript"><!-- google_ad_client = "pub-7235318097025995"; /* 120x600, criado 14/05/09 */ google_ad_slot = "3423323289"; google_ad_width = 120; google_ad_height = 600; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></p>

Browse by Tags

All Tags » Microsoft Access » Access 2007 (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...
VSTO (Access) – How to return a RecordSet from a OleDb Provider?
  // ---------------------------------------------------------------------------------------- // Author: Joao Tito Livio // Company: MACL // Assembly version: 0.0.* // Date: 21-04-2009 // Time: 23:55 // Project Item Name: M3Data.cs // Project Item...
Sample Function to Translate a Access Database IDE (ADODB)
Just an idea to support multilanguage IDE in a Access Database, what i do? i create a Table with the FORM NAME, CONTROL NAME and LANGUAGE, i am selectin the Language and comparing the Control Name with the Table Description, if you want you can ByVal...