Skript file: /~heha/BETA/matdde32.zip/DDEINIT.M

%DDEINIT Initiate DDE conversation.
%	DDEINIT requires two arguments: a service or application name and a 
%	topic for that service.  The function returns a channel handle, which 
%	is used with other MATLAB DDE functions.
%
%	channel = DDEINIT(service,topic)
%
%	channel	Channel assigned to the conversation, now a readable number.
%		Zero if failure. Note that network DDE always returns a non-zero
%		number; for that, use '\\computername\NDDE$' for service
%		and the server-side given share name as topic.
%	service	String specifying the service or application name
%	        for the conversation.
%	topic   String specifying the topic for the conversation.
%
%	For example,
%	Initiate a conversation with Microsoft Excel
%	for the spreadsheet 'forecast.xls'
%	channel = ddeinit('excel','forecast.xls');
%
%       See also DDETERM, DDEEXEC, DDEREQ, DDEPOKE, DDEADV, DDEUNADV.

%       Copyright (c) 2001 TU Chemnitz-Zwickau
Detected encoding: ASCII (7 bit)2