Search found 3 matches

by Tedow
Fri Jan 06, 2006 4:16 pm
Forum: General discussion
Topic: FileSaveAs in a macro not capturing all files?
Replies: 7
Views: 24259

Jackpot, that did the trick. Thanks Dave.
by Tedow
Tue Jan 03, 2006 10:44 am
Forum: General discussion
Topic: FileSaveAs in a macro not capturing all files?
Replies: 7
Views: 24259

1) Okay, my filename/path length is only 110 characters, so that's not the problem.

2) None of the filenames include + or @. There are parentheses, but those are the only "special" characters.

3) I tried running the macro with a Pause in between the FileSaveAs() and FileClose() commands, but that ...
by Tedow
Thu Dec 29, 2005 4:52 pm
Forum: General discussion
Topic: FileSaveAs in a macro not capturing all files?
Replies: 7
Views: 24259

FileSaveAs in a macro not capturing all files?

I'm attempting to save every .grf file in a directory as a JPG file. The macro I'm using looks like this:

ForFilesIn("C:\blahblahblah\*.grf")
FileSaveAs("JPEG Picture", ".jpg")
FileClose()
NextFile

In this particular case I have 50 files I'm trying to operate on. The problem: even though the ...