473,507 Members | 2,504 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Developer Extensions Question

I am considering getting the VS Tools for MS Office, and am curious about
the backend of an Access db. Does it remain the same - as a mdb file - or
is it converted to an exe also? And if it is an mdb, then the user would
not have access to it unless they had Access on their pc, right?

Damon
Nov 13 '05 #1
7 1238
"Damon Heron" <da******@hotmail.com> wrote:
I am considering getting the VS Tools for MS Office, and am curious about
the backend of an Access db. Does it remain the same - as a mdb file - or
is it converted to an exe also?
Neither the FE or the BE is converted to an EXE. Instead msaccess.exe with different
registry keys is shipped along with your app.
And if it is an mdb, then the user would
not have access to it unless they had Access on their pc, right?


Access to the BE MDB in what sense? The runtime would still be able to use it for
data storage purposes. If you have a startup form in the BE MDB it will still show
up. I have a start form in my BEs that basically states "Go away"

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 #2
"Damon Heron" <da******@hotmail.com> wrote:
I am considering getting the VS Tools for MS Office, and am curious about
the backend of an Access db. Does it remain the same - as a mdb file - or
is it converted to an exe also? And if it is an mdb, then the user would
not have access to it unless they had Access on their pc, right?


Oh, almost forgot.

Microsoft Access (Office) Developer Edition FAQ
http://www.granite.ab.ca/access/developereditionfaq.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 #3
Thanks, Tony. I unnerstan now. I was under the mistaken impression that
the mdb's were converted to exes, but this is simply a runtime version of
Access for a specific db.... If the user clicks on the "be" file, it would
still open and they would be able to mess with the tables, unless some other
security is installed, right?

Damon
"Tony Toews" <tt****@telusplanet.net> wrote in message
news:av********************************@4ax.com...
"Damon Heron" <da******@hotmail.com> wrote:
I am considering getting the VS Tools for MS Office, and am curious about
the backend of an Access db. Does it remain the same - as a mdb file - oris it converted to an exe also? And if it is an mdb, then the user would
not have access to it unless they had Access on their pc, right?


Oh, almost forgot.

Microsoft Access (Office) Developer Edition FAQ
http://www.granite.ab.ca/access/developereditionfaq.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
"Damon Heron" <da******@hotmail.com> wrote:
Thanks, Tony. I unnerstan now. I was under the mistaken impression that
the mdb's were converted to exes, but this is simply a runtime version of
Access for a specific db.... If the user clicks on the "be" file, it would
still open and they would be able to mess with the tables, unless some other
security is installed, right?


Correct.

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 #5
"Damon Heron" wrote
I am considering getting the VS Tools
for MS Office, and am curious about
the backend of an Access db. Does
it remain the same - as a mdb file - or
is it converted to an exe also?
Niether the back-end nor the front-end is converted to .exe; they are
distributed in their original form, which may be MDB, MDE, ADP, or ADE, but
with run-time support.
And if it is an mdb, then the user would
not have access to it unless they had
Access on their pc, right?


You can access the data in an MDB from code in several Microsoft and some
other products... Excel and Word are two examples. If you do not want the
tables and data to be easily accessible, apply Access' security and
distribute the .MDW file, or give them access only via queries. Still, you
should be aware that it is relatively inexpensive to obtain software that
will break Access' security.

Larry Linson
Microsoft Access MVP

Nov 13 '05 #6
In article <%R****************@nwrddc03.gnilink.net>,
bo*****@localhost.not says...
"Damon Heron" wrote
> I am considering getting the VS Tools
> for MS Office, and am curious about
> the backend of an Access db. Does
> it remain the same - as a mdb file - or
> is it converted to an exe also?


Niether the back-end nor the front-end is converted to .exe; they are
distributed in their original form, which may be MDB, MDE, ADP, or ADE, but
with run-time support.
> And if it is an mdb, then the user would
> not have access to it unless they had
> Access on their pc, right?


You can access the data in an MDB from code in several Microsoft and some
other products... Excel and Word are two examples. If you do not want the
tables and data to be easily accessible, apply Access' security and
distribute the .MDW file, or give them access only via queries. Still, you
should be aware that it is relatively inexpensive to obtain software that
will break Access' security.

