473,396 Members | 1,748 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,396 software developers and data experts.

New job Access 97 help please

Hello,

I've just started a new job where at interview I said my week point was
MS Access. I got the job & they've asked me to create a DB on Access
97 to log calls to the IT department & keep a record of the action
taken. I thought I was going quite well I have talbes for new call,
call details, caller, equipment, escalation routes, contact details for
escalation routes, I got all the relationships up & runing (I think) &
then did a nice form to fill in to log new calls using fields from a
number of the tables that should be filled out. Well b****r me if it
didn't work. one error i get is that I cant type stuff in due to
recordset properties (but I cant find a record set thinggie to edit) &
then when I can type stuff in one field it does two wiered things,
firsly it puts the same data in that field on every new record I create
(within the form) but that same data does not apear in the table!

Obviously I need help - can anyone give me some pointers or suggest a
good website for adivce (or does anyone know where I can download a
ready made one).

Any help or advice is very much apreciated.

Thank you,

Justice.

Jun 30 '06 #1
8 1536
At a minimum upgrade to Access2000 before starting anything.. I don't
know if the current release of Access adds anything of value.

Read "Access Database Design & Programming" by Steven Roman by O'Reilly
press.
You may also want to read "Programming Microsoft Access Version 2002"
by Rick Dobson by Microsoft Press. I would expect that these books
would be available on Amazon.com.

Jun 30 '06 #2
thanks for the reply. The IT manager has no desire to upgrade. He had
an assistant for about a month who suggested that & got sacked - I'm
the replacement & don't intend to rock the boat. I'll bear the titles
in mind if they descide to keep me on (I'm on a temp contract - want to
make a good impression before I splash out - very poor been unemployed
since being knocked off my motorbike in March).

or*****@hotmail.com wrote:
At a minimum upgrade to Access2000 before starting anything.. I don't
know if the current release of Access adds anything of value.

Read "Access Database Design & Programming" by Steven Roman by O'Reilly
press.
You may also want to read "Programming Microsoft Access Version 2002"
by Rick Dobson by Microsoft Press. I would expect that these books
would be available on Amazon.com.


Jun 30 '06 #3
ju************@gmail.com wrote:
Hello,

I've just started a new job where at interview I said my week point was
MS Access. I got the job & they've asked me to create a DB on Access
97 to log calls to the IT department & keep a record of the action
taken. I thought I was going quite well I have talbes for new call,
call details, caller, equipment, escalation routes, contact details for
escalation routes, I got all the relationships up & runing (I think) &
then did a nice form to fill in to log new calls using fields from a
number of the tables that should be filled out. Well b****r me if it
didn't work. one error i get is that I cant type stuff in due to
recordset properties (but I cant find a record set thinggie to edit) &
then when I can type stuff in one field it does two wiered things,
firsly it puts the same data in that field on every new record I create
(within the form) but that same data does not apear in the table!

Obviously I need help - can anyone give me some pointers or suggest a
good website for adivce (or does anyone know where I can download a
ready made one).


Your description suggests you did a good job of database design; you,
at least, took into consideration normalization, relationships etc.

You indicate that you have a problem with a form. Before we can help
you with that we would have to know some more about the form. Is it a
bound form, that is does the form have a recordsource; if so what is
the recordsource? If it's a saved query then we will likely need to
know the sql string of the query. Does the form default to continuous
form display, or a single record at a time? Do each of your tables have
an indexed, probably primary key, identity field?

After that we could attack one problem at a time. You could choose the
simplest, perhaps, first. I think you should not despair. It sounds to
me as if you have done some good work. It may be that one simple
misunderstanding is causing your form to misfunction and that if we can
clear that one thing up, everything may work.

I am not a fan of Access 97 being used today, not because its bad, but
because its old. But IMO Access 2000 is unlikely to be helpful in this
case. There is no reason Access 2000 will work better than Access 97,
and in fact, because of its greater complexity and extremely poor state
on initial delivery (since repaired with Service Packs 1 through 7864)
it may not work as well.

Jun 30 '06 #4
On 30 Jun 2006 04:11:11 -0700, "ju************@gmail.com"
<ju************@gmail.com> wrote:

File > New > Database Wizard

-Tom.

Hello,

I've just started a new job where at interview I said my week point was
MS Access. I got the job & they've asked me to create a DB on Access
97 to log calls to the IT department & keep a record of the action
taken. I thought I was going quite well I have talbes for new call,
call details, caller, equipment, escalation routes, contact details for
escalation routes, I got all the relationships up & runing (I think) &
then did a nice form to fill in to log new calls using fields from a
number of the tables that should be filled out. Well b****r me if it
didn't work. one error i get is that I cant type stuff in due to
recordset properties (but I cant find a record set thinggie to edit) &
then when I can type stuff in one field it does two wiered things,
firsly it puts the same data in that field on every new record I create
(within the form) but that same data does not apear in the table!

