473,385 Members | 1,893 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Password on BackEnd.Db

Hi!
1. I wonder if there is a possibility to open a BackEnd.Db from the
opening form, the form e.g.: frmOrders, in the FrontEnd.Db, when the
BackEnd.Db is password protected?

2. Do I need to do this with all forms, or can I somehow have a
refreshing links function that at the same time pass the password to
the linked tables in the BackEnd.Db?

The password is set only for opening the database itself, no grouping
levels etc.

Me.Name
Nov 13 '05 #1
4 2657
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should link the table to the .mdb file where the form resides. When
you manually link the tables you will be prompted for the password.
Once the link is successful the password will be part of the tables'
Connection strings. See the Access Help article "Import or link data
and objects" for more info.

You can programmatically link a table using the TransferDatabase method
of the DoCmd object. One of the parameters of that method is the
connect string. You can include the password in the connect string like
this:

"PWD=password;Database=C:\Accounts\Accounts.md b"

See the Access VBA Help article "TransferDatabase Method" for more info.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQkG1f4echKqOuFEgEQJkGgCgpw3EXA9/Z1wXWgeYrXTnixQiCtEAoPlT
sXEANBF4a7lByldKfhex5t4N
=8EEn
-----END PGP SIGNATURE-----
Geir Baardsen wrote:
Hi!
1. I wonder if there is a possibility to open a BackEnd.Db from the
opening form, the form e.g.: frmOrders, in the FrontEnd.Db, when the
BackEnd.Db is password protected?

2. Do I need to do this with all forms, or can I somehow have a
refreshing links function that at the same time pass the password to
the linked tables in the BackEnd.Db?

The password is set only for opening the database itself, no grouping
levels etc.

Nov 13 '05 #2
I use only DAO. Would this make a difference?

Sorry, I have not really worked with this kind of techniques before,
so I'd appreciate if you would give me detailed example on how to code
this from the FrontEnd.Db, or point me to any article that covers
this.

Sorry the inconvenience...

Me.Name
MGFoster <me@privacy.com> wrote in message news:<5A****************@newsread3.news.pas.earthl ink.net>...
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should link the table to the .mdb file where the form resides. When
you manually link the tables you will be prompted for the password.
Once the link is successful the password will be part of the tables'
Connection strings. See the Access Help article "Import or link data
and objects" for more info.

You can programmatically link a table using the TransferDatabase method
of the DoCmd object. One of the parameters of that method is the
connect string. You can include the password in the connect string like
this:

"PWD=password;Database=C:\Accounts\Accounts.md b"

See the Access VBA Help article "TransferDatabase Method" for more info.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQkG1f4echKqOuFEgEQJkGgCgpw3EXA9/Z1wXWgeYrXTnixQiCtEAoPlT
sXEANBF4a7lByldKfhex5t4N
=8EEn
-----END PGP SIGNATURE-----
Geir Baardsen wrote:
Hi!
1. I wonder if there is a possibility to open a BackEnd.Db from the
opening form, the form e.g.: frmOrders, in the FrontEnd.Db, when the
BackEnd.Db is password protected?

2. Do I need to do this with all forms, or can I somehow have a
refreshing links function that at the same time pass the password to
the linked tables in the BackEnd.Db?

The password is set only for opening the database itself, no grouping
levels etc.

Nov 13 '05 #3
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Read the Access Help article "Import or link data and objects" and the
VBA Help article "TransferDatabase Method." Using the Access Help
Contents tab for the link article, the hierarchy is this:

Working with Data
External Data
Importing and Linking Data or Objects
Import or link data and objects

To get the TransferDatabase Method article: open the Debug window (Ctrl
G while in Access) and type in "transferdatabase" (without the quotes).
Make sure the cursor is in the word and hit the F1 key. The article
should appear in the Help window.

You could also go to Google.com and enter "TransferDatabase Method"
(include the quotes) as the search string. I got about 1,180 hits.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQkRtA4echKqOuFEgEQJ3YQCghyQ/1+f/hoSwCWoHcfipkJkNOLMAoO7j
xdyIEC26HqGEBY13P+0bUpdY
=PdhJ
-----END PGP SIGNATURE-----
Geir Baardsen wrote:
I use only DAO. Would this make a difference?

Sorry, I have not really worked with this kind of techniques before,
so I'd appreciate if you would give me detailed example on how to code
this from the FrontEnd.Db, or point me to any article that covers
this.

Sorry the inconvenience...

Me.Name
MGFoster <me@privacy.com> wrote in message news:<5A****************@newsread3.news.pas.earthl ink.net>...
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should link the table to the .mdb file where the form resides. When
you manually link the tables you will be prompted for the password.
Once the link is successful the password will be part of the tables'
Connection strings. See the Access Help article "Import or link data
and objects" for more info.

You can programmatically link a table using the TransferDatabase method
of the DoCmd object. One of the parameters of that method is the
connect string. You can include the password in the connect string like
this:

"PWD=password;Database=C:\Accounts\Accounts.md b"

