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

Yes No Style Question

I have a field that records whether an Employee is permanent or
temporary. My thought was to simply have 1 field that if checked means
that the employee is a permanent hire as opposed to an unchecked box
which means that person is a temporary employee.

Does anyone have any feedback on how this plays out with the end-user?

Thanks,

Tim

Nov 13 '07 #1
10 1121
On Nov 13, 10:08 am, tbrog...@gmail.com wrote:
I have a field that records whether an Employee is permanent or
temporary. My thought was to simply have 1 field that if checked means
that the employee is a permanent hire as opposed to an unchecked box
which means that person is a temporary employee.

Does anyone have any feedback on how this plays out with the end-user?

Thanks,

Tim
Hello Tim. There is an option in the table design that allows you to
set the field to a "Yes/No" field. You can then link this field to
whatever form you currently have and it will allow the user to only
check yes/no.

Hope this helps!

Dorothy
fi****************@googlegroups.com

Nov 13 '07 #2
Hi Dorothy,

Yes. I do know about the Yes/No fields. I realized after I posted that
my question might not have been perfectly clear.

I was thinking of using a checkbox instead of a Yes/No only because I
was thinking that it might be easier to deal with the data on the
backend.

And I guess what I'm really after is, whatever type of control I use
what is the best layout of the control(s) on the form from a user's
perspective stylistically?

What do you think?

Tim

Nov 13 '07 #3
On Tue, 13 Nov 2007 11:20:49 -0800, tb******@gmail.com wrote:
>Yes. I do know about the Yes/No fields. I realized after I posted that
my question might not have been perfectly clear.
I was thinking of using a checkbox instead of a Yes/No only because I
was thinking that it might be easier to deal with the data on the
backend.
And I guess what I'm really after is, whatever type of control I use
what is the best layout of the control(s) on the form from a user's
perspective stylistically?
What do you think?
What the field's underlying "style" is, is somewhat questionable. You
really shouldn't be applying styles at the table level, even though
Access allows it. Indeed, users should *never* be able to open a
table directly!

As for on a form, feel free to use a combobox, list, option group,
toggle, or checkbox as you feel fit.

Personally, I tend to use comboboxes, as they are re-sizable and
captionable in ways the checkboxes aren't.

Please Post Any Replies To This Message Back To the Newsgroup.
There are "Lurkers" around who can benefit by our exchange!
Nov 14 '07 #4
Again I find myself mis-communicating.

My question is - for ease of use for the end-user and for the cleanest
data entry and any subsequent programming issues that may come up -
does anyone have an opinion as to what might be the most efficient and
cleanest way for me to present the question to my end-users?

Thanks,

Tim

Nov 14 '07 #5
On Nov 13, 10:30 pm, tbrog...@gmail.com wrote:
Again I find myself mis-communicating.

My question is - for ease of use for the end-user and for the cleanest
data entry and any subsequent programming issues that may come up -
does anyone have an opinion as to what might be the most efficient and
cleanest way for me to present the question to my end-users?
I use checkbox for booleans. Sometimes, in addition, when I want the
user to be very aware about some condition, I change the background
color of the (single-record) form, say green for permanent, yellow for
temporary.

Nov 14 '07 #6
Thanks Lyle. That's exactly the kind of mental "jog" I was looking
for. I was also thinking about the field values "incorrectly" as well.
I am going to make it easy on myself and just have the one field -
HireStatus and will only have 2 permissible values - Permanent or
Temporary and my form can then be a combobox and that is that! :-)

Sometimes I just need to hear it from somebody else!

Thanks,

Tim
Nov 14 '07 #7
An added consideration is that now you can know if the user actually
selected a value (it would be empty if they did not) as opposed to
"Forgot" to mark the value.

Sort of the reverse can come up on option groups. I will sometimes
allow for a none of the above choice since once an entry is checked in
an option box you cannot uncheck it and the user may have hit the
choice by accident.

Ron

Nov 14 '07 #8
tb******@gmail.com wrote:
I have a field that records whether an Employee is permanent or
temporary. My thought was to simply have 1 field that if checked means
that the employee is a permanent hire as opposed to an unchecked box
which means that person is a temporary employee.

