DADiSP Worksheet Functions > Function Categories > Dynamic Data Exchange (DDE) > DDEADVISE
Automatically retrieves a series item from a DDE conversation whenever the item changes.
DDEADVISE(chan, datatype, overwrite, autoscale, "item")
chan |
- |
An integer, the DDE channel number returned by DDEINITIATE. |
||||||||||||||||||||||||||||||||||||||||
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:
|
||||||||||||||||||||||||||||||||||||||||
"item" |
- |
A string, the item to retrieve. |
A series representing the value of the item requested.
chan = ddeinit("Excel", "Sheet1")
ddeadvise(chan, "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.
If overwrite is set to 1, the new data overwrites the existing data. If autoscale is set to 0, the window scales do not automatically adjust to fit the range of the new data.
Use DDEUNADVISE to terminate a DDEADVISE operation.
DDEADVISE uses an explicit DDE channel number.
DDELINK is similar to DDEADVISE but the channel number is managed internally.