Re: "Save Operation Failed"

alicejwz

Registered User.
Local time
Today, 08:28
Joined
Jul 9, 2003
Messages
91
Re: "Save Operation Failed"

Hi all,

I tried to use DIR function to check if file exist, it executed fine. But when I tried to save it Access is giving an error that
"Save Operation Failed" then db locks up. Does anyone know why this is occurring? This also happened when using LEN Function w/ Dir Function. I'm using AC2K and SQL Server 2K.
Thanks much!

Private Sub Command0_Click()
If Dir$("c:\autoexec.bat") <> "" Then
MsgBox ("The file exist")
Else
MsgBox ("The file does not exist")
End If
 

Users who are viewing this thread

Back
Top Bottom