-
Recent Posts
- MS Access – Code Snippets for Navigating using Internet Explorer
- MS Access Front End – Linked to PostGreSQL back end – a simple walk through using Access 2003
- MS Access Function Collection that can be used to Generate Housing Forecast Figures
- AHK – Useful AutoHotKeyScripts for Outlook specifically
- AHK – Useful AutoHotKeyScripts
- Navigate to Website directly from MS Access using Internet Explorer
- Add Open Street Map to Background QGIS Project and then Digitise against imported Raster
- Links to GIS information for test system design
- MS Access 2010 – Simple Function to loop through a list and Print to file an individual PDF
- SQL SERVER – Create TSQL Trigger to add date to existing record after INSERT or UPDATE
- MS Access – VBA Functions – Create Category Tag Junction Table by comparing a text field against a table of categories
- MS Access – VBA – Open Form and go to record from unbound List Box
- Simple Bat File to open multiple Web Pages in One Browser Window with alternate Tabs
- Pivoting Relationships from Many to Many – One to Many – One to One – and then Key Value – Relationships and Schemas
- SQL Azure – SQL to Select Distinct list of Child Records based on a Maximum or Minimum Child Field Value
- MS Access – SQL to Select Distinct list of Child Records based on a Maximum or Minimum Child Field Value
- Javascript – Nubuilder Specific to save Date to DateUpdated field on Record Change (not subform)
- SQL Azure link to managing permissions
- SQL Azure – Take Complete Backup of Azure Database (Structure and Data)
- Connect MS Access 2003 to MySQL
Archives
- April 2018 (1)
- March 2018 (6)
- February 2018 (2)
- January 2018 (1)
- November 2017 (4)
- October 2017 (2)
- September 2017 (3)
- August 2017 (5)
- July 2017 (1)
- June 2017 (5)
- April 2017 (5)
- March 2017 (6)
- February 2017 (1)
- January 2017 (1)
- December 2016 (2)
- November 2016 (1)
- October 2016 (1)
- July 2016 (1)
- June 2016 (1)
- April 2016 (7)
- March 2016 (2)
- February 2016 (3)
- January 2016 (2)
- December 2015 (3)
- August 2015 (1)
- July 2015 (2)
- June 2015 (4)
- May 2015 (4)
- April 2015 (2)
- March 2015 (4)
- February 2015 (2)
- January 2015 (4)
- December 2014 (2)
- November 2014 (4)
- October 2014 (8)
- September 2014 (3)
- August 2014 (7)
- July 2014 (6)
- June 2014 (7)
- May 2014 (12)
- April 2014 (8)
- March 2014 (2)
- February 2014 (1)
Monthly Archives: June 2014
Keyser Söze, Code and the World Cup
It seems appropriate given the name of this site and 2014 being a world cup year that I might post something on code that I found a while back now related to establishing fixtures in a league coded by, for … Continue reading
Posted in All, Applied Mathematics, MS Access, VBA Code MS Access
Comments Off on Keyser Söze, Code and the World Cup
Complex Event Processing (How Cool)
As part of my timing software solution I had been interested in seeing if there was a better solution to the constant pulling of information from the timing boxes. It would for instance be far better to have some sort … Continue reading
Posted in All, Problem Solving, Programming, SQL Server, The future of software
Comments Off on Complex Event Processing (How Cool)
Step through forms and alter properties.
A nice patch of code that will allow you to cycle through a series of forms and make them read only. Useful if you don’t have immediate access to make changes to the backend, SQL Server or active directory. If … Continue reading
Posted in All, MS Access, Programming, VBA Code MS Access
Comments Off on Step through forms and alter properties.
Attaching Databases to SQL Server 08R2 Express
It should be noted that the following although the easiest way to get a new database into an instance it should not be used in a production environment. In fact doing so may get you sacked. If experimenting though this … Continue reading
Posted in All, Configuration, Database Design, SQL 08 R2, SQL Server, SSMS
Comments Off on Attaching Databases to SQL Server 08R2 Express
SQL Saturday is coming to Edinburgh
Pretty lucky really some of the worlds most talented DBAs hosting an event about 1km up from my flat. More details can be obtained here. http://www.sqlsaturday.com/281/eventhome.aspx There is a waiting list but might be something for you to think about … Continue reading
Posted in All, Database Design, SQL 08 R2, SQL Server, SSMS, The future of software
Comments Off on SQL Saturday is coming to Edinburgh
Using VBA to open URL in chrome
Haven’t tried this out but could be useful. I have a digital mapping web application that I link to from a database and it has issues with IE but works perfectly in Chrome… shell(“C:\Program Files (x86)\Google\Chrome\Application\chrome.exe -url http:google.ca”) Update : … Continue reading
Posted in All, Database Design, MS Access, VBA Code MS Access
Comments Off on Using VBA to open URL in chrome
Scope of variables – And Getting Confused
Note to self If you are wanting to pass parameter values between forms ensure that you place public variables in a module outside of the form. IMPORTANT – additionally ensure that the same variable names are NOT also listed in … Continue reading
Posted in All, Configuration, Database Design, VBA Code MS Access
Comments Off on Scope of variables – And Getting Confused