README.md
December 5, 2022 ยท View on GitHub
Description
Dumps a string to a file
More Info
strString--string to dump
strFile--file to dump to
| Submitted On | |
| By | Ian Ippolito (vWorker) |
| Level | Unknown |
| User Rating | 4.2 (161 globes from 38 users) |
| Compatibility | VB 5.0, VB 6.0 |
| Category | Debugging and Error Handling |
| World | Visual Basic |
| Archive File |
Source Code
Sub Dump_String_To_File (ByVal strString As String, ByVal strFile As String)
Dim fileFile As Integer
fileFile = FreeFile
Open strFile For Output As fileFile
Write #fileFile, strString
Close fileFile
Dim intReturn
On Error Resume Next
intReturn = Shell("c:\apps\utility\textpad\txtpad16.exe " & strFile, 1)
On Error GoTo 0
End Sub