0

データ入力フォームがあります。適切にインデックス化されたタブなどで、入力イベントで自動的に展開される 3 つのドロップダウン メニューがあります。

タブキーとキーボードの使用と入力内容の確認について、ユーザーにいくらアドバイスしても。ドロップダウン メニューから値を選択するためにマウスを使用することを依然として主張していますが、問題は、マウスを使用した結果、急いでミスを犯すことが多いことです。

ユーザーがキーボードを使用してこれらのフィールドに入力できるようにしたいと考えています。

ドロップダウンは、ユーザーがフィールドの適切な値を表示するために必要です。値は以前の選択に基づいて変化するためです。

私はすでに onclick イベントを試してみましたが、役に立ちませんでした。これを行う方法はありますか?

Access 2007 を使用していますが、多くのユーザーは Access 2003 を使用しています。

4

1 に答える 1

2

Based on your comments, I would take one of two different approaches.

If your users are really comfortable with the codes AND know which ones they should use based on their previous selections, then just use text boxes instead of combo boxes. You can still put some validation code in either the Form_BeforeUpdate event or the individual control's _BeforeUpdate event.

If the users are not that comfortable, then I would suggest you have the first field in the combo boxes be the description of the code, not the code itself. So instead of choosing from 101, 102, 103 they are instead choosing from "Small", "Medium", "Large" or whatever those codes actually apply to. If you still wanted to display the codes themselves, you could do that with a separate disabled text box.


Now to answer your actual question. For the record, I highly recommend against using this approach. The simplest way I can thing of to prevent your users from using the mouse to select the combo box, would be to add a Transparent button covering the combo box.

To do this, draw a regular command button over the combo. Set Transparent = Yes, Visible = Yes, Enabled = Yes, Tab Stop = No.

When users click on the combo now, they will actually be clicking on the Transparent button and nothing will happen. The ONLY way they will be able to get into the control is by tabbing from a neighboring control or using a hotkey (via '&' in attached label).

Once they enter the control via Tab and your code forces a dropdown, they will still be able to choose an option using the mouse. But by forcing them to use the keyboard initially, it will make it much more likely that they just stick with the keyboard.

Again--I can't stress this enough--I think this is a terrible, horrible, no-good idea. Please don't use this approach. But you asked a technical question and this site is all about giving technical answers, so there you go...

于 2013-02-05T15:46:09.320 に答える