472,790 Members | 1,351 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,790 software developers and data experts.

Different version of Access for frontend and backend.

I've developed an Access 2002 database which will be deployed with the
backend on
a server and frontend on the users' PCs. I've now been advised that new
employees will
be given laptops with Access 2003 installed and that the server software
will not be
updated. Also some of the users are using Access 2000 and some Access 2002.
My question is - will this work? There is a lack of IT support in this
department - they've
contracted with me to build a database - but I have no control over their
use of different
versions of Access. If it's going to be a complete mess it'd be great to
know that before
starting the install. I'd appreciate any advice anyone can offer as to what
I should expect.
Thank you.

Linda

Nov 12 '05 #1
4 2731
On Mon, 2 Feb 2004 23:19:58 -0800, "Squirrel" <wi*****@covad.net> wrote:
I've developed an Access 2002 database which will be deployed with the
backend on
a server and frontend on the users' PCs. I've now been advised that new
employees will
be given laptops with Access 2003 installed and that the server software
will not be
updated. Also some of the users are using Access 2000 and some Access 2002.
My question is - will this work? There is a lack of IT support in this
department - they've
contracted with me to build a database - but I have no control over their
use of different
versions of Access. If it's going to be a complete mess it'd be great to
know that before
starting the install. I'd appreciate any advice anyone can offer as to what
I should expect.
Thank you.

Linda

1. It doesn't matter what version of Access is on the server or even if any
version is installed at all. The server is just hosting a shared file, and
it's the client machines that care what format it's in.

2. Access 2003 will handle Access 2000 format files just fine. You can leave
the front-end in Access 2000 format, or upgrade it as you prefer. In any
case, the links to back-end tables in Access 2000 will work fine.

Now, the only issue you might have is with the front-end, not the back-end.
Sometimes, code written with one version will only work on another version
after you unselect and reselect some references, and decompile. It's possible
you'll have to maintain at least 3 distributions of the front-end, one for the
Access 200, one for 2002, and one for 2003. You should do all development
work in the oldest version in use, so you know it doesn't rely on any newer
features not available in older versions.

That said, if you can strongly encourage them to dump Access 2000, my
experience is that reliability of VBA code will be improved. I don't have any
experience with 2003 to compare, but 2002 has proven basically stable.
Nov 12 '05 #2
Steve,

Thank you for responding to my question. I had assumed that Access had to
be installed on the server and that therefore there could be some conflict
between different versions on the server vs the users' PCs. But if it isn't
even necessary for Access to be running on the server then I can see why
there will be no conflict. And thx for the recommendations on Access
2000/2002 and maintaining different versions on the users' PCs.

Linda

"Steve Jorgensen" <no****@nospam.nospam> wrote in message
news:9b********************************@4ax.com...
On Mon, 2 Feb 2004 23:19:58 -0800, "Squirrel" <wi*****@covad.net> wrote:
I've developed an Access 2002 database which will be deployed with the
backend on
a server and frontend on the users' PCs. I've now been advised that new
employees will
be given laptops with Access 2003 installed and that the server software
will not be
updated. Also some of the users are using Access 2000 and some Access 2002.My question is - will this work? There is a lack of IT support in this
department - they've
contracted with me to build a database - but I have no control over their
use of different
versions of Access. If it's going to be a complete mess it'd be great to
know that before
starting the install. I'd appreciate any advice anyone can offer as to whatI should expect.
Thank you.

Linda

1. It doesn't matter what version of Access is on the server or even if

any version is installed at all. The server is just hosting a shared file, and it's the client machines that care what format it's in.

2. Access 2003 will handle Access 2000 format files just fine. You can leave the front-end in Access 2000 format, or upgrade it as you prefer. In any
case, the links to back-end tables in Access 2000 will work fine.

Now, the only issue you might have is with the front-end, not the back-end. Sometimes, code written with one version will only work on another version
after you unselect and reselect some references, and decompile. It's possible you'll have to maintain at least 3 distributions of the front-end, one for the Access 200, one for 2002, and one for 2003. You should do all development
work in the oldest version in use, so you know it doesn't rely on any newer features not available in older versions.

That said, if you can strongly encourage them to dump Access 2000, my
experience is that reliability of VBA code will be improved. I don't have any experience with 2003 to compare, but 2002 has proven basically stable.

Nov 12 '05 #3
"Squirrel" <wi*****@covad.net> wrote:
Thank you for responding to my question. I had assumed that Access had to
be installed on the server and that therefore there could be some conflict
between different versions on the server vs the users' PCs. But if it isn't
even necessary for Access to be running on the server then I can see why
there will be no conflict.


The most important thing though is to ensure everyone is at the same Jet 4.0 SP
version. Different versions could lead to corruptions.

What I've done is use the various API calls available and am checking the version
number and date/time of a crucial dll, msjetxx.dll, to ensure it matches what I have
on my system. See the tips page at my website for more details including sample
code: Verify Appropriate Jet Service Pack is installed
www.granite.ab.ca\access\verifyjetsp.htm

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 12 '05 #4
Tony,

thx for your advice and the link to the code. I'll be sure everyone's
system is current before installing the database.

Linda
"Tony Toews" <tt****@telusplanet.net> wrote in message
news:gi********************************@4ax.com...
"Squirrel" <wi*****@covad.net> wrote:
Thank you for responding to my question. I had assumed that Access had tobe installed on the server and that therefore there could be some conflictbetween different versions on the server vs the users' PCs. But if it isn'teven necessary for Access to be running on the server then I can see why
there will be no conflict.
The most important thing though is to ensure everyone is at the same Jet

4.0 SP version. Different versions could lead to corruptions.

What I've done is use the various API calls available and am checking the version number and date/time of a crucial dll, msjetxx.dll, to ensure it matches what I have on my system. See the tips page at my website for more details including sample code: Verify Appropriate Jet Service Pack is installed
www.granite.ab.ca\access\verifyjetsp.htm

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm

Nov 12 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: w | last post by:
Hello all!!! For a year and a half now, we have been developing different Access 2000 applications. Most of them are access frontend and access backends. Some of them have SQL server 2000 as a...
1
by: matt bourke | last post by:
Hi, Can you please tell me what the advantage is of using an access backend with a VB frontend OVER access as a frontend and backend. M
1
by: bl181076 | last post by:
Hello, In our organization we have 4 different access applications (all owned by different people) which use the same backend (owned by me). When the backend gets corrupt I have to disconnect...
42
by: PC Datasheet | last post by:
I have zero experience with using a SQL database for a backend and Access for a frontend. I have some questions: 1. Does an SQL database have tables? 2. How does Access connect to the data in...
2
by: Gary | last post by:
I have the backend database on a network drive. There are 3 employees that access this backend database through their respective frontend databases (located on their respective C drive). One of...
2
by: John | last post by:
Hi I have a single front end to which I would like to select one of two backbends at start-up. How can I accomplish this via code? Also is it possible to leave the "active" backend to last used...
14
by: Paul H | last post by:
I have been approached by a new customer to "sort-out" their existing database. They occasionally need to remotely access the database and are using Terminal Server to do so. The weird thing is...
6
by: Matt | last post by:
Hi All, I have found a version of my answer on GG, but I have not been able to find my exact answer, thus the post. I am using Access 2000 Situation: I have a multi user frontend database...
2
by: Steve | last post by:
I have zero experience with ODBC. If I have an Access frontend connected to a SQL Database using ODBC, are the tables connected like a frontend/backend Access database where the the tables you see...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.