I’m trying to run VBA developed in Windows to work in Mac. This particular section is supposed to create document but I’m not entirely sure. Can anyone please let me know what this section does?
thisFileName = "Mactintosh HD:Library:FUPLOAD_TEMP:" & sFileName & ".txt"
Open thisFileName For Append As #1
Print #1, sText
Close #1
MsgBox (thisFileName)
New contributor
Ellis Purwanto is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1