Date/Time control

  • Thread starter Thread starter S Shulman
  • Start date Start date
S

S Shulman

Hi

Users of the new system complain that it is not easy to use the new 'date
control' because they can't select all the date parts and overkey the value.

Is there a way of allowing the user to do that or any other technique that
will speed up data entry

Thank you,
Shmuel Shulman
 
Have you thought about using a normal textbox for data entry? and you can
put in a button on the side which can display a date control which will
otherwise be hidden.

Cyril
 
Exactly, we used a textbox and a button (to show a calendar if the user
really needs it) and the textbox allowed the user to enter 31122005 and then
we reformatted on LostFocus to 31/12/2005. If the user is fast with the
numeric keys to the right of the keyboard, that's the fastest way to enter a
date, IMO

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio 2005, Visual Studio .NET,
VB6, VB5 and VBA
You can code, design and document much faster in VB.NET, C#, C++ or VJ#
Free resources for add-in developers:
http://www.mztools.com
 
Exactly, we used a textbox and a button (to show a calendar if the user
really needs it) and the textbox allowed the user to enter 31122005 and
then we reformatted on LostFocus to 31/12/2005. If the user is fast with
the numeric keys to the right of the keyboard, that's the fastest way to
enter a date, IMO

It's always worth remembering that a terminal screen or DOS window is faster
for a skilled data entry operator than any Windows type display.
 
Homer J Simpson said:
It's always worth remembering that a terminal screen or DOS window is
faster for a skilled data entry operator than any Windows type display.

I think you can always make a Windows user interface as fast as the DOS
version if you design it carefully (passing the focus to the next control
when the previous is filled, making the Return key to tab, etc.) and
unpluging the mouse during the tests ;-)

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio 2005, Visual Studio .NET,
VB6, VB5 and VBA
You can code, design and document much faster in VB.NET, C#, C++ or VJ#
Free resources for add-in developers:
http://www.mztools.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Combobox Question 1
Get the system colours 2
Menu Question 3
Name of Variable at Runtime 2
Printing Question 2
Layout of NumericUpDown Control 2
Processing time 1
Access Validation rule in MS access 2010 1

Back
Top