|
よろしくお願いします。
ユーザーフォーム上で下記コードにて
errorが出てしまいます。
エラーは指定されたオブジェクトが見つかりません。
但し一度ComboBox1をクリックしてから作業を
実行するとエラー回避できます。
原因わかりますか。?
Option Explicit
Dim 番号 As Integer
Private Sub ComboBox1_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
番号 = 1
End Sub
Private Sub ComboBox2_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, _
ByVal X As Single, ByVal Y As Single)
番号 = 2
End Sub
Private Sub MonthView1_Click()
Controls("ComboBox" & 番号).Value = Me.MonthView1.Value
End Sub
Private Sub CommandButton1_Click()
Unload Me
End Sub
Private Sub CommandButton2_Click()
Dim rc As Long
rc = MsgBox("データをシートに書込します。よろしいですか?", vbYesNo)
If rc = vbYes Then
Range("J18").Value = Me.ComboBox1.Value
Range("R18").Value = Me.ComboBox2.Value
End If
End Sub
|
|