0

アプリケーションにオプションフォームを追加しました。2つのラジオボタンがあり、オプションフォームが閉じているときに、そのフォームがデータベースにデータを保存するときに、これらのラジオボタンの1つを選択します。

また、データベースにデータを書き込む別のフォームがあります。ユーザーは、コンボボックスのリストからアイテムを選択して追加します。このコンボボックスを使用せずに、ユーザーがそのデータを手動で追加できるようにしたい。ユーザーがオプションフォームで「手動」を選択すると、コンボボックスが消えてテキストボックスが表示され、ユーザーが「リスト」を選択してからコンボボックスが表示される必要があります。

ホット私はそれを行うことができますか?新しいSQLクエリも必要です。

4

1 に答える 1

4

If it's just the two controls, one easy way of doing it would be to place both of them on the form, on top of each other, and then just make one of them invisible, and when the user selects the other options, just change visibility on both of them.

You'll have to make sure that your form closing code that saves the data reads from the correct control of course, but that's just the matter of a simple if statement to check which of them is visible.

于 2011-02-22T21:36:13.107 に答える