473,734 Members | 2,647 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Access Runtime and Security

Hi,

I have a secured database that runs fine on the computer the database is
installed on. I have several workstations with access runtime installed
that also need access to the database. Access runtime runs fine when
accessing an unsecured version of the database. However once the database
was secured it generates a runtime error after asking for the user and
password and won't open. The shortcut to the secured database is:

"path to msaccess runtime on local machine" /wrkgrp "path to mdw file on
remote machine" "path to mdb on remote machine"

I have also tried accessing the database with the mdw file placed on the
local machine as well, with the same results.

Is Access 2000 runtime not capable of running a secured database or are
there some other issues that I have overlooked?

Thanks in advance for any help provided
Nathan Bloom

Nov 13 '05 #1
5 15121
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@eart hlink.net> wrote:

Yes, you overlooked an issue: telling us which of the hundreds of
possible runtime errors you are getting, and telling us what line of
code generates it.

My guess: you may have a references problem totally unrelated to
security.

-Tom.

Hi,

I have a secured database that runs fine on the computer the database is
installed on. I have several workstations with access runtime installed
that also need access to the database. Access runtime runs fine when
accessing an unsecured version of the database. However once the database
was secured it generates a runtime error after asking for the user and
password and won't open. The shortcut to the secured database is:

"path to msaccess runtime on local machine" /wrkgrp "path to mdw file on
remote machine" "path to mdb on remote machine"

I have also tried accessing the database with the mdw file placed on the
local machine as well, with the same results.

Is Access 2000 runtime not capable of running a secured database or are
there some other issues that I have overlooked?

Thanks in advance for any help provided
Nathan Bloom


Nov 13 '05 #2
Sorry, The error is:

Execution of this application has stopped due to a run-time error.
This application can't continue and will be shut down.

It a appears in a message box with an OK button. There isn't any error
number or line of code referenced. Once again, it only happens on machines
with Access Runtime and not on machines with full versions of Access.

Thanks again in advance for any help offered.
Nathan Bloom

"Tom van Stiphout" <to*****@no.spa m.cox.net> wrote in message
news:j5******** *************** *********@4ax.c om...
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@eart hlink.net> wrote:

Yes, you overlooked an issue: telling us which of the hundreds of
possible runtime errors you are getting, and telling us what line of
code generates it.

My guess: you may have a references problem totally unrelated to
security.

-Tom.

Hi,

I have a secured database that runs fine on the computer the database is
installed on. I have several workstations with access runtime installed
that also need access to the database. Access runtime runs fine when
accessing an unsecured version of the database. However once the databasewas secured it generates a runtime error after asking for the user and
password and won't open. The shortcut to the secured database is:

"path to msaccess runtime on local machine" /wrkgrp "path to mdw file on
remote machine" "path to mdb on remote machine"

I have also tried accessing the database with the mdw file placed on the
local machine as well, with the same results.

Is Access 2000 runtime not capable of running a secured database or are
there some other issues that I have overlooked?

Thanks in advance for any help provided
Nathan Bloom

Nov 13 '05 #3
On Sun, 30 May 2004 09:51:17 GMT, "Nathan Bloom"
<na*******@eart hlink.net> wrote:

I entered this error message at search.microsof t.com and got several
promising leads. Go ahead and investigate those first.

Also, you still haven't told us at which line of code this error
occurs. Even in runtime applications you can perform some level of
debugging, such as by temporarily adding code that will write some
output to a log file (and close that file after each write, so you are
sure the file contains all the data collected so far when the app
terminates).

-Tom.

Sorry, The error is:

Execution of this application has stopped due to a run-time error.
This application can't continue and will be shut down.

It a appears in a message box with an OK button. There isn't any error
number or line of code referenced. Once again, it only happens on machines
with Access Runtime and not on machines with full versions of Access.

Thanks again in advance for any help offered.
Nathan Bloom

"Tom van Stiphout" <to*****@no.spa m.cox.net> wrote in message
news:j5******* *************** **********@4ax. com...
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@eart hlink.net> wrote:

Yes, you overlooked an issue: telling us which of the hundreds of
possible runtime errors you are getting, and telling us what line of
code generates it.

My guess: you may have a references problem totally unrelated to
security.

-Tom.

>Hi,
>
>I have a secured database that runs fine on the computer the database is
>installed on. I have several workstations with access runtime installed
>that also need access to the database. Access runtime runs fine when
>accessing an unsecured version of the database. However once thedatabase >was secured it generates a runtime error after asking for the user and
>password and won't open. The shortcut to the secured database is:
>
>"path to msaccess runtime on local machine" /wrkgrp "path to mdw file on
>remote machine" "path to mdb on remote machine"
>
>I have also tried accessing the database with the mdw file placed on the
>local machine as well, with the same results.
>
>Is Access 2000 runtime not capable of running a secured database or are
>there some other issues that I have overlooked?
>
>Thanks in advance for any help provided
>Nathan Bloom
>
>


Nov 13 '05 #4
"Nathan Bloom" <na*******@eart hlink.net> wrote:
Execution of this application has stopped due to a run-time error.
This application can't continue and will be shut down.

It a appears in a message box with an OK button. There isn't any error
number or line of code referenced. Once again, it only happens on machines
with Access Runtime and not on machines with full versions of Access.


I suspect this problem is some code that doesn't have an error handling. In the full
version of Access you'll get the message with a prompt asking if you want to debug
the code or cancel. (Or something similar.) In the runtime you get the above
message.

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
Tom,

