Need Some VB6 Error Code Syntax

Started by
1 comment, last by Dragonsoulj 10 years, 1 month ago
What I am trying to do is equivilant to an IfExist in C
I can Create - Append - and Read from a Disk File from with in the Code.
I can Also open an File/Directory (Save IN ....) dialog Box
What I want to do is Have the program check to see if the FILENAME exist prior to overwriting the file with in the code

Your Brain contains the Best Program Ever Written : Manage Your Data Wisely !!

Advertisement

If you can fopen it for reading without creation flags you good to go?

"Most people think, great God will come from the sky, take away everything, and make everybody feel high" - Bob Marley

In general, you can do something like:

Sub MyFunction()
On Error GoTo FailedToReadFile
    ' Read File Code
On Error GoTo FailedToWriteToFile
    ' Write File Code
ExitMyFunction:
Exit Sub
FailedToReadFile:
    ' Read File Error Handling
    GoTo ExitMyFunction
FailedToWriteToFile:
    ' Write File Error Handling
    GoTo ExitMyFunction
End Sub

This topic is closed to new replies.

Advertisement