|
Win32::DDE - Perl extension for Win32 DDE
|
Win32::DDE - Perl extension for Win32 DDE
This module is not included with the standard ActivePerl distribution. It is available as a separate download using PPM.
use Win32::DDE;
if ($Client->Error == Win32::DDE::DMLERR_NO_CONV_ESTABLISHED) {
die "Hey! start the silly DDE server!";
}
print Win32::DDE::ErrorText ($Client->Error);
This module is mostly the interface to the .xs that actually does the
low level interface to the DDEML, and the namespace to look up the DDEML
XTYP_* and DMLERR_* constants. It's mostly useless by itself.
The only added value here is the Win32::DDE::ErrorText function.
See the Win32::DDE::Client manpage for the useful stuff.
- ErrorText (CODE)
-
Return the printable name of a DDEML error code (i.e. 'DMLERR_FOOBAR').
Doug Wegscheid, wegscd@whirlpool.com
the Win32::DDE::Client manpage
|
Win32::DDE - Perl extension for Win32 DDE
|
|