A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Entering a value



 
 
Thread Tools Display Modes
  #1  
Old June 29th, 2004, 04:50 AM
Jim Jennings
external usenet poster
 
Posts: n/a
Default Entering a value

My question is hopefully simple to answer, but it has
plagued me for weeks. I simply can not figure out how to
set a form to which a user enters information and the
related record displays.

Specifically, I am creating a TimeClock form. The form
requests the employee's ID. Currently, the employee will
enter their ID and press enter. This should poplulate a
table (tlbTimeClock) with EmployeeID (user entry),
DateScanned using date(), & TimeScanned using time()

The subform is a query (qryTimeClock) which relates
(tblTimeClock) to (tblEmployees) in order to display the
employee's name and insure them they have clocked in
correctly.

I can provide any information as well as 'bells &
whistles' to the form as soon as I can understand the
basic fundamental of how to get this to work.

Thanks for any assistance.

Jim
  #2  
Old June 29th, 2004, 05:06 AM
Ken Snell
external usenet poster
 
Posts: n/a
Default Entering a value

The subform is used just to show the employee's name? A bit of overkill if
yes.

Sounds as if you're asking user to type in an ID? Why not use a combo box
that displays employee names (with or without IDs) and let employee select
his/her name? Then you could use a combo box - text box combination as
described at The ACCESS Web to show the employee name after the user selects
the name:
http://www.mvps.org/access/forms/frm0058.htm

--

Ken Snell
MS ACCESS MVP

"Jim Jennings" wrote in message
...
My question is hopefully simple to answer, but it has
plagued me for weeks. I simply can not figure out how to
set a form to which a user enters information and the
related record displays.

Specifically, I am creating a TimeClock form. The form
requests the employee's ID. Currently, the employee will
enter their ID and press enter. This should poplulate a
table (tlbTimeClock) with EmployeeID (user entry),
DateScanned using date(), & TimeScanned using time()

The subform is a query (qryTimeClock) which relates
(tblTimeClock) to (tblEmployees) in order to display the
employee's name and insure them they have clocked in
correctly.

I can provide any information as well as 'bells &
whistles' to the form as soon as I can understand the
basic fundamental of how to get this to work.

Thanks for any assistance.

Jim



  #3  
Old June 29th, 2004, 05:20 AM
Paul Johnson
external usenet poster
 
Posts: n/a
Default Entering a value

If the employees are on network or intranet where they need to log in, you
can access the UserName environment variable using Environ("USERNAME").
With an intermediate table that provides a foreign key that links the
usernames to the emloyees' names, no one will need to key in an employee ID,
you can just have the form "recognize" the user when it is opened.

Paul Johnson

"Ken Snell" wrote in message
...
The subform is used just to show the employee's name? A bit of overkill if
yes.

Sounds as if you're asking user to type in an ID? Why not use a combo box
that displays employee names (with or without IDs) and let employee select
his/her name? Then you could use a combo box - text box combination as
described at The ACCESS Web to show the employee name after the user

selects
the name:
http://www.mvps.org/access/forms/frm0058.htm

--

Ken Snell
MS ACCESS MVP

"Jim Jennings" wrote in message
...
My question is hopefully simple to answer, but it has
plagued me for weeks. I simply can not figure out how to
set a form to which a user enters information and the
related record displays.

Specifically, I am creating a TimeClock form. The form
requests the employee's ID. Currently, the employee will
enter their ID and press enter. This should poplulate a
table (tlbTimeClock) with EmployeeID (user entry),
DateScanned using date(), & TimeScanned using time()

The subform is a query (qryTimeClock) which relates
(tblTimeClock) to (tblEmployees) in order to display the
employee's name and insure them they have clocked in
correctly.

I can provide any information as well as 'bells &
whistles' to the form as soon as I can understand the
basic fundamental of how to get this to work.

Thanks for any assistance.

Jim





  #4  
Old June 29th, 2004, 05:39 PM
Jim Jennings
external usenet poster
 
Posts: n/a
Default Entering a value

I don't want to use a combo box 1) because I don't want
employees to have to scroll through dozens of names to
find theirs & 2) I don't want employees clocking in and
out other employees.

If I had scan cards and used a magnetic reader to input
the information, it would still have to be a number that
is input.

