Hi I have the following problem: Based on a running FTN-program, I would like to start another program, which uses an input file. Thus the code is something like
call cissue@('path\calling_program path\input_file',ifail)
Then the calling_program reads the input_file using: input = cmnam() and runs. This works perfect in all cases where no blank character is in the path or name. Nowadays it is common use to make very long pathes (no problem) but also certain blanks are in the path and this leads to problems! Up to know I'm able to have blanks for the program with 'path\calling_program'. But this(' ') does not work for the input_file. The program stops because the name of the input file is only the part up to the first blank. Do somebody have an idea for a solution. Regards Werner