TDdeClientConv의 메소드중에서
SetLink(Service: string; Topic: string): Boolean; 와
RequestData(const Item: string): PChar; 에
Service,Topic,Item에 대한 자료가 어디 있는지요??
Help에 보면 전부
See the documentation of the DDE server application for specific
information about ...라고 나와 있는데
도대체 문서가 어디에 있는지 찾지를 못하겠네요.
알고 있으면 가르쳐 주세요. 급하거든요..
> TDdeClientConv의 메소드중에서
>
> SetLink(Service: string; Topic: string): Boolean; 와
>
> RequestData(const Item: string): PChar; 에
>
> Service,Topic,Item에 대한 자료가 어디 있는지요??
>
> Help에 보면 전부
>
> See the documentation of the DDE server application for specific
>
> information about ...라고 나와 있는데
>
> 도대체 문서가 어디에 있는지 찾지를 못하겠네요.
>
> 알고 있으면 가르쳐 주세요. 급하거든요..
델파이 버전이 얼마인지는 알 수 없지만 색인에서 TDdeClientConv를 찾으면
Help가 나오죠 그중 method 를 찾아 보시면
setlink를 클릭하시면 아래와 같이 나타납니다.
참고로 Service,Topic 는 DdeClientConv Component property의 설정 값입니다.
DDE를 사용하실 때는 철자하나도 중요하니 property설정에 주의가 필요합니다.
궁금하신 점이나 Sample이 필요하시면 멜을 주세요....
능력이되는한 최대한 도와 드리겠습니다.
==========================================================================
Specifies the service and topic of a DDE conversation and attempts to open the link if ConnectMode is ddeAutomatic.
function SetLink(Service: string; Topic: string): Boolean;
Description
Call SetLink to fully specify a DDE conversation. If ConnectMode is ddeManual, calling SetLink is equivalent to setting the DdeTopic and DdeService properties, and clearing all data from any associated TDdeClientItem objects. If ConnectMode is ddeAutomatic, SetLink opens the link to the DDE server as well.
The Service and Topic parameters specify the values for the DdeTopic and DdeService properties, respectively.