473,666 Members | 2,678 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 1244
"Damon Heron" <da******@hotma il.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******@hotma il.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****@teluspl anet.net> wrote in message
news:av******** *************** *********@4ax.c om...
"Damon Heron" <da******@hotma il.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******@hotma il.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.g nilink.net>,
bo*****@localho st.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.comcas t.net...
In article <%R************ ****@nwrddc03.g nilink.net>,
bo*****@localho st.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
6077
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 small or mid-sized business. http://groups-beta.google.com/group/microsoft.public.msdn.general/browse_thread/thread/9d7e8f9a00c1c7da/459ca99eb0e7c328?q=%22Proposed+MSDN+subscription+changes%22&rnum=1#459ca99eb0e7c328 Damn! To be that...
2
4444
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 some other packages with mention the .Net framework. ($499 was the price tag on that, which was what I was expecting for the Developer's edition of Access.) Also, I have purchased a copy of Visual C# .Net Standard edition and I hope to
5
2567
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 if i do will it affect my other applications? I want ot build ASP.NET 2.0 apps!!!
8
16280
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 Developer does not support creating Web sites on a SharePoint Web server" If I create a new server extensions 2002 web in IIS and mark it as an application and try to use it from Visual Studio I receive the same error.
1
1841
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 Studio Tools For Office. Or is this an add on that i could download once I have Visual Studio Standard Edition?
1
1354
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 extensions onto my PC. When I go to the package wizard it opens an empty dialogue box with just the NEXT, CANCEL and HELP buttons showing. Do I need the full Office 2003 or is there another solution? Sharon
0
871
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 Internet Inc." ... I used their designer tools to create a basic one page site. I use the FrontPage extensions sign-in (User Name and Password) to my www......com from Visual Web Dev and then start a simple .aspx webpage to make as my new default...
6
1581
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 royalty-free runtime MS A2003 application? Some articles suggest that you need Visual Studio to get the developer extensions, others suggest that you don't. Also, if the A2007 developer extensions are free, why aren't the A2003 versions? ...
12
6390
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 ability to set a packaged file to always overwrite, or never overwrite, unless I'm missing something. This could be a sticking point, as I would always want the program to overwrite on re-installing, but NEVER the back end database. I have a few more...
0
8348
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8863
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8779
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8549
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8636
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4186
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4356
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2765
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 we have to send another system
2
1761
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.