I have a program that I did not write but all of a sudden it is giving a run-time error when we try to load. This program has run for about 7 years without issue. Today I have a run time error "'-2147024882 (8007000e)' System Error &H80004005 (-2147467259). Unspecified error" I added some error handling to the main form and have an err.number = 0 and err.description = "".
This seems to be the sub that gives me an error :
How can I determine what is causing this?
This seems to be the sub that gives me an error :
Code:
Private Sub Form_Load()
On Error GoTo LoadError
Dim lpSystemTime As SYSTEMTIME
Dim slong As Long
With Me
.Width = Screen.Width
.Height = Screen.Height
Left = 0
Top = 0
MainMenu.BorderStyle = (Color = vbRed)
End With
menuframe.BackColor = RGB(250, 175, 0)
slong = GetSystemTime(lpSystemTime)
Print
LoadError:
MsgBox ("Error Number: " & Err.Number & ". Error Desc.: " & Err.Description)
End Sub
How can I determine what is causing this?