「標準モジュール」の修正
(1)「標準モジュール」_「Module1」をクリックします。
(2)以下のコードを貼付けます。
Type myT
N(2) As Integer
S(2) As String
End Type
Public myG As myT
Sub Macro1()
myG.N(0) = 0
myG.S(0) = "バラ"
myG.S(1) = "サクラ"
myG.S(2) = "キク"
Load UserForm1
UserForm1.CommandButton1.Caption = "OK"
UserForm1.CommandButton2.Caption = "キャンセル"
UserForm1.Label1.Caption = "花の名前を選択してください"
UserForm1.ListBox1.List = myG.S
UserForm1.ListBox1.Font.Size = 12
UserForm1.Show
myG.N(1) = UserForm1.ListBox1.ListIndex
dp = 1
Unload UserForm1
End Sub
(3)dp = 1の行をクリックします。
(4)「デバッグ」_「ブレークポイントの設定/解除」を選択します。
(5)これで、ブレークポイントの設定ができました。