Question

Save macro files

  • 13 May 2024
  • 3 replies
  • 30 views

Dear all,

 

I have a macro code and works fine but couldn’t save the text files. Here is part of macro code that I am using the commands to save the data.

……

……

…...

fileNameHMF$ = folderPath$ + "hmf"+ index1Str$+".txt"

UPDATE ALL
 PAUSE THREADS

Gettextfile fileNameHMF$, "Hmf", settingFile1$, 1

CONVERTFILEFORMAT fileNameHMF$ ,1

 

I used to work on this macro code on another desktop. However, when I switched to other desktop the macro code runs but doesn’t save the txet files. Please anyone have an idea!


3 replies

Userlevel 3
Badge +1

Did you update the folderPath$ when switching to the new desktop? Maybe you are trying to save to a local folder that does not exist on this machine? 

Yes @Sean Turner,  but still doesn’t save the text data

 

Best,

Userlevel 7
Badge +3

My best guess is that your new machine doesn’t have permissions to write to that folder. I’d write a macro that just prints ‘Hello World’ to a text file and make sure that runs OK with the file location specified. - Mark

Reply