473,796 Members | 2,495 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Create MS/ACCESS database app for non-ms/access users



Is it possible to create an MS/ACCESS database application and package
it for users who do not have MS/ACCESS loaded in their PCs?

I was told that this is possible, but I don't know what software is
needed. Do you know? If so, please answer this post. Thanks.

SueB

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #1
10 2386
Per Sue Bricker:
Is it possible to create an MS/ACCESS database application and package
it for users who do not have MS/ACCESS loaded in their PCs?

I was told that this is possible, but I don't know what software is
needed. Do you know? If so, please answer this post. Thanks.


I think it comes down to semantics.

"Licensed" vs "Loaded".

No you can't create an app that will run on a PC with nothing loaded.

Yes you can create an app that will run on a PC where nobody's paid the fee to
run MS Access.
You still have to install something on that PC, however. What it is is a
freebie version of MS Access that only runs applications - doesn't allow anybody
to develop an app.

You develop the app on your PC, which has MS Access installed.

Then somebody installs the freebie ("Runtime Access") on somebody's PC and they
can run the app you developed without having to pay any money to anybody.
--
PeteCresswell
Nov 13 '05 #2
Sue,
If Access isn't present, some version of it must be installed to run an
Access database. VB.NET, or VB6 or some other commercial IDE that will let
you author code you own may initially be harder to learn and more work but
is worth the extra effort.

"Sue Bricker" <sb****@att.net > wrote in message
news:42******** **@127.0.0.1...


Is it possible to create an MS/ACCESS database application and package
it for users who do not have MS/ACCESS loaded in their PCs?

I was told that this is possible, but I don't know what software is
needed. Do you know? If so, please answer this post. Thanks.

SueB

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 13 '05 #3
Pete,

Thanks for the info. Is this "Runtime Access" readily available for
download? From where?

Thanks.
Sue

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #4

Alan,

I am not sure if I understand your answer. I do have MS/Access
loaded/liscenced on my PC, where I plan on doing the devlopment. I have
been asked to create a database for someone who may or may not have
MS/Access on their PC. Is this possible? The previous response to my
question says that this is possible if the "end user" has a "Runtime
Only Version of Access". So I need to get my hands on this appl.

Thanks.
Sue
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #5


Alan,

I misread your reply. I understand what you were saying and I'll look
into those other options. Thanks.

SueB

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 13 '05 #6
"Alan Webb" <kn*****@hotmai l.com> wrote in
news:rZ******** ************@co mcast.com:
If Access isn't present, some version of it must be installed to
run an Access database. VB.NET, or VB6 or some other commercial
IDE that will let you author code you own may initially be harder
to learn and more work but is worth the extra effort.


You can't run an Access application with VB.

You could completely rewrite the application in VB and use the data
tables from the Access MDB, but that's a ridiculous alternative in
comparison to the runtime.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #7
Sue Bricker <sb****@att.net > wrote in news:42******** **@127.0.0.1:
I misread your reply. I understand what you were saying and I'll
look into those other options. Thanks.


Alan's answer was ridiculously unhelpful, because it would require
recreating your Access application entirely from scratch in a
different version of VB that doesn't have anywhere near the built-in
capabilities for working with data.

In comp.databases. ms-access, it's generally said by developers who
work both in Access and in VB that a VB version will take at least
3X as much work as the equivalent Access application.

And its only advantage over Access is a somewhat simpler
installation process.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #8
Sue,

The answer to your question is "yes" - you need the Package and Deployment
Wizard - depends on which version of Access you're using. For Access 2003,
you'll need to purchase Visual Studio 2003, which include what you need to
package your application, and include the runtime version of Access. For
Access 2000, there was a Developer's version of Office 2000, and also a
separate Developer's Tools package that included the runtime version of
Access. Access XP I'm sure has something similar; a check on Microsoft's
site will tell you what you need.

Matt

"Sue Bricker" <sb****@att.net > wrote in message
news:42******** **@127.0.0.1...


Is it possible to create an MS/ACCESS database application and package
it for users who do not have MS/ACCESS loaded in their PCs?

I was told that this is possible, but I don't know what software is
needed. Do you know? If so, please answer this post. Thanks.

