ghudson
Registered User.
- Local time
- Today, 11:17
- Joined
- Jun 8, 2002
- Messages
- 6,193
Is it possible to save a "string" into a text file? If so, how can I do it with VBA for Access 97?
I have a custom error message that displays if the user has an unexpected (yet trapped) runtime error. I want to save the custom errors as a text file.
Dim sError as String
sError = "Testing 123"
'something yet not quite like this...
Save sError as "C:\Errors\Test.txt"
Thanks in advance for your help.
I have a custom error message that displays if the user has an unexpected (yet trapped) runtime error. I want to save the custom errors as a text file.
Dim sError as String
sError = "Testing 123"
'something yet not quite like this...
Save sError as "C:\Errors\Test.txt"
Thanks in advance for your help.