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

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 15087
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@earthlink.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.spam.cox.net> wrote in message
news:j5********************************@4ax.com...
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@earthlink.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*******@earthlink.net> wrote:

I entered this error message at search.microsoft.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.spam.cox.net> wrote in message
news:j5********************************@4ax.com.. .
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@earthlink.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*******@earthlink.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.spam.cox.net> wrote in message
news:gs********************************@4ax.com...
On Sun, 30 May 2004 09:51:17 GMT, "Nathan Bloom"
<na*******@earthlink.net> wrote:

I entered this error message at search.microsoft.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.spam.cox.net> wrote in message
news:j5********************************@4ax.com.. .
On Sat, 29 May 2004 18:56:57 GMT, "Nathan Bloom"
<na*******@earthlink.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
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...
3
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...
3
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...
12
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...
5
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...
1
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...
5
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...
3
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...
5
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...
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?
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...
0
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...
0
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
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,...

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.