>>>>> "Tim" == Tim Roberts <[EMAIL PROTECTED]> writes:
>> Can anyone tell me why I'm getting this error message? Tim> Yes, I can. You are trying to open a file name with a tab Tim> character in it. That is, your file name is C colon tab E S T Tim> dot M P P. Tim> Use a.FileOpen( "C:\\test.mpp" ) or a.FileOpen( "C:/test.mpp" ) or a.FileOpen (r"C:\test.mpp"). I like raw strings when dealing with DOS style filenames. That way I don't have to double the backslashes and I don't have to remember whether forward slashes are supported in that particular spot. paul _______________________________________________ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32