本文介绍了无法打开.dsp文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将.dsp转换为vc2010中的.daa文件mfc

我有.exe文件将.dsp文件转换为.daa文件

我想打电话在我的应用程序中并传递.txt文件(MS-DOS),其中包含.dsp文件列表

我使用shellexecute调用.exe文件(将convert.dsp转换为daa)并通过那个文本文件

我在按钮点击事件上调用了lib然后它要求我传递文件,其中包含.dsp文件列表

每当我输入文件名时(列表。 txt)它给出消息无法打开.dsp文件来读取标题



ShellExecute(NULL,(打开),(C:\\ \\\dspTOdaa.exe),C:\\List.txt,NULL,SW_SHOWNORMAL);

我知道为什么收到此消息?



谢谢。

I want to convert .dsp to .daa files in vc2010 mfc
I have .exe file which converts .dsp files to .daa files
I want to call that in my application and pass the .txt file (MS-DOS) which has a list of .dsp files
I have used shellexecute to call .exe file(which convert.dsp to daa )and passed that text file
I called.exe on button clicked event then it asked for me to pass file which has a list of .dsp files
whenever I entered filename (List.txt)it gives message that "can not open the .dsp file to read the header"

ShellExecute(NULL,("open"), ("C:\\dspTOdaa.exe"),"C:\\List.txt",NULL,SW_SHOWNORMAL);
any idea why i got this message?

Thank you.

推荐答案


这篇关于无法打开.dsp文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-29 22:40