My question is how to accept an inputted value. I do not
want to know a way around this.

Thanks.


-----Original Message-----
The subform is used just to show the employee's name? A

bit of overkill if
yes.

Sounds as if you're asking user to type in an ID? Why

not use a combo box
that displays employee names (with or without IDs) and

let employee select
his/her name? Then you could use a combo box - text box

combination as
described at The ACCESS Web to show the employee name

after the user selects
the name:
http://www.mvps.org/access/forms/frm0058.htm

--

Ken Snell
MS ACCESS MVP

"Jim Jennings" wrote in

message
...
My question is hopefully simple to answer, but it has
plagued me for weeks. I simply can not figure out how

to
set a form to which a user enters information and the
related record displays.

Specifically, I am creating a TimeClock form. The form
requests the employee's ID. Currently, the employee

will
enter their ID and press enter. This should poplulate

a
table (tlbTimeClock) with EmployeeID (user entry),
DateScanned using date(), & TimeScanned using time()

The subform is a query (qryTimeClock) which relates
(tblTimeClock) to (tblEmployees) in order to display

the
employee's name and insure them they have clocked in
correctly.

I can provide any information as well as 'bells &
whistles' to the form as soon as I can understand the
basic fundamental of how to get this to work.

Thanks for any assistance.

Jim



.

  #5  
Old June 29th, 2004, 07:00 PM
Ken Snell
external usenet poster
 
Posts: n/a
Default Entering a value

How will you prevent an employee from entering someone else's ID? Avoiding
combo box doesn't prevent that. Also, with autocomplete feature of combo
box, a user can begin typing the name and the combo box will find the first
match of the entered characters; no need to scroll all the way through to
get to the name.

But, if you want user to type an ID into a textbox and then want to show
that the user has entered the "correct" ID, put two textboxes on the form
(name the first one txtID, the second one txtName). Put this expression in
for the control source of txtName control:
=DLookup("EmployeeNameField", "EmployeeTable", "[EmployeeID]=" &
[txtID])


--

Ken Snell
MS ACCESS MVP

"Jim Jennings" wrote in message
...
I don't want to use a combo box 1) because I don't want
employees to have to scroll through dozens of names to
find theirs & 2) I don't want employees clocking in and
out other employees.

If I had scan cards and used a magnetic reader to input
the information, it would still have to be a number that
is input.

My question is how to accept an inputted value. I do not
want to know a way around this.

Thanks.


-----Original Message-----
The subform is used just to show the employee's name? A

bit of overkill if
yes.

Sounds as if you're asking user to type in an ID? Why

not use a combo box
that displays employee names (with or without IDs) and

let employee select
his/her name? Then you could use a combo box - text box

combination as
described at The ACCESS Web to show the employee name

after the user selects
the name:
http://www.mvps.org/access/forms/frm0058.htm

--

Ken Snell
MS ACCESS MVP

"Jim Jennings" wrote in

message
...
My question is hopefully simple to answer, but it has
plagued me for weeks. I simply can not figure out how

to
set a form to which a user enters information and the
related record displays.

Specifically, I am creating a TimeClock form. The form
requests the employee's ID. Currently, the employee

will
enter their ID and press enter. This should poplulate

a
table (tlbTimeClock) with EmployeeID (user entry),
DateScanned using date(), & TimeScanned using time()

The subform is a query (qryTimeClock) which relates
(tblTimeClock) to (tblEmployees) in order to display

the
employee's name and insure them they have clocked in
correctly.

I can provide any information as well as 'bells &
whistles' to the form as soon as I can understand the
basic fundamental of how to get this to work.

Thanks for any assistance.

Jim



.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
entering data into a cell Nebo Worksheet Functions 3 June 23rd, 2004 03:28 AM
Cell protection after entering formula. Ashok Sabne General Discussion 2 June 18th, 2004 01:19 PM
entering time in and time out paula Worksheet Functions 1 February 25th, 2004 12:16 AM
Entering Dates John Worksheet Functions 4 January 10th, 2004 01:38 PM
when using tab key, excel assumes I'm entering a list of data Laura Worksheet Functions 6 October 18th, 2003 02:32 AM


All times are GMT +1. The time now is 12:35 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.