Thank you for your help. I placed some message boxes at various points in
the main menus opening code. When I was setting up the security, I
commented out certain parts of the opening code to allow quicker testing. I
neglected to do this in a module that is called during startup that requires
certain values to be passed to it. The message boxes quickly pointed to my
oversight. Thanks again for your suggestion.

Nate
"Tom van Stiphout" <to*****@no.spa m.cox.net> wrote in message
news:gs******** *************** *********@4ax.c om...
On Sun, 30 May 2004 09:51:17 GMT, "Nathan Bloom"
<na*******@eart hlink.net> wrote:

I entered this error message at search.microsof t.com and got several
promising leads. Go ahead and investigate those first.

Also, you still haven't told us at which line of code this error
occurs. Even in runtime applications you can perform some level of
debugging, such as by temporarily adding code that will write some
output to a log file (and close that file after each write, so you are
sure the file contains all the data collected so far when the app
terminates).

-Tom.

Sorry, The error is:

Execution of this application has stopped due to a run-time error.
This application can't continue and will be shut down.

It a appears in a message box with an OK button. There isn't any error
number or line of code referenced. Once again, it only happens on machineswith Access Runtime and not on machines with full versions of Access.

Thanks again in advance for any help offered.
Nathan Bloom

"Tom van Stiphout" <to*****@no.spa m.cox.net> wrote in message
news:j5******* *************** **********@4ax. com...
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@eart hlink.net> wrote:

Yes, you overlooked an issue: telling us which of the hundreds of
possible runtime errors you are getting, and telling us what line of
code generates it.

My guess: you may have a references problem totally unrelated to
security.

-Tom.
>Hi,
>
>I have a secured database that runs fine on the computer the database is >installed on. I have several workstations with access runtime installed >that also need access to the database. Access runtime runs fine when
>accessing an unsecured version of the database. However once the

database
>was secured it generates a runtime error after asking for the user and
>password and won't open. The shortcut to the secured database is:
>
>"path to msaccess runtime on local machine" /wrkgrp "path to mdw file on >remote machine" "path to mdb on remote machine"
>
>I have also tried accessing the database with the mdw file placed on the >local machine as well, with the same results.
>
>Is Access 2000 runtime not capable of running a secured database or are >there some other issues that I have overlooked?
>
>Thanks in advance for any help provided
>Nathan Bloom
>
>

Nov 13 '05 #6

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

Similar topics

2
2512
by: Trevor Hughes | last post by:
Hello All Our organisation has recently upgraded its operating system to Windows 2000. Prior to this I was running Access 2000 databases on NT machines using the Access 2000 Runtime with no problems. Since the upgrade I am experiencing runtime errors which are making parts of the database unusable. The database will crash when I run a report. One of the problems relates to formating problems surrounding reference libraries. I have...
3
3808
by: sea | last post by:
If a runtime installation of Access is created and installed on a client machine that has a full verion of access, will it still be possible to view the tables and queries in design view but not the forms? Thank you very much, Sue
3
6789
by: Simple Man | last post by:
We have a citrix server that users will be signing into from a remote location. One application is an Access database. Right now, lan users are using the Access 2003 runtime to run these applications. Installing the runtime on the citrix server(s) isn't a big deal. The catch is, I want to install a copy of the full version of Access so that I can sign in and do some developing if I have to. Is it possible to have both the runtime...
12
5100
by: Chad Crowder | last post by:
Hi all, I hope someone can give me a hand, because I'm out of ideas. I keep getting this message: Access to the path "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files\projects_cig\e4e3b3da\3c20ac69" is denied. The error goes on to say that the ASP.NET is not authorized...
5
7120
by: Wayne | last post by:
I am looking at installing an Access 2003 application on some machines that don't have any version of Access previously installed. After reading lots of posts on this group and elsewhere I assume that I need to purchase "Visual Studio Tools For Office 2003" which will give me the ability to install the application together with the Access runtime. I also assume I will also have the legal right to distribute the runtime. Most of the...
1
1358
by: Shimon Sim | last post by:
How to specify security access for assembly running in ASP.NET? FxCop requests it always and I always ignore it. I am thinking that this is good thing to know how to do. I usually need the same rights that asp.net process has. The dll needs to write some files under directory - usually but some times not. Thank
5
4577
by: Prakash | last post by:
I am developing an HR package under Access 2003 for a client but do not want to give him the source code. I understand that under these circumstances I would need to compile my package, thus converting it into an MDE file. How do I go about doing this & what would the client need to have installed on his PC ? i.e. (Would the client need to have Access installed on his PC ?) I currently own a copy of MS Office Professional Edition 2003.
3
2261
by: ARC | last post by:
Hello All, I have a major application for quoting and invoicing that is written in Access 97 (both front and back ends). I have a user base of over 300 customers, and currently I don't require that they have Access 97, as I use the access 97 runtime scripts from Sagekey software. The main problems I've seen with Access 97 are the built in e-mail support for sending reports. Unless a user uses the MS Outlook 2000/XP method, they have to...
5
31392
by: Rocky | last post by:
My Access 2007 file fails to open on a machine with the 2007 Access runtime version installed. It comes up with a Security alert message. Is there a security setting in the Access Database that needs to be enabled to run the code and macros?
0
8946
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
9236
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
9182
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
8186
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6735
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6031
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4550
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
4809
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2724
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.