Public Sub EdgeColor_Click()
Dim intInFile As Integer
intInFile = FreeFile
Open "c:\picturename.csv" For Output As
Print
Close
End Sub
This is my code, and I get a runtime error 52 "wrong name or file number". I tried doing as input and making the file exist, but I get the same error.
This is VBA inside the Proficy iFix graphical profile, and I cannot understand what I'm doing wrong.
source
share