I have a user that runs a macro and it freezes when it tries to save a workbook to an FTP site. It appears to only happen to a certain user, because I can't duplicate it and other users are able to run the macro without issue (and the computers should be similar, same OS windows7 with excel 2007).
wbCSV is declared as workbook
strPath_FTP points to a valid FTP location
strCBD is the file name, nothing special
is there anything i could try changing/testing to find out why it freezes this users computer and not others? I've step through the code and it definitely hangs on the saveas
thanks for any help.
Code:
wbCSV.SaveAs strPATH_FTP & strCBD & ".csv", FileFormat:=xlCSV, CreateBackup:=False
strPath_FTP points to a valid FTP location
strCBD is the file name, nothing special
is there anything i could try changing/testing to find out why it freezes this users computer and not others? I've step through the code and it definitely hangs on the saveas
thanks for any help.