Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
1k views

How do I create a real-time Excel automation add-in in C# using RtdServer?

I was tasked with writing a real-time Excel automation add-in in C# using RtdServer for work. I relied heavily on the knowledge that I came across in Stack Overflow. I have decide to express my ...
1
vote
0answers
133 views

Excel RTD Server Development in C++

I want to write an excel RTD server in C++ but have not yet had any luck finding and complete tutorials on how to do so aside from this http://weblogs.asp.net/kennykerr/archive/2008/12/02/Rtd5.aspx. ...
1
vote
1answer
554 views

How do I create an Excel automation add-in in C# that wraps an RTD function?

I have a working RtdServer-based automation add-in: HOWTO: Create a real-time Excel automation add-in in C# using RtdServer. Creating a VBA wrapper is trivial: Function RtdWrapper(start) ...
1
vote
1answer
506 views

Exception when calling RTD server from Excel

I wrote a VSTO Excel addin using Visual Studio 2010 and after having managed to work around most of the obstacles Microsoft throws into the path of the righteous developer, I finally have to admit ...
1
vote
2answers
1k views

RTD - making the sample COM DLL into a COM exe

I'm planning on making my existing application into an RTD server. The application is currently written in C++ and while I will eventually port it to C#/Mono I want to be able to add the RTD ...
0
votes
0answers
20 views

Creating a user defined function for a RTD Server in C++

I currently have a RTD server implemented in C++. What I would like to do now is try and implement a user defined function that would just have to pass in the parameters needed without the user's ...
0
votes
0answers
20 views

Having trouble creating a registry resource script for an RTDServer

I am trying to create a RTDServer following Kenny Kerr's tutorial and I'm having a bit of trouble trying to understand how he is creating his resource scripts. The tutorial can be found here. He ...
0
votes
2answers
85 views

alternative spreadsheet for real time data

I am looking for an alternative spreadsheet to Excel, preferably but not necessarily open source, that allows a programmer to create a plugin that can update cells in the sheet from an external data ...
0
votes
0answers
75 views

Excel calling C# RTD server using IDispatch - can I use registration free activation for the server?

I have an Excel RTD server implemented in C#. It works fine when I register the server using regasm. When trying to use registration free activation using config and manifests I get #N/A for the RTD ...
0
votes
0answers
71 views

Implementing standalone RealTimeData (RTD) server using C#

We have a trading system that uses Excel RTD to obtain market data. Now we are trying to automate the system and instead develop a single application. Is it possible to implement Excel RTD ...
0
votes
0answers
65 views

.NET/COM Exception with IRTDUpdateEvent

We built an RTD Server assembly which has been in wide use for several years. (It was built with VS 2008, .NET 3.5 Target Runtime.) Today a user reported getting the following Exception: ...
0
votes
1answer
117 views

IronPython Excel RTDServer

How do you build a Excel RTDServer in Python/IronPython. (IE I want to implement the IRTDServer interface in Python/IronPython. So I can push data into Excel in real time from Python/IronPython) I ...
0
votes
1answer
820 views

What does “Microsoft Office Excel is waiting for another application to complete an OLE action.” mean?

I have a working RTD Excel automation add-in similar to the one described here. Intermittently, while attempting to load a sheet that includes this formula I get the following error: Microsoft ...
0
votes
0answers
114 views

Excel RTD Server: multiple books in same instance

We have a local DLL acting as our RTD server. If we open up 2 books within the same instance (very important fact about the error) we notice there is an issue when we have the exact same RTD formula ...
0
votes
1answer
417 views

How do I enable an Excel Automation Add-in through the registry?

I have an Excel Automation Add-in that is registered with COM by my installer. By registering with COM, my add-in appears in the (for Excel 2007) Excel Options > Add-Ins > Manage Excel Add-Ins Go... ...
0
votes
0answers
136 views

How do I translate my Excel RTD call to use the following C# code

My Excel code is: RTD("mlrtd.rtdfunctions",,"Price",TIDM,"P High") The open source RTD client is here: http://andrewsheppard.wordpress.com/2010/10/23/a-real-time-data-rtd-server-written-in-c/ I ...
0
votes
1answer
149 views

How to pool all RTD calls at excel startup?

I have an RTD server that gets the values from a realtime source. The problem is that the users have pretty large excel sheets close to 20,000 RTD formulas. So when the user opens the sheet, all the ...
0
votes
3answers
563 views

Write and Read the same xml file with C# (RTD server for excel)

I'm developing an add in for excel in C# which include an RTD server. Because we do not have an sql database yet, I must use a XML file to store the data. The XML file is updated via a C# function ...
0
votes
1answer
650 views

Excel RTD COM server - Cannot cast UpdateEvent (class) to IRTDUpdateEvent (interface)

This issue is related to a blog post by Kenny Kerr on "Excel RTD Servers: C# Interfaces", which can be found here, that should allow you to build an Excel RTD server without including a reference to ...
0
votes
3answers
907 views

Excel RTD (Real Time Data) client other than Excel?

I have been looking all over, and couldn't find any example for an RTD CLIENT (many RTD server samples, though). My goal is to 'pull' data from an RTD server into my application for algo-trading ...