Retrieves a series item from a DDE conversation whenever the item changes. The DDE channel number is managed internally.
|
"app", "topic", "item") |
|
"app|topic!item", "server", autostart, startmode, datatype, overwrite, autoscale) |
"app" |
- |
A string, the application name. |
||||||||||||||||||||||||||||||||||||||||
"topic" |
- |
Optional. A string, the topic name. |
||||||||||||||||||||||||||||||||||||||||
"item" |
- |
Optional. A string, the item name. |
||||||||||||||||||||||||||||||||||||||||
"server" |
- |
Optional. A string, the name of server executable. |
||||||||||||||||||||||||||||||||||||||||
autostart |
- |
Optional. An integer, start DDE server flag:
|
||||||||||||||||||||||||||||||||||||||||
startmode |
- |
Optional. An integer, start DDE server flag:
|
||||||||||||||||||||||||||||||||||||||||
datatype |
- |
Optional. An integer or name specifying the type of data to retrieve. Defaults to 0, ASCII. The following are valid data types:
|
||||||||||||||||||||||||||||||||||||||||
overwrite |
- |
Optional. An integer, the overwrite pervious data mode:
|
||||||||||||||||||||||||||||||||||||||||
autoscale |
- |
Optional. An integer, the plot autoscale mode:
|
A series representing the value of the item requested.
ddelink("Excel", "Sheet1", "R1C1:R100C1")
establishes a DDE conversation with Excel, returns the value of the cells in row 1, column 1 through row 100 column 1 as a series in the current window. Whenever a cell changes, the new series is appended to the existing series.
Use DDEUNLINK to terminate a DDELINK operation. The "app", optional "topic" and optional "item" strings can also be placed in one string of the following Syntax: "app|topic!item". For example:
ddelink("Excel|Sheet1!R1C1:R100C1")
DDELINK combines DDEINIT and DDEADVISE into one function. See DDEINIT and DDEADVISE for a discussion of the optional arguments.