Multiple version install (1 Viewer)

jrjr

A work in progress
Local time
Today, 11:37
Joined
Jul 23, 2004
Messages
291
I know its possible to have 2 different versions of Access installed, and that you have to uninstall then start in with the earliest version. BUT can I have 3 different versions? I think it should be no problem but thought I would ask first.
I am looking at 97, 2000, and 2003. Plan is to do just Access 97, 2000, and then the full office install of 2003.
 

ghudson

Registered User.
Local time
Today, 11:37
Joined
Jun 8, 2002
Messages
6,195
Yes, install in that order [oldest first]. Ensure you isntall the Office updates for each version right after you install that version.
 

jrjr

A work in progress
Local time
Today, 11:37
Joined
Jul 23, 2004
Messages
291
Okie Dokie!
Thanks a lot :D
 

jrjr

A work in progress
Local time
Today, 11:37
Joined
Jul 23, 2004
Messages
291
Installation of 97,2000,XP went smoothly. When compiling my FE that I converted to 97 I get a data member not found here:

Set rs = Me.Recordset.Clone
rs.FindFirst "[WOnumber] = " & Str(Me![Listbox1])
Me.Bookmark = rs.Bookmark
[Forms]![FrmFilter]![FrmFilterCombo].SetFocus

Is this not usable in 97?
 

ghudson

Registered User.
Local time
Today, 11:37
Joined
Jun 8, 2002
Messages
6,195
Check for a missing reference. Force a reference refresh by deselecting one, click OK then go back and reselect that reference.
 

jrjr

A work in progress
Local time
Today, 11:37
Joined
Jul 23, 2004
Messages
291
Sorry, I should have said that I already did that. None were missing and refresh did not help.
 

jrjr

A work in progress
Local time
Today, 11:37
Joined
Jul 23, 2004
Messages
291
Pat Hartman said:
Try:
Set rs = Me.RecordsetClone

Yes, that was the trouble! I looked at all other instances where I used this and only the one had the extra period in it. 2000 must have overlooked this error as it never gave trouble before. Nice catch - Thanks a lot!
 

Users who are viewing this thread

Top Bottom