_Application.DDEExecute(Int32, String) 方法

定义

通过指定的 DDE(即动态数据交换)通道,向应用程序发送一条或一组命令。

public:
 void DDEExecute(int Channel, System::String ^ Command);
public void DDEExecute (int Channel, string Command);
abstract member DDEExecute : int * string -> unit
Public Sub DDEExecute (Channel As Integer, Command As String)

参数

Channel
Int32

必需 整数。 方法返回的 DDEInitiate(String, String) 通道号。

Command
String

必需的 字符串 。 由接收应用程序(DDE 服务器)识别的一条或一组命令。 如果接收应用程序不能执行指定的命令,则会出现错误。

注解

动态数据交换 (DDE) 是一种比较陈旧的技术并且不是十分安全。 如果可能,请使用更安全的 DDE 替代方法。

适用于