DADiSP Worksheet Functions > Function Categories > Dynamic Data Exchange (DDE) > DDEGETDATA
Retrieves a series item from a DDE conversation.
DDEGETDATA(chan, datatype, "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:
|
||||||||||||||||||||||||||||||||||||||||
"item" |
- |
A string, the item to retrieve. |
A series representing the value of the requested item.
chan = ddeinit("Excel", "Sheet1")
ddegetdata(chan, "R1C1:R100C1")
ddeterm(CHAN)
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 and then terminates the conversation.
DDEGETDATA always returns a series. Use DDEREQUEST to obtain a string.