Larry Linson
Microsoft Access MVP

I like the concept of using a custom mdw file. Remove all right from
the default user and admin. Then disable bypass, etc. Write a function
to enable/disable bypass and fire it of an obscure function key which
also requires a case sensative PW.
Nov 13 '05 #7
Why ever enable "bypass"? Just retain a developer copy in MDB form without
the final security tweaks. Add those final security tweaks only to a new
release just before you distribute it, but always keep the developer copy.

Still, it is inexpensive enough to obtain software to break security and get
at the data that you would be unwise to trust Access security for that
purpose. And, it is easy for most experienced Access developers to recreate
a typical Access application just from observing it run.

Larry Linson
Microsoft Access MVP

"Ima Lostsoul" <me@myprovider.com> wrote in message
news:MP***********************@netnews.comcast.net ...
In article <%R****************@nwrddc03.gnilink.net>,
bo*****@localhost.not says...
"Damon Heron" wrote
> I am considering getting the VS Tools
> for MS Office, and am curious about
> the backend of an Access db. Does
> it remain the same - as a mdb file - or
> is it converted to an exe also?


Niether the back-end nor the front-end is converted to .exe; they are
distributed in their original form, which may be MDB, MDE, ADP, or ADE, but with run-time support.
> And if it is an mdb, then the user would
> not have access to it unless they had
> Access on their pc, right?


You can access the data in an MDB from code in several Microsoft and some other products... Excel and Word are two examples. If you do not want the tables and data to be easily accessible, apply Access' security and
distribute the .MDW file, or give them access only via queries. Still, you should be aware that it is relatively inexpensive to obtain software that will break Access' security.

Larry Linson
Microsoft Access MVP

I like the concept of using a custom mdw file. Remove all right from
the default user and admin. Then disable bypass, etc. Write a function
to enable/disable bypass and fire it of an obscure function key which
also requires a case sensative PW.

Nov 13 '05 #8

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

Similar topics

99
6011
by: Jim Hubbard | last post by:
It seems that Microsoft not only does not need the classic Visual Basic developer army (the largest army of developers the world has ever seen), but now they don't need ANY Windows developer at a...
2
4428
by: Johnny Meredith | last post by:
Hi all, I'm interested in getting the Access Developer's edition. Here's my question: where do I go to get it? At Microsoft, there's a Access 2003 Developer's Extensions package, as well as...
5
2563
by: Patrick Olurotimi Ige | last post by:
Hi, I have VStudio.Net 2003 installed but can i install Visual Web Developer also on the same PC. My current .Net Frameork version is 1.1. Will the Visual Web Developer install ASP.NET 2.0? And...
8
16269
by: William LaMartin | last post by:
I just received my Visual Studio upgrade to 2005 and tried to create a new web site via File | New Web Site with location http. Unfortunately I received the following error: "Visual Web...
1
1834
by: D | last post by:
What versions of Visual Studio come with the Microsoft Office Access Developer Extensions (ADE)? According to this site: http://msdn.microsoft.com/vstudio/products/compare/ only the Visual...
1
1350
by: SharonStainsby | last post by:
Hi, I've just joined this forum and found another thread asking the same question but couldn't see any answers. I hope today is different. I've loaded Access 2003 and Access 2003 Developer...
0
865
by: kress1963nov22 | last post by:
Thanks in advance to any who can help this newbie... I have Visual Web Developer 2005 Express Edition as a tool just for learning the basics of ASP.net. I have a Wesite already through "1&1...
6
1574
by: Keith Wilby | last post by:
I must say that after googling on this subject to try to get some clarity I'm even more confused then ever. Can someone explain to me in plain simple English, what I need to be able to produce a...
12
6366
by: ARC | last post by:
I'm currently looking at the access developer extensions for creating an MSI installer package for a 2007 runtime app. Couple of observations and questions. 1) Doesn't look like we have the...
0
7223
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
7314
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
7372
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...
0
7482
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5623
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5041
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
3191
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
3179
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1540
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 ...

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.