See the Access VBA Help article "TransferDatabase Method" for more info.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQkG1f4echKqOuFEgEQJkGgCgpw3EXA9/Z1wXWgeYrXTnixQiCtEAoPlT
sXEANBF4a7lByldKfhex5t4N
=8EEn
-----END PGP SIGNATURE-----
Geir Baardsen wrote:
Hi!
1. I wonder if there is a possibility to open a BackEnd.Db from the
opening form, the form e.g.: frmOrders, in the FrontEnd.Db, when the
BackEnd.Db is password protected?

2. Do I need to do this with all forms, or can I somehow have a
refreshing links function that at the same time pass the password to
the linked tables in the BackEnd.Db?

The password is set only for opening the database itself, no grouping
levels etc.


Nov 13 '05 #4
Thanks for the advice!

Happy programming..

Me.Name

MGFoster <me@privacy.com> wrote in message news:<12*****************@newsread1.news.pas.earth link.net>...
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Read the Access Help article "Import or link data and objects" and the
VBA Help article "TransferDatabase Method." Using the Access Help
Contents tab for the link article, the hierarchy is this:

Working with Data
External Data
Importing and Linking Data or Objects
Import or link data and objects

To get the TransferDatabase Method article: open the Debug window (Ctrl
G while in Access) and type in "transferdatabase" (without the quotes).
Make sure the cursor is in the word and hit the F1 key. The article
should appear in the Help window.

You could also go to Google.com and enter "TransferDatabase Method"
(include the quotes) as the search string. I got about 1,180 hits.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQkRtA4echKqOuFEgEQJ3YQCghyQ/1+f/hoSwCWoHcfipkJkNOLMAoO7j
xdyIEC26HqGEBY13P+0bUpdY
=PdhJ
-----END PGP SIGNATURE-----
Geir Baardsen wrote:
I use only DAO. Would this make a difference?

Sorry, I have not really worked with this kind of techniques before,
so I'd appreciate if you would give me detailed example on how to code
this from the FrontEnd.Db, or point me to any article that covers
this.

Sorry the inconvenience...

Me.Name
MGFoster <me@privacy.com> wrote in message news:<5A****************@newsread3.news.pas.earthl ink.net>...
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You should link the table to the .mdb file where the form resides. When
you manually link the tables you will be prompted for the password.
Once the link is successful the password will be part of the tables'
Connection strings. See the Access Help article "Import or link data
and objects" for more info.

You can programmatically link a table using the TransferDatabase method
of the DoCmd object. One of the parameters of that method is the
connect string. You can include the password in the connect string like
this:

"PWD=password;Database=C:\Accounts\Accounts.md b"

See the Access VBA Help article "TransferDatabase Method" for more info.

--
MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQkG1f4echKqOuFEgEQJkGgCgpw3EXA9/Z1wXWgeYrXTnixQiCtEAoPlT
sXEANBF4a7lByldKfhex5t4N
=8EEn
-----END PGP SIGNATURE-----
Geir Baardsen wrote:

Hi!
1. I wonder if there is a possibility to open a BackEnd.Db from the
opening form, the form e.g.: frmOrders, in the FrontEnd.Db, when the
BackEnd.Db is password protected?

2. Do I need to do this with all forms, or can I somehow have a
refreshing links function that at the same time pass the password to
the linked tables in the BackEnd.Db?

The password is set only for opening the database itself, no grouping
levels etc.

Nov 13 '05 #5

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

Similar topics

1
by: Sigurd Bruteig | last post by:
Hi! I have a passwordprotected backend. I just realised that you can download a cracking application that can crack a password with up to 18 signs. I have tryed it and it works. My question is: is...
4
by: Chris | last post by:
I have a frontend that has some tables which are linked to a backend. Now I want to make the backend password protected and when I try to run it password protected I can't open it. In the first...
1
by: Chris | last post by:
I have a frontend that has some tables which are linked to a backend. Now I want to make the backend password protected and when I try to run it password protected I can't open it. In the first...
3
by: Chris | last post by:
I have a frontend that has some tables which are linked to a backend. Now I want to make the backend password protected and when I try to run it password protected I can't open it. In the first...
3
by: Tony | last post by:
G'day, With a (Access 2003) database that is split (frontend application and backend datatables) how can I 'pass' a password from the frontend that allows access to the datatables which are...
5
by: Geir Baardsen | last post by:
Hi! I wonder if anybody can help with the following: I need to password-protect tables in MyBackEnd.DB, which is placed in the same folder as the MyFrontEnd.DB Now I've tried the KB_209953...
6
by: Mike | last post by:
I have developed a program that has the backend on a server and multiple users have the front end at their individual computers. I know how to set a password on the backend. How can I implement...
1
by: Matthew | last post by:
I have a backend on the server, each user has a front end on their Local drives. I am about to give the backend a database password. I do not have MS security on the database and at the moment...
6
by: Frank L | last post by:
I have some accounting and tax receipting type applications, developed for charitable and non profit groups, that are exhibiting strange behaviour on a few of the 30 or 40 user machines. When...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.