調用exe文件時,怎樣傳參數?(100分)

  • 主题发起人 主题发起人 dialog1
  • 开始时间 开始时间
D

dialog1

Unregistered / Unconfirmed
GUEST, unregistred user!
如:在一個exe1.exe中有一個AdoConnection,另一個exe2.exe中有一個AdoDataSet,<br>怎樣將exe1.exe中的AdoConnection傳給exe2.exe的AdoDataSet.connection<br>
 
好像不行吧!
 
这个问题好强啊!<br>你到borland的新闻组去问问吧!<br>或者通过通过DDE把exe1的AdoConnection的ConnectString传给exe2的AdoDataSet,<br>直接用……
 
在程序初始化时用paramstr(0)传递参数,具体请参考windowsapi
 
不行的。<br>不过可以使用COM方式。或使用如下结构(相当于插件方式)。<br>&nbsp; application<br>&nbsp; applicationService-----提供数据库连接接口<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -----其他的公共服务借口。<br>&nbsp; subsystem(*.DLL or *.Bpl)---使用applicationService
 
你怎么可能把一个进程的ADO连接转接到另一个进程呢?<br>你可以使用变通的方法,三层结构,这样,不同的程序均可使用同一个<br>ADO连接了。。。
 
不好意思,应该是paramstr(1)
 
同意yanghaijun,使用三层结构。
 
多人接受答案了。
 
后退
顶部