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

Access 97 - is this possible?

Am I trying to do something that is impossible with access 97?

I want to write an address book application.

I have exported (from a Casio BOSS organiser) all my contact information
and it is now in a file called addresses.mdb I can edit this file using
the tables and forms in access.

But I want a stand alone application.

I want to double click on an icon on the desktop and a window opens up
with 26 tabs across the top (A - Z).

under the letter tab I want a window with all my contacts for that
letter shown horizontally and when I click on a row it open a window
with all the details for that individual, or displays them in a
different part of the screen.

I would lick to be able to put this application and the .mdb file on all
the computers I use.

I will also need a screen for adding/deleting/modifying records.

Is this possible with access?

thanks

Nov 13 '05 #1
7 1789
Yes

"nospam" <no****@nospam.demon.co.uk> wrote in message
news:nd**************@nospam.demon.co.uk...
Am I trying to do something that is impossible with access 97?

I want to write an address book application.

I have exported (from a Casio BOSS organiser) all my contact information
and it is now in a file called addresses.mdb I can edit this file using
the tables and forms in access.

But I want a stand alone application.

I want to double click on an icon on the desktop and a window opens up
with 26 tabs across the top (A - Z).

under the letter tab I want a window with all my contacts for that
letter shown horizontally and when I click on a row it open a window
with all the details for that individual, or displays them in a
different part of the screen.

I would lick to be able to put this application and the .mdb file on all
the computers I use.

I will also need a screen for adding/deleting/modifying records.

Is this possible with access?

thanks

Nov 13 '05 #2
Create a continuous form based on a query based on your contacts table. Be sure
to include the ContactID field. Sort last name ascending.

