| 
    
     |  | 現在は、ラベルを複数配置して一つのラベルに問い(フレーム)3つの内でyesにチッェクが入っている問いの番号を表示させるよう下記のような式をyesのオプションボタン(CheckBox_Click())に書いてます。 入力後の確認のためにyesのものを確認できればと考えているのですが問いの数が多くなるとラベルの数も増えてなんか煩雑になるのでもっといい方法がないかと思っています。よろしくお願いします。
 
 
 If Form編集.CheckBox1.Value = True And Form編集.CheckBox2.Value = False And Form編集.CheckBox3.Value = False Then
 Form編集.Label1 = "1,"
 ElseIf Form編集.CheckBox1Value = False And Form編集.CheckBox2.Value = True And Form編集.CheckBox3.Value = False Then
 Form編集.Label1 = "2,"
 ElseIf Form編集.CheckBox1Value = False And Form編集.CheckBox2.Value = False And Form編集.CheckBox3.Value = True Then
 Form編集.Label1 = "3,"
 ElseIf Form編集.CheckBox1Value = True And Form編集.CheckBox2.Value = True And Form編集.CheckBox3.Value = False Then
 Form編集.Label1 = "1,2,"
 ElseIf Form編集.CheckBox1Value = False And Form編集.CheckBox2.Value = True And Form編集.CheckBox3.Value = True Then
 Form編集.Label1 = "2,3,"
 ElseIf Form編集.CheckBox1Value = True And Form編集.CheckBox2.Value = False And Form編集.CheckBox3.Value = True Then
 Form編集.Label1 = "1,3,"
 ElseIf Form編集.CheckBox1Value = True And Form編集.CheckBox2.Value = True And Form編集.CheckBox3.Value = True Then
 Form編集.Label1 = "1,2,3,"
 Else: Form編集.Label1 = Empty
 End If
 
 |  |