Obviously I need help - can anyone give me some pointers or suggest a
good website for adivce (or does anyone know where I can download a
ready made one).

Any help or advice is very much apreciated.

Thank you,

Justice.


Jun 30 '06 #5
"ju************@gmail.com" <ju************@gmail.com> wrote in
news:11**********************@y41g2000cwy.googlegr oups.com:
thanks for the reply. The IT manager has no desire to
upgrade.


Smart man. We upgraded from '97 to 2K and had so many problems, we
went back.

--
Bob Quintal

PA is y I've altered my email address.

--
Posted via a free Usenet account from http://www.teranews.com

Jun 30 '06 #6
"ju************@gmail.com" <ju************@gmail.com> wrote in
news:11**********************@y41g2000cwy.googlegr oups.com:
Hello,
one error i get is that I cant type stuff in due to recordset properties (but I cant find a
record set thinggie to edit) & then when I can type stuff in
one field it does two wiered things, firsly it puts the same
data in that field on every new record I create (within the
form) but that same data does not apear in the table!
The form or the control is not properly bound to the table.
You may need to break the form into a master and some separate
subforms, .

The recordset is defined as a property in form design view,
called .recordsource. this should be one of your tables or an
inner join between two or three tables max. Left joins sometimes
are read only for no apparent reason.

Your textbox that puts the data in all rows has no
..controlsource. that's why it puts what you type everywhere.
Check for spelling errors or that the name you used is not an
Access reserved word.
Any help or advice is very much apreciated.

Thank you,

Justice.


--
Bob Quintal

PA is y I've altered my email address.

--
Posted via a free Usenet account from http://www.teranews.com

Jun 30 '06 #7
"or*****@hotmail.com" <or*****@hotmail.com> wrote in
news:11**********************@y41g2000cwy.googlegr oups.com:
At a minimum upgrade to Access2000 before starting anything.


Oh, that's just ridiculous. There's nothing wrong with A97 as a
development platform.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Jun 30 '06 #8
OK,

I've tried a few things, I was trying to use fields from 3-4 different
tables in one form, reading your posts I have figured out thats not
good. I've put most of the fields on one table (I had a table new job
which had job number, time of call & date of call, and a job details
table with nature of call & advice offered, job number, callers name,
then another caller details etc). I also don't have any queries yet so
maybe that causes a problem.

:-) Yes I tried the wizards & templates first - who wouldn't I couldn't
find one that did what I wanted :-)

I have a form for log new call but in the caller name box it gives me a
menu of names already used when I type a new name in it won't let me
save the record so I tried to put a command button in to add new user -
the idea was to open another form I created called add new user but for
the life of me can't remember anything about the VB unit I did at uni
in 2001 as a mature student & all my attempts to show, load or open
form when the button is clicked fail misurbly.

Fortunatly this is a mon-fri 9-5 job & I'm not expected to 'take it
home with me' I think they are quite happy as I've spend two days in
cupboards auditing old equipment to go down the dump (one of those jobs
that must be done but no-one actually gets around to)

Thanks all for your advice, I havn't given up yet!

Jul 1 '06 #9

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

Similar topics

0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool This article makes a detailed comparison among SourceAnyWhere, SourceOffSite, VSS...
4
by: Otis Hunter | last post by:
I have been given an Access Database which contains a table that has an OLE object field that contains a Word document. That table contains hundreds of records. I would like to find out how I can...
0
by: bettervssremoting | last post by:
To view the full article, please visit http://www.BetterVssRemoting.com Better VSS Remote Access Tool including SourceOffSite, SourceAnyWhere and VSS Remoting This article makes a detailed...
6
by: Null Reference | last post by:
Anybody here who can explain or point me to a link ? I wish to create a blank MS Access DB file programmatically using C# . Thanks, nfs
4
by: RM | last post by:
Had VS .Net 2002 installed on W2k Server SP3 and supported a number of web sites. Installed VS .Net 2003 on Friday and now all web sites using .Net & MS ACCESS get this strange error upon open. ...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
7
by: Cheryl Langdon | last post by:
Does anyone know if there is a way to globally turn off ALL control tips in Access 2003 using VBA code? Thanks. --- CL
9
by: Wayne Smith | last post by:
I've come up against a major headache that I can't seem to find a solution for but I'm sure there must be a workaround and I would really be grateful of any help. I'm currently building a web...
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 ...
2
hyperpau
by: hyperpau | last post by:
Before anything else, I am not a very technical expert when it comes to VBA coding. I learned most of what I know by the excellent Access/VBA forum from bytes.com (formerly thescripts.com). Ergo, I...
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:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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
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
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
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...

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.