I have created a simple batch file that will allow a user to enter a folder name and then it will export all of the file names into a txt file. the code looks like this:
@echo OFf
c:
set /p name=What is the name of the folder:
cd C:\Documents and Settings\user\Desktop\%name%
dir /s /b >C:\filenames.txt
I am using FMPA 11 and am trying to use Send DDE Execute to run this batch file. Anyone know what I enter into the following fields?
Service Name:
Topic:
Commands:
I am happy to move the commands out of the batch file and into file maker but the topic and commands have me stumped. I continually receive an error code of 3. " Command is unavailable (for example, wrong operating system, wrong mode, etc.) "
Thanks.