SueB

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 13 '05 #9
Unless Microsoft has changed it's policy, the runtime version does not
have ALL the features of the full version (but it is still quite good).
For example in the past Query by Form was not available in the runtime
version.

Nov 13 '05 #10

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

Similar topics

0
13064
by: Shashikant Khandelwak | last post by:
Hi ! I am trying to install oracle 9i Standard edition on a windows 2000 SP4 machine. I get through the entire installation up to running the Database Configuration Assistant. While it tries to make the database, it gets to the "Creating and starting Oracle instance" stage, and then the errors start. I get: ORA-01503: CREATE CONTROLFILE failed. ORA-00205: error in identifying control file. check alertlog for more
3
2043
by: Michael Lauzon | last post by:
This is not for a class, I have a group on SourceForge, this is what one of the Developers is asking; the more advanced you can make it right off all the better!: Can someone please create some MySQL to create the first table: the players table. It will need to include (as a minimum): - ID (unique)
11
27216
by: dfurtney | last post by:
SQL Server 7/2000: We have reasonably large tables (3,000,000 rows) that we need to add some indexes for. In a test, it took over 12 hours to CREATE a new INDEX against this table. One of us suggested that we create a temp table with the new index and copy the data from the old table into the new one, then rename it. I understand this took 15 minutes. Why the heck would it be faster to move the data and build multiple indexes...
3
3345
by: Evan Smith | last post by:
I have a federated database (7.2 FP11, AIX 4.3) that seems to work fine in most aspects. Today I'm trying to add a new user mapping with the following statement: create user mapping for mngdrq01 server opencases options (remote_authid 'mngdrq01', remote_password 'xxxxx') Querying the federated database works fine as long as the user mentioned above is part of the sysadm group or has dbadm authority. As soon as those authorities are...
9
3178
by: jab | last post by:
Je veux lier (join) une table qui se trouve dans une database avec une qui se trouve dans une autre database. Les 2 databases sont sur le même serveur en l'occurence DB2/NT 7.2.9. J'ai créé un wrapper avec le control center (j'ai utilisé DRDA) et ensuite j'ai voulu créé le serveur mais avec le wizard, il ne me présente pas mes tables ! J'ai donc essayé en ligne de commande. J'ai essayé la commande suivante: CREATE SERVER TEST TYPE...
2
22118
by: Maverick | last post by:
If i try to create foxpro table by the following "sql" statment, the C# compiler will only return an error "xxxx not support in non-dbc version". The "index on" command statement return some kind of syntex error too. How can i create a DBF table with proper indexing ability ?? The "UNIQUE" keyword has already been proved to be failed to perform normally. Please help string sql = "CREATE TABLE datafile (field1 C(10) PRIMARY KEY, field2...
5
3077
by: darjonase | last post by:
Alright, so I am creating an entire database in code since I have no idea how to bundle a created database in an install of my application. I know how to create the database and the tables in VB.NET code just fine, what I can't figure out is how to create stored procedures in VB.NET that will be saved in this same database. Can anyone help me out on this one? Darian
19
2338
by: Brett Romero | last post by:
Here's a table of data I'm putting into a collection: CodeId CodeGroup CodeSubGroup Type 1 K K.1 Shar1 2 K K.1 MD5 3 J J.2 Shar1 I want to get the data in two ways: Codes codes;
2
1617
by: cpressley2 | last post by:
Hi, On a multi-partition instance, can you create a database on a single parition? How??? The db architects want to use one instance for four databases where only one is big enough for a multi-partition. The other three are small. I'd like to create them only on one partition but can't find any documention on how to do this.
7
2574
by: | last post by:
There are assorted "SQL Injection vulnerability assessment tools" out there. They scan your site and send your report. They also take your money. We don't have the money so I was wondering if I could replicate the tool's behavior myself. I am guessing that they work by attempting a non-destructive injection attack against your DB and evaluating the success or failure of that test. I am curious if a) I'm correct about this, and b) if...
0
9683
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...
0
9529
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
10013
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
9054
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
7550
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
6792
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
5576
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4119
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
3
2927
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.