Create an option group named ContactLastNameInitial with 26 toggle buttons
labeled A to Z. (The buttons will have the value 1 to 26 in the form header.

Put the following expression in the criteria of the Lastname field of the query:
Like Me!ContactLastNameInitial & "*"

Put the following code in the AfterUpdate event of ContactLastNameInitial:
Select Case Me!ContactLastNameInitial
Case 1
Me!ContactLastNameInitial = "A"
Case 2
Me!ContactLastNameInitial = "B"
|
|
|
Case 26
Me!ContactLastNameInitial = "Z"
End Select

In one of the fields on your form, put the following code in the Click event:
DoCmd.OpenForm "NameOfIndividualDetails",,,"[ContactID] = " & Me!ContactID

Build a single form based on a copy of the query above without the criteria in
LastName for adding/deleting/modifying records.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"nospam" <no****@nospam.demon.co.uk> wrote in message
news:nd**************@nospam.demon.co.uk...
Am I trying to do something that is impossible with access 97?

I want to write an address book application.

I have exported (from a Casio BOSS organiser) all my contact information
and it is now in a file called addresses.mdb I can edit this file using
the tables and forms in access.

But I want a stand alone application.

I want to double click on an icon on the desktop and a window opens up
with 26 tabs across the top (A - Z).

under the letter tab I want a window with all my contacts for that
letter shown horizontally and when I click on a row it open a window
with all the details for that individual, or displays them in a
different part of the screen.

I would lick to be able to put this application and the .mdb file on all
the computers I use.

I will also need a screen for adding/deleting/modifying records.

Is this possible with access?

thanks

Nov 13 '05 #3
On Thu, 3 Jun 2004, nospam <no****@nospam.demon.co.uk> wrote:
But I want a stand alone application.
I would lick to be able to put this application and the .mdb
file on all the computers I use.


You MIGHT be able to find an old Access 97 Developer CD for sale
somewhere, which includes the runtime and developer tools
John Thomas Smith
http://www.direct2usales.com
http://www.pacifier.com/~jtsmith
Nov 13 '05 #4
_Might_ is the operative word. For a long time, those were hard to find and
expensive. I haven't heard for anyone who's looked recently. It would be
interesting to see if any are posted in the online auctions.

"John Thomas Smith" <jt*****@pacifier.com> wrote in message
news:lv********************************@4ax.com...
On Thu, 3 Jun 2004, nospam <no****@nospam.demon.co.uk> wrote:
But I want a stand alone application.
I would lick to be able to put this application and the .mdb
file on all the computers I use.


You MIGHT be able to find an old Access 97 Developer CD for sale
somewhere, which includes the runtime and developer tools
John Thomas Smith
http://www.direct2usales.com
http://www.pacifier.com/~jtsmith

Nov 13 '05 #5
nospam wrote:
Am I trying to do something that is impossible with access 97?

I want to write an address book application.

I have exported (from a Casio BOSS organiser) all my contact information
and it is now in a file called addresses.mdb I can edit this file using
the tables and forms in access.

But I want a stand alone application.


If you don't have Access on all of your PCs then you need to Developers
Toolkit. Hard to find. In that case, you might want to get VB6.

The rest of your requirements are more than doable.

Nov 13 '05 #6
Possible?
Perhaps, if you're lucky, as other posters have mentioned, and find an
available and affordable copy of the Access 97 Developer's Edition. In case
it's not abundantly clear from those posts, you cannot run an Access
database on any PC without some form of Access. What the Developer's
Edition lets you do is create a Runtime version of Access (where you can run
Access databases and change data, but cannot make design changes) - this is
still not strictly speaking a stand-alone application.

But why on earth anyone would want to write a custom contact manager when
there are so many very workable ones on the market already - that's what
eludes me.

Unless you have other things you want to do with Access, I'd say your money
is better spent on a contact manager than on a Developer's Edition. I'd be
very surprised if there weren't contact managers of the same vintage as
Access 97 available at a pretty reasonable price.

HTH
- Turtle

"nospam" <no****@nospam.demon.co.uk> wrote in message
news:nd**************@nospam.demon.co.uk...
Am I trying to do something that is impossible with access 97?

I want to write an address book application.

I have exported (from a Casio BOSS organiser) all my contact information
and it is now in a file called addresses.mdb I can edit this file using
the tables and forms in access.

But I want a stand alone application.

I want to double click on an icon on the desktop and a window opens up
with 26 tabs across the top (A - Z).

under the letter tab I want a window with all my contacts for that
letter shown horizontally and when I click on a row it open a window
with all the details for that individual, or displays them in a
different part of the screen.

I would lick to be able to put this application and the .mdb file on all
the computers I use.

I will also need a screen for adding/deleting/modifying records.

Is this possible with access?

thanks

Nov 13 '05 #7
Thanks for the info.

It seems I need a developers edition and if I were to spend money I
would buy the latest version not access97 version.

The reason I said access97 is that I have that on my home PC, the PCs at
school, I'm a teacher, run different versions of access.

I just wanted a simple address book that was portable and had birthdays
and Christmas card tick boxes so I could print address labels for cards,
and a section with space to add misc. Notes.

All the contact managers I have seen have a bit of this and a bit of
that, I think I will have another look at what is available.

Thanks again

MacDermott <ma********@nospam.com> Writes
Possible?
Perhaps, if you're lucky, as other posters have mentioned, and find an
available and affordable copy of the Access 97 Developer's Edition. In case
it's not abundantly clear from those posts, you cannot run an Access
database on any PC without some form of Access. What the Developer's
Edition lets you do is create a Runtime version of Access (where you can run
Access databases and change data, but cannot make design changes) - this is
still not strictly speaking a stand-alone application.

But why on earth anyone would want to write a custom contact manager when
there are so many very workable ones on the market already - that's what
eludes me.

Unless you have other things you want to do with Access, I'd say your money
is better spent on a contact manager than on a Developer's Edition. I'd be
very surprised if there weren't contact managers of the same vintage as
Access 97 available at a pretty reasonable price.

HTH
- Turtle

"nospam" <no****@nospam.demon.co.uk> wrote in message
news:nd**************@nospam.demon.co.uk...
Am I trying to do something that is impossible with access 97?

I want to write an address book application.

I have exported (from a Casio BOSS organiser) all my contact information
and it is now in a file called addresses.mdb I can edit this file using
the tables and forms in access.

But I want a stand alone application.

I want to double click on an icon on the desktop and a window opens up
with 26 tabs across the top (A - Z).

under the letter tab I want a window with all my contacts for that
letter shown horizontally and when I click on a row it open a window
with all the details for that individual, or displays them in a
different part of the screen.

I would lick to be able to put this application and the .mdb file on all
the computers I use.

I will also need a screen for adding/deleting/modifying records.

Is this possible with access?

thanks



Nov 13 '05 #8

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

Similar topics

10
by: David ROBERT | last post by:
Hello, I need to read data from a MS Access database. The program (reader) is installed on a linux box and is written in python langage. The database is MS Access 2002 installed on a Win XP box...
4
by: Bon | last post by:
Hello all Would it be possible to migrate the MS Access 2000 to MS SQL Server 2000? My application is using MS Access 2000 as database and as user interface such as forms. Now, I want to...
1
by: John E | last post by:
I have an Access 2000 database in which there are remotely linked SQL tables and a couple of local tables. If I have queries in Access that are designed to pass data between these remote linked...
7
by: Mark Thiel | last post by:
I am working on a project for my company, which has a structure of six major areas. Certain people need to have access to all of the data, whereas other people only require access to the...
34
by: John Harrison | last post by:
An odd confession; an odd request; but here's the tale.... My company has a few PC systems which we have used for about 7 years and not updated - we've "made do", and besides, "if it ain't...
8
by: carriolan | last post by:
Hi I have an MS Access based application almost ready for distribution to the public and I find that even though I have compiled it into an MDE file, tables and queries can still be be imported if...
24
by: Lauren Wilson | last post by:
OK, I'm confused. SOME folks here seem to be saying it IS possible to link to or otherwise access and manipulate MDB files stored on a web server (from the client) and others seem to be saying...
1
by: dhussong | last post by:
I am attempting to use Visual Studio 2005 (Visual Basic) and the Enterprise Library 2.0 Data Access Application Block with a Microsoft Access database. I know the names of my Access databases but I...
6
by: Mark | last post by:
Currently using MS Access 2000 and SQL Server Express. Using the current DAO OpenRecordset code listed below, however I keep getting the error message.... 3254: ODBC --Cannot lock all records ...
9
by: ARC | last post by:
Hello all, I developed a tool a year or so ago for adding your own spell-checker to an access application. This is mainly for those using the runtime, as you can't distribute the spell-checker...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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...
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
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...

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.