PC Review


Reply
Thread Tools Rate Thread

2 Access97's on one system

 
 
Blair
Guest
Posts: n/a
 
      20th Jan 2007
My Question is. Can I install 2 versions of access97 on my computer, like
one on D drive and one on E drive with each having different default
folder's to save their files in?

thanks Blair


 
Reply With Quote
 
 
 
 
Rick Brandt
Guest
Posts: n/a
 
      20th Jan 2007
Blair wrote:
> My Question is. Can I install 2 versions of access97 on my computer,
> like one on D drive and one on E drive with each having different
> default folder's to save their files in?
>
> thanks Blair


I would think not. The second install would just recognize that there was
already a copy installed and likely would only offer a setup to the same folder
or an uninstall. Also, options like that are stored in the registry and both
installations (even of two were possible) would look at the same registry keys.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


 
Reply With Quote
 
Blair
Guest
Posts: n/a
 
      20th Jan 2007
Your right, I just tried. Can you go into the registry and do it manually, I
have an install on c drive and f drive but they both use the same registry.
If I can would you please explain how

Thanks Blair

"Rick Brandt" <(E-Mail Removed)> wrote in message
news:3itsh.11999$(E-Mail Removed)...
> Blair wrote:
> > My Question is. Can I install 2 versions of access97 on my computer,
> > like one on D drive and one on E drive with each having different
> > default folder's to save their files in?
> >
> > thanks Blair

>
> I would think not. The second install would just recognize that there was
> already a copy installed and likely would only offer a setup to the same

folder
> or an uninstall. Also, options like that are stored in the registry and

both
> installations (even of two were possible) would look at the same registry

keys.
>
> --
> Rick Brandt, Microsoft Access MVP
> Email (as appropriate) to...
> RBrandt at Hunter dot com
>
>



 
Reply With Quote
 
Rick Brandt
Guest
Posts: n/a
 
      20th Jan 2007
Blair wrote:
> Your right, I just tried. Can you go into the registry and do it
> manually, I have an install on c drive and f drive but they both use
> the same registry. If I can would you please explain how


You can't. Why do you think you need to? There might be a better way to
accomplish the same thing.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


 
Reply With Quote
 
Blair
Guest
Posts: n/a
 
      20th Jan 2007
I have 2 farms so I have 2 copies of the db in two different directies, but
when I put the farm name in one db it changes the name of the other so both
db's are using the same farm name file. I have included the way I managed to
save the farm name below. Does anyone have a suggestion on how I can isolate
each file.

Thanks Blair


Option Compare Database
Option Explicit
Public FarmName As String




Private Sub Form_Load()

Open "Farm Name" For Random As #1 Len = 50
Get #1, 1, FarmName
Close #1
Text1 = FarmName

End Sub



Private Sub Text1_AfterUpdate()
FarmName = Text1
Open "Farm Name" For Random As #1 Len = 50


Put #1, 1, FarmName

Close #1 ' Close file.

End Sub


"Rick Brandt" <(E-Mail Removed)> wrote in message
news:g4ush.2771$(E-Mail Removed)...
> Blair wrote:
> > Your right, I just tried. Can you go into the registry and do it
> > manually, I have an install on c drive and f drive but they both use
> > the same registry. If I can would you please explain how

>
> You can't. Why do you think you need to? There might be a better way to
> accomplish the same thing.
>
> --
> Rick Brandt, Microsoft Access MVP
> Email (as appropriate) to...
> RBrandt at Hunter dot com
>
>



 
Reply With Quote
 
Rick Brandt
Guest
Posts: n/a
 
      20th Jan 2007
Blair wrote:
> I have 2 farms so I have 2 copies of the db in two different
> directies, but when I put the farm name in one db it changes the name
> of the other so both db's are using the same farm name file. I have
> included the way I managed to save the farm name below. Does anyone
> have a suggestion on how I can isolate each file.
>
> Thanks Blair
>
>
> Option Compare Database
> Option Explicit
> Public FarmName As String
>
>
>
>
> Private Sub Form_Load()
>
> Open "Farm Name" For Random As #1 Len = 50
> Get #1, 1, FarmName
> Close #1
> Text1 = FarmName
>
> End Sub
>
>
>
> Private Sub Text1_AfterUpdate()
> FarmName = Text1
> Open "Farm Name" For Random As #1 Len = 50
>
>
> Put #1, 1, FarmName
>
> Close #1 ' Close file.
>
> End Sub


