|
ユーザーフォームを呼び出したいので下記のように記述しました。
ところが実行すると「実行時エラー424 オブジェクトが必要です」と出て、
UserForm1.Showが黄色になってしまいます。
Internetで調べても該当がなかなかありません。
どこを直せばばよいか どなたか御教えねがえないでしょうか。
ユーザーフォームのプロパティを確認しましたがオブジェクト名=UserForm1です。
Dim Mnm As String
Dim Tnm As String
Dim ws1 As Worksheet
Dim i As Long
If Not Application.Intersect(Range("B3:B100"), Target) Is Nothing Then
With Target
Cnm = .Offset(, -1).Value
Pnm = .Offset(0, 0).Value
Mnm = .Offset(, 3).Value
Tnm = .Offset(, 5).Value
End With
Set ws1 = Worksheets("history")
For i = 5 To ws1.Range("B65535").End(xlDown).Row
If IsEmpty(ws1.Cells(i, 2).Value) Then
ws1.Cells(i, 2).Value = Cnm
ws1.Cells(i, 3).Value = Pnm
ws1.Cells(i, 4).Value = Mnm
ws1.Cells(i, 9).Value = Tnm
UserForm1.Show
Exit For
End If
Next i
Cancel = True
End If
End Sub
|
|