Optimize SQL Server with Access on a WAN

Access with SQL Server is a great combo, but you do need to be aware of certain issues and optimize the relationship to make it a rewarding experience for your users. This article will talk about the steps you need to take and how to avoid some pitfalls.

2011-01-26T09:46:48-06:00January 26th, 2011|

Amazon $25 Gift Card!

Amazon $25 Gift Card Hello there, I have a free $25 Amazon gift card for my subscribers! All you have to do is leave a comment below, any comment really but if it's Access related then all the better! I will pick one comment at random for the winner, contest ends January 19th and only one comment [...]

2017-02-07T00:01:14-06:00January 15th, 2011|

Multi-Session Global Variables

Global variables are a wonderful way to make your code consistent, powerful and easy to use, but the native Access global variable, one declared in a stand alone module has a critical flaw: it will reset if there is a problem in your code, and it does not retain it's value once you close Access. Use [...]

2017-04-03T18:49:36-05:00January 12th, 2011|

A new focus for my blog: More code and techniques!

I'm switching gears on my b log to less commentary and more code in 2011! (I guess this post is considered commentary so it's going to be the next blog post when I switch gears). It's not to say I won't comment on the state of Access consulting, SQL or other topics, but rather I want to keep you g [...]

2010-12-31T22:25:13-06:00December 31st, 2010|

SQL Query vs. Access Query – Pros and Cons

The other day I was trying to link two tables using memo fields, (don't ask why), using an Access query, that's when I realized it can't be done in Access. Since the data was hosted in a SQL Database, I tried the same thing in a SQL query using SQL Server Management Studio, (SSMS), and viola, no p [...]

2021-12-01T17:13:29-06:00December 29th, 2010|

Using IIF examples and tips

IIF can be used in a wide range of situations: when building complex strings or invoking commands.

2020-09-18T17:11:10-05:00December 10th, 2010|

Great Links to Help you with MS Access and SQL Server

As you may already know, my specialty is Microsoft Access with SQL Server, I LOVE the combination of the two! On 12/2/10 I had the chance to present at Chicago's SQL Server User Group. The topic was MS Access tips, insights and strategies with SQL Server. During the presentation I made mention of MS [...]

2021-11-23T07:26:13-06:00December 3rd, 2010|

Why I can't learn .net

There are a number of great reasons why I wanted to learn .net: I envy the tools available: Microsoft is committed to providing .net developers with the greatest and sexiest development tools, every year they roll out new ones that make their jobs easier. Us Microsoft Access guys? We're stuck with t [...]

2010-11-30T21:11:58-06:00November 30th, 2010|

Great article on using Excel object model

Recently I had to create an Excel spreadsheet export for one of my clients using my Report Generator in Access, it was a thorny project since it wasn't a straight export from a query or table. I had to instead use vba to create the spreadsheet and place the values of each column and row into each ce [...]

2010-11-13T23:47:36-06:00November 13th, 2010|

Custom OpenForm code – Close and open your form

One of the major issues with DoCmd.OpenForm is it doesn't close the form before opening it again. This can lead to unexpected behavior of your application, so of course I created my own open form code:

2010-10-23T21:23:41-05:00October 23rd, 2010|
Go to Top