473,503 Members | 2,120 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

A2003 App in A2000?

This is for a personal "fun" application I've been toying with for years
first in A97, now in A2003. It's just for me and my friends who
aprticipate in a weird hobby to use. My friends have A2000, but none
have A2003.

I know I can't give them an mde, but are there any pitfalls to
developing in 2003 and giving a 2003 mdb to a machine with 2000?

I'm thinking of putting in a routine to check for Jet version (not sure
what version of Jet 2000 has versus 2003), but are there things like
functions that behave or do things differently in 2003 that may not work
in 2000?

Thanks very much in advance.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "What's UP, Dittoooooo?" - Ditto
Nov 13 '05 #1
6 1505
Access 2000 uses the same version of Jet as 2003. Also, the default file
format for 2002 (XP) and 2003 is the 2000 file format. As long as you don't
use any new functionality or commands from the 2002 or 2003 versions, you
should be in good shape. To find these, check What's New in the help file
from Access 2002's and 2003's VBA Editor window. You will also find some
information here.

http://office.microsoft.com/en-us/as...817081033.aspx

--
Wayne Morgan
MS Access MVP
"Tim Marshall" <TI****@antarctic.flowerpots> wrote in message
news:cp**********@coranto.ucs.mun.ca...
This is for a personal "fun" application I've been toying with for years
first in A97, now in A2003. It's just for me and my friends who
aprticipate in a weird hobby to use. My friends have A2000, but none have
A2003.

I know I can't give them an mde, but are there any pitfalls to developing
in 2003 and giving a 2003 mdb to a machine with 2000?

I'm thinking of putting in a routine to check for Jet version (not sure
what version of Jet 2000 has versus 2003), but are there things like
functions that behave or do things differently in 2003 that may not work
in 2000?

Thanks very much in advance.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "What's UP, Dittoooooo?" - Ditto

Nov 13 '05 #2
Wayne Morgan wrote:
To find these, check What's New in the help file
from Access 2002's and 2003's VBA Editor window. You will also find some
information here.

http://office.microsoft.com/en-us/as...817081033.aspx


Thanks Wayne.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "What's UP, Dittoooooo?" - Ditto
Nov 13 '05 #3
Tim Marshall <TI****@antarctic.flowerpots> wrote:
I'm thinking of putting in a routine to check for Jet version (not sure
what version of Jet 2000 has versus 2003


Excellent idea.

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 Verify Appropriate Jet Service Pack is installed page at my
website for more details including sample code:
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 13 '05 #4
Tony Toews wrote:
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 Verify Appropriate Jet Service Pack is installed page at my
website for more details including sample code:
www.granite.ab.ca\access\verifyjetsp.htm


I'll take a good look at this, Tony, thanks.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "What's UP, Dittoooooo?" - Ditto
Nov 13 '05 #5
Also:

?syscmd(acSysCmdAccessVer)
9.0
?application.DBEngine.Version
3.6
?application.ProductCode
{00000409-78E1-11D2-B60F-006097C998E7}

(david)
"Tim Marshall" <TI****@antarctic.flowerpots> wrote in message
news:cp**********@coranto.ucs.mun.ca...
This is for a personal "fun" application I've been toying with for years
first in A97, now in A2003. It's just for me and my friends who
aprticipate in a weird hobby to use. My friends have A2000, but none
have A2003.

I know I can't give them an mde, but are there any pitfalls to
developing in 2003 and giving a 2003 mdb to a machine with 2000?

I'm thinking of putting in a routine to check for Jet version (not sure
what version of Jet 2000 has versus 2003), but are there things like
functions that behave or do things differently in 2003 that may not work
in 2000?

Thanks very much in advance.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "What's UP, Dittoooooo?" - Ditto

Nov 13 '05 #6
Also:

?syscmd(acSysCmdAccessVer)
9.0
?application.DBEngine.Version
3.6
?application.ProductCode
{00000409-78E1-11D2-B60F-006097C998E7}

(david)
"Tim Marshall" <TI****@antarctic.flowerpots> wrote in message
news:cp**********@coranto.ucs.mun.ca...
This is for a personal "fun" application I've been toying with for years
first in A97, now in A2003. It's just for me and my friends who
aprticipate in a weird hobby to use. My friends have A2000, but none
have A2003.

I know I can't give them an mde, but are there any pitfalls to
developing in 2003 and giving a 2003 mdb to a machine with 2000?

I'm thinking of putting in a routine to check for Jet version (not sure
what version of Jet 2000 has versus 2003), but are there things like
functions that behave or do things differently in 2003 that may not work
in 2000?

Thanks very much in advance.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "What's UP, Dittoooooo?" - Ditto

Nov 13 '05 #7

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

Similar topics

4
1678
by: -Michelle- | last post by:
Hi I am using A2003 on XP. The client has A2000. So I have ensured that I have developed based on A2000 and compiled as such. I have found that in a number of cases now, I have used (what I...
4
3114
by: Bradley | last post by:
I have an A2000 database in which I have a continuous form with a tick box. There is also a text box with a conditional format that is based on the expression , if it's true then change the...
1
1570
by: \(Bradley | last post by:
In an A2000 ADP I cannot edit data in an MS-SQL2000 view that has a simple JOIN in it. However I can edit the data in the same view if I open it in A2003 or SQL Query Analyser/etc. I understand...
12
2183
by: dixie | last post by:
Can someone familiar with Access 2003 please answer this question? I am asking because I don't have the use of A2003. When Access 2003 finds an Access 2000 database, does it come up with some...
1
1513
by: Paul Brady | last post by:
I have A97 and A2K on my computer at home, on which I do volunteer work for several databases on our county park system. One of the clients uses A97, and the rest, A2K. The A97 user is...
17
3105
by: rdemyan via AccessMonster.com | last post by:
With A2003, I'm having trouble accessing files in a folder on another computer where back-end files, update files, etc are located. Here's the scenario: 1) Computer #1 - A2003 2) Computer #2 -...
1
1244
by: larpup | last post by:
I've converted my frontend and backend from A2003 to A2000. Data is linked, however, I receive "recordset not updateable". Additionally my code stops on a simple function which turns data in a...
0
1144
by: terry | last post by:
Has anyone had any experience with concurrent (multi-user) use of an A2000 front end and an A2003 front end on the same linked set of tables? The reason I'm asking is that we've got a number of...
1
1515
by: Fred Zuckerman | last post by:
I have a database on a shared drive. It has user level security (ie: mdw file). It was created in A2000 and works fine when opened on workstations with A2000 installed. Some workstations have...
0
7204
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
1
6998
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
5018
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4680
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3171
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3162
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1516
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
741
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
391
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.