Has anyone tried to feed an EFS DDE opbject to any of the newer versions of office? On my older version of excel, it works perfectly (for me), but when I load up the feeder efs files (DDE Feeder) and try it with his newer version of Excel - nothing. No connection or change in price data.
Has anyone had any success linking the DDE opject to the newest excel?? If so, do you have to create a new excel connection?
Sorry, not real versed with the newer excel. Look for the trick.
B
Has anyone had any success linking the DDE opject to the newest excel?? If so, do you have to create a new excel connection?
Sorry, not real versed with the newer excel. Look for the trick.
B
PHP Code:
/*
Example: This file will create a single dde object called "DDE1". You should be able to access this value by typing the following into any cell in MS excel.
=eSignal|EFS!DDE1
*/
var dde1obj = new DDEOutput("DDE1");
function main() {
dde1obj.set( close( 0, sym(getSymbol()+", D") ) );
}
Comment