2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【VBA】コンボボックスの値でボタンの有効無効を変える

Last updated at Posted at 2020-09-05

ボタンの有効無効

ボタンのプロパティ(Enabled)を値次第でTrueかFalseに切り替えます。
コンボボックスではなくテキストボックスやチェックボックスでも使えますが今回は
【VBA】ユーザーフォムのコンボボックスのリストに重複を省いて値を追加するで作ったコンボボックスを使って、コンボボックスの値が空白の時はボタンが押せないようにします。
image.png

ユーザーフォムに以下のコードを書きます。

Private Sub cmbDate_Change()
    If cmbDate.Value <> "" Then   'コンボボックスの値が空白じゃないときは
        btnDone.Enabled = True '決定ボタン有効
    Else
        btnDone.Enabled = False '決定ボタン無効
    End If
End Sub

実行結果
image.png

ワタシ流こだわり

こだわりって言うか癖なんですがIf文書くとき
If cmbDate.Value <> "" Then
のように「空白じゃないときは~」という書き方します。

Private Sub cmbDate_Change()
    If cmbDate.Value = "" Then   'コンボボックスの値が空白なら
        btnDone.Enabled = False '決定ボタン無効
    Else
        btnDone.Enabled = True '決定ボタン有効
    End If
End Sub

このほうが分かりやすい人多いんですかね?:sweat_smile:

2
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?