473,394 Members | 2,100 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,394 software developers and data experts.

how to create an Access data input form external to db?

How do I create a data input form in Access that is external to the
Access database to which it's connected (if that's possible, which I
believe it is)? For example, if someone clicks on an Access file icon
on a computer desktop, it will open up a data entry form (that was
created in Access). That way, the people who enter the data won't have
direct access to the database at any point.

I've seen that this can be done, but I don't know how it's done. Does
it mean that the form and the database reside in two separate drives?
Do I need to go into 'view code' in the design view when creating
forms, to make any adjustments directly to the code?

Thanks in advance for any help on this.
Nov 12 '05 #1
4 19764
Create a second database to your main database. Create one or more tables in
your second database to contain the data you want to use in the main database.
Create one or more forms in the second database to input the data into the
second database. In the main database create linked tables to the tables in the
second database. You can now give users access to the second database for data
entry. They will not be able to access the main database. However, you will be
able to use the data that was entered from the main database.
--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
www.pcdatasheet.com
"intl04" <in****@hotmail.com> wrote in message
news:b7**************************@posting.google.c om...
How do I create a data input form in Access that is external to the
Access database to which it's connected (if that's possible, which I
believe it is)? For example, if someone clicks on an Access file icon
on a computer desktop, it will open up a data entry form (that was
created in Access). That way, the people who enter the data won't have
direct access to the database at any point.

I've seen that this can be done, but I don't know how it's done. Does
it mean that the form and the database reside in two separate drives?
Do I need to go into 'view code' in the design view when creating
forms, to make any adjustments directly to the code?

Thanks in advance for any help on this.

Nov 12 '05 #2
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You are referring to "split database." This consists of 2 files: one
contains the data tables (the back-end), the other contains the
Queries, Forms, Reports, (Data Access Page in A2K & >), and Modules
(the front-end). The back-end file is "linked" to the front-end file.
See the Access Help topic "Import or link data and objects."

Also, on the Access menu bar click:

Access 97
To split the current database:
"Tools > Add-Ins > Database Splitter"

To maintain links to data tables:
"Tools > Add-Ins > Linked Table Manager"

Access 2000 & greater
To split the current database:
"Tools > Database Utilities > Database Splitter"

To maintain links to data tables:
"Tools > Database Utilities > Linked Table Manager"

MGFoster:::mgf
Oakland, CA (USA)

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

iQA/AwUBP6SPzYechKqOuFEgEQL+wQCdHybxxnuylBZ5te38lz5HbG 7KDnMAoJlz
LTbOeZL/FZLAC/c8QJr2/4zO
=U/EQ
-----END PGP SIGNATURE-----
intl04 wrote:
How do I create a data input form in Access that is external to the
Access database to which it's connected (if that's possible, which I
believe it is)? For example, if someone clicks on an Access file icon
on a computer desktop, it will open up a data entry form (that was
created in Access). That way, the people who enter the data won't have
direct access to the database at any point.

I've seen that this can be done, but I don't know how it's done. Does
it mean that the form and the database reside in two separate drives?
Do I need to go into 'view code' in the design view when creating
forms, to make any adjustments directly to the code?

Thanks in advance for any help on this.


Nov 12 '05 #3
That worked great - thanks so much! Just another question: Is there
any way to create and run reports in that second db that are based on
queries in the main db? (The queries are built from 3-4 tables linked
together, but I want only one table - the table in the second,
data-entry db - to be modifiable.)

It seems that if I replicate all the queries in the second db, all the
other tables (from the main db) have to be there as well, to generate
those queries. Of course, in that case, there's the risk that multiple
tables' data will be accidentally modified by data inputters.

I tried a database split that was recommended by another respondent,
but all the tables in the front-end db were linked to the back-end db
and were modifiable. Of course, when I deleted the other linked tables
from the front-end db (the ones that I did not want to be modifiable,
I could not run any queries that generate data from the tables linked
together.


"PC Datasheet" <sp**@nospam.com> wrote in message news:<Cp****************@newsread2.news.atl.earthl ink.net>...
Create a second database to your main database. Create one or more tables in
your second database to contain the data you want to use in the main database.
Create one or more forms in the second database to input the data into the
second database. In the main database create linked tables to the tables in the
second database. You can now give users access to the second database for data
entry. They will not be able to access the main database. However, you will be
able to use the data that was entered from the main database.
--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
www.pcdatasheet.com
"intl04" <in****@hotmail.com> wrote in message
news:b7**************************@posting.google.c om...
How do I create a data input form in Access that is external to the
Access database to which it's connected (if that's possible, which I
believe it is)? For example, if someone clicks on an Access file icon
on a computer desktop, it will open up a data entry form (that was
created in Access). That way, the people who enter the data won't have
direct access to the database at any point.