All you have to do is include a full path instead of just the file name. You
can use the following to get the path of where the MDB resides so that the file
will be created in the same folder...

Left(currentDB.Name,Len(currentDB.Name)-Len(dir(currentDB.Name)))

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


 
Reply With Quote
 
Blair
Guest
Posts: n/a
 
      20th Jan 2007
Left(Mink Operations,Len(Mink Operations)-Len(F:\Mink Program\SBGFF(Mink
Operations)))

Ok I have to confess I didn't write this code, I just copy and pasted it
from another form and changed some names to make it work.I am not an
experienced programmer just a wanabe. So would you show me how I would apply
it to this file, sorry for the inconvience

Thanks Blair

"Rick Brandt" <(E-Mail Removed)> wrote in message
news:VIush.2777$(E-Mail Removed)...
> Blair wrote:
> > I have 2 farms so I have 2 copies of the db in two different
> > directies, but when I put the farm name in one db it changes the name
> > of the other so both db's are using the same farm name file. I have
> > included the way I managed to save the farm name below. Does anyone
> > have a suggestion on how I can isolate each file.
> >
> > Thanks Blair
> >
> >
> > Option Compare Database
> > Option Explicit
> > Public FarmName As String
> >
> >
> >
> >
> > Private Sub Form_Load()
> >
> > Open "Farm Name" For Random As #1 Len = 50
> > Get #1, 1, FarmName
> > Close #1
> > Text1 = FarmName
> >
> > End Sub
> >
> >
> >
> > Private Sub Text1_AfterUpdate()
> > FarmName = Text1
> > Open "Farm Name" For Random As #1 Len = 50
> >
> >
> > Put #1, 1, FarmName
> >
> > Close #1 ' Close file.
> >
> > End Sub

>
> All you have to do is include a full path instead of just the file name.

You
> can use the following to get the path of where the MDB resides so that the

file
> will be created in the same folder...
>
> Left(currentDB.Name,Len(currentDB.Name)-Len(dir(currentDB.Name)))
>
> --
> Rick Brandt, Microsoft Access MVP
> Email (as appropriate) to...
> RBrandt at Hunter dot com
>
>



 
Reply With Quote
 
Rick Brandt
Guest
Posts: n/a
 
      21st Jan 2007
Blair wrote:
> Left(Mink Operations,Len(Mink Operations)-Len(F:\Mink
> Program\SBGFF(Mink Operations)))
>
> Ok I have to confess I didn't write this code, I just copy and pasted
> it from another form and changed some names to make it work.I am not
> an experienced programmer just a wanabe. So would you show me how I
> would apply it to this file, sorry for the inconvience


What I posted before plus the name of the file you want to open

Left(currentDB.Name,Len(currentDB.Name)-Len(dir(currentDB.Name))) & "Mink
Operations"

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com


 
Reply With Quote
 
Blair
Guest
Posts: n/a
 
      21st Jan 2007
Thanks works perfect
Blair

"Rick Brandt" <(E-Mail Removed)> wrote in message
news:RmAsh.24997$(E-Mail Removed)...
> Blair wrote:
>> Left(Mink Operations,Len(Mink Operations)-Len(F:\Mink
>> Program\SBGFF(Mink Operations)))
>>
>> Ok I have to confess I didn't write this code, I just copy and pasted
>> it from another form and changed some names to make it work.I am not
>> an experienced programmer just a wanabe. So would you show me how I
>> would apply it to this file, sorry for the inconvience

>
> What I posted before plus the name of the file you want to open
>
> Left(currentDB.Name,Len(currentDB.Name)-Len(dir(currentDB.Name))) & "Mink
> Operations"
>
> --
> Rick Brandt, Microsoft Access MVP
> Email (as appropriate) to...
> RBrandt at Hunter dot com
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I convert "System.mda" (Access97) to System.mdw ("Access200 =?Utf-8?B?Qm9iIFNhbWJvcnNraQ==?= Microsoft Access Security 2 28th Jul 2005 04:45 PM
Access97 on 1 GB+ System PC Datasheet Microsoft Access Getting Started 4 8th Jun 2004 11:25 PM
Access97 on 1 GB+ System PC Datasheet Microsoft Access Form Coding 4 8th Jun 2004 11:25 PM
Access97 and XPP John Microsoft Access 0 7th Oct 2003 04:26 PM
Re: Access97 .mdb file to .adp OR Access97 to work with SQL Server 2000 Peter Row Microsoft Access ADP SQL Server 0 9th Jul 2003 08:15 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:53 PM.