User form works in Excel 2000 but not in XP

tbird

Board Regular
Joined
Oct 21, 2002
Messages
184
The following code for a user form was developed in Excel 2000 and works fine there but does not work in XP. I get a runtime error with the red code hi-lited by the debugger. Can anyone tell me why?

Rich (BB code):
Private Sub lblDailyMessage1_Click()

End Sub

Private Sub lblDateTime_Click()

End Sub

Private Sub lblScripture_Click()

End Sub

Private Sub lbltopic_Click()

End Sub

Private Sub OKButton_Click()
Unload Me
End Sub

Private Sub UserForm_Activate()
Dim Quote1 As String
Dim Quote2 As String
lblDateTime.Caption = Format(Now, "dddddd, h:mm am/pm")
Quote1 = Worksheets("Daily Messages").Range("B2")
lblscripture.Caption = Quote1
Quote2 = Worksheets("Daily Messages").Range("D2")
lbltopic.Caption = Quote2
End Sub
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.

Forum statistics

Threads
1,221,212
Messages
6,158,558
Members
451,498
Latest member
tyshanklin1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top