Does anyone have any feedback on how this plays out with the end-user?

Thanks,

Tim
You could make it a combo with an underlying Yes/No field. If the field
name was PT, you could make a two column combo (hide first column) with
values. Ex:
-1;"Perm";0;"Temp"

I think the users will understand a more verbose obtion.
Nov 14 '07 #9

<tb******@gmail.comwrote in message
news:11*********************@o3g2000hsb.googlegrou ps.com...
Again I find myself mis-communicating.

My question is - for ease of use for the end-user and for the cleanest
data entry and any subsequent programming issues that may come up -
does anyone have an opinion as to what might be the most efficient and
cleanest way for me to present the question to my end-users?
It is really a matter of the style with which your users, and you, are more
comfortable. If it is truly a Yes/No, and you can choose a default, then
any of Radio (Option) Button, Check Box, Toggle Button, List Box, Combo Box,
or even Text Box can work. As Lyle does, I usually use a Check Box or an
Option Button, but in specific cases, have used some of the others.

I'd particularly use a Combo Box if I thought that sometime in the future,
there might be more than two options for this, for example, if you add
"contractor" or "part-time regular employee" or "full-time temporary", you
won't have to go back and change the UI... just add them to the table.

Larry Linson
Microsoft Access MVP
Nov 15 '07 #10
>
I'd particularly use a Combo Box if I thought that sometime in the future,
there might be more than two options for this, for example, if you add
"contractor" or "part-time regular employee" or "full-time temporary", you
won't have to go back and change the UI... just add them to the table.

Larry Linson
Microsoft Access MVP
You make a really good point. We have fairly high turnover and I don't
want to delete any records because all production is tied directly to
employee so a combo box does seem the better option with a "No longer
with the company" option - and of course any of the other
possibilities that you point out.

Thanks,

Tim
Nov 15 '07 #11

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

Similar topics

12
by: David MacQuigg | last post by:
I have what looks like a bug trying to generate new style classes with a factory function. class Animal(object): pass class Mammal(Animal): pass def newAnimal(bases=(Animal,), dict={}):...
15
by: Christopher Benson-Manica | last post by:
If you had an unsigned int that needed to be cast to a const myClass*, would you use const myClass* a=reinterpret_cast<const myClass*>(my_val); or const myClass* a=(const myClass*)myVal; ...
33
by: amerar | last post by:
Hi All, I can make a page using a style sheet, no problem there. However, if I make an email and send it out to my list, Yahoo & Hotmail totally ignore the style tags. It looks fine in...
1
by: amerar | last post by:
Hi All, I posted a question about style sheets, and why certain email clients were ignoring them. Someone suggested placing them inline. I did this and get better results, but not what I...
4
by: KvS | last post by:
Hi all, I'm pretty new to (wx)Python so plz. don't shoot me if I've missed something obvious ;). I have a panel inside a frame, on which a Button and a StaticText is placed: self.panel =...
83
by: rahul8143 | last post by:
hello, what is difference between sizeof("abcd") and strlen("abcd")? why both functions gives different output when applied to same string "abcd". I tried following example for that. #include...
39
by: jamilur_rahman | last post by:
What is the BIG difference between checking the "if(expression)" in A and B ? I'm used to with style A, "if(0==a)", but my peer reviewer likes style B, how can I defend myself to stay with style A...
18
by: pocmatos | last post by:
Hi all, While I was programming 5 minutes ago a recurring issue came up and this time I'd like to hear some opinions on style. Although they are usually personal I do think that in this case as...
3
Claus Mygind
by: Claus Mygind | last post by:
I want to move some style setting into a javaScript function so I can make them variable but I get "invalid assignment left-hand side" error? see my question at the bottom of this message. It...
6
by: MatthewS | last post by:
I've seen the question raised several times here, but apparently never answered. Since PyInstance_Check returns False for new-style class instances, is there a standard procedure for testing this...
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?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...
0
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...
0
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...

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.