Vcl.DdeMan.TDdeClientConv.DdeService

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DdeService: string read FDdeService write SetDdeService;

C++

__property System::UnicodeString DdeService = {read=FDdeService, write=SetDdeService};

Properties

Type Visibility Source Unit Parent
property published
Vcl.DdeMan.pas
Vcl.DdeMan.hpp
Vcl.DdeMan TDdeClientConv

Description

Specifies the DDE server application to be linked to a DDE client.

Typically, DdeService is the file name (with path, if necessary) of the DDE server application's main executable file without the .EXE extension, or the project name without the .DPR extension.

For example, to link to a TDdeServerConv component in PROJ1.DPR, set DdeService to PROJ1.

At design time, specify DdeService by typing the DDE server application name in the Object Inspector or by choosing Paste Link in the DDE Info dialog box. To establish a link at run time, specify the service and topic with the SetLink method.

Note: The necessary value for DdeService depends on the individual server application. See the documentation of the DDE server application for specific information about how to specify the server application.

See Also