Hi guys,
I just got into a little problem.I just deployed an application with backend db access.It works fine on major OSs being used like win7 and XP.
But some functionality related to the database doesn't work properly when deployed on win8. I used a code to delete temp table if it exists.This feature completely works on the other OSs.But i don't know why the code is not working on the later OS.
Any thought to solve the problem?
Public Sub DroptempProject()
On Error GoTo ErrorHandler
Dim str As String
str = "DROP TABLE ptempTable"
ExecSQL(str)
'Exit Sub
ErrorHandler:
If Err.Number = 7874 Then
Resume Next
End If
End Sub