I've seen that this can be done, but I don't know how it's done. Does
it mean that the form and the database reside in two separate drives?
Do I need to go into 'view code' in the design view when creating
forms, to make any adjustments directly to the code?

Thanks in advance for any help on this.

Nov 12 '05 #4
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

You can run a report in one front-end using a query in another .mdb/e
file by using a RecordSource property like this:

SELECT * FROM qryOtherQueryName In "C:\My Doc\OtherDB.mdb"

See the Access Help topic on the In predicate.

- --
MGFoster:::mgf
Oakland, CA (USA)

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

iQA/AwUBP6X79YechKqOuFEgEQIkAwCg2L3yBxd18LeNP0rw/k1arL3cvhAAoPC+
Ht36pw6nUAfhxZkuQYDrIQ2J
=5CRN
-----END PGP SIGNATURE-----
intl04 wrote:
That worked great - thanks so much! Just another question: Is there
any way to create and run reports in that second db that are based on
queries in the main db? (The queries are built from 3-4 tables linked
together, but I want only one table - the table in the second,
data-entry db - to be modifiable.)

It seems that if I replicate all the queries in the second db, all the
other tables (from the main db) have to be there as well, to generate
those queries. Of course, in that case, there's the risk that multiple
tables' data will be accidentally modified by data inputters.

I tried a database split that was recommended by another respondent,
but all the tables in the front-end db were linked to the back-end db
and were modifiable. Of course, when I deleted the other linked tables
from the front-end db (the ones that I did not want to be modifiable,
I could not run any queries that generate data from the tables linked
together.


"PC Datasheet" <sp**@nospam.com> wrote in message news:<Cp****************@newsread2.news.atl.earthl ink.net>...
Create a second database to your main database. Create one or more tables in
your second database to contain the data you want to use in the main database.
Create one or more forms in the second database to input the data into the
second database. In the main database create linked tables to the tables in the
second database. You can now give users access to the second database for data
entry. They will not be able to access the main database. However, you will be
able to use the data that was entered from the main database.
--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
www.pcdatasheet.com
"intl04" <in****@hotmail.com> wrote in message
news:b7**************************@posting.google .com...
How do I create a data input form in Access that is external to the
Access database to which it's connected (if that's possible, which I
believe it is)? For example, if someone clicks on an Access file icon
on a computer desktop, it will open up a data entry form (that was
created in Access). That way, the people who enter the data won't have
direct access to the database at any point.

I've seen that this can be done, but I don't know how it's done. Does
it mean that the form and the database reside in two separate drives?
Do I need to go into 'view code' in the design view when creating
forms, to make any adjustments directly to the code?

Thanks in advance for any help on this.


Nov 12 '05 #5

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

Similar topics

2
by: Iain Miller | last post by:
Struggling a bit here & would be grateful for any help. I have a table which has a list of people in it. Each person has a unique ID automatically allocated by Access but also belongs to one of 5...
1
by: Mike Cooper | last post by:
Hello all, I was working on the update portion of my Access database input form. The add and view functions were working just fine. I did not touch the form_load event function or anything...
2
by: filbennett | last post by:
Hi Everyone, I'm generally unfamiliar with Access form design, but have programmed Cold Fusion applications for a couple of years. I'd like to build a data entry form in Access that allows the...
2
by: Magnus | last post by:
I'm currently developing an application with classified information as input to a couple of algorithms. Which strategy should I use to protect the input data from beeing read? The files should...
5
by: bucchi | last post by:
Hi, I am doing the following in a javascript function: var hiddenElement = document.createElement("input"); hiddenElement .setAttribute("type", "hidden"); hiddenElement...
2
by: StorminPE | last post by:
Greetings, I have an access 2007 database. In there I have 3 tables with a relationship between the three tables. The three tables’ consist of 1 user table, 1 type of equipment, and another...
20
by: maxpirate | last post by:
I have data entry form in access and a save button which checks for validations and throws errors. I want to map this function to the save menu item available in the menubar. How do i do it?
14
Fspinelli
by: Fspinelli | last post by:
Good morning! I looked through my Access bible but I'm baffled. I have a table and it was made into a query and then used in a form. The end user enters the information (and/or chooses...
2
by: rousseaud | last post by:
Hello, I could definitely use some help. I'm not even sure if this is possible, but if someone could point out a few options, I would appreciate it. I would like to be able to email an Access...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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.