The rtd tag has no wiki summary.
0
votes
0answers
61 views
ZeroMQ -> Excel RTD server .. Is it that difficult?
I am just starting with zeromq. I've got various platforms / languages all talking to each other nicely now and I must admit - it does a really good job.
The last piece of the jigsaw I'd like to do ...
1
vote
0answers
31 views
What is the correct way to handle an unknown topic in a RTD server written in C++?
I'm writing an RTD server for Excel in C++. I've implemented my server and for the most part it works. The issue I have is when a cell has a call to RTD with a topic which isn't valid. For instance, I ...
0
votes
0answers
71 views
Excel UDF in XLL RTD edit causes formula to lose correct topic
I am building XLL + RTD in the same dll. The RTD is not called directly from Excel but through
wrapper formula. Similar to sample here Custom Functions in Excel: Part V, XLL-RTDs
The functionality ...
0
votes
1answer
53 views
Is it possible to use the same RTDServer in multiple excel instances
I have a C# RTDServer that works well in one instance of excel. It is defined as follows:
[Guid("1D50EF28-A1BE-4BE9-9214-46A48085ADFF")]
[ProgId("Acme.RtdServer")]
public class RTDServer : IRtdServer
...
1
vote
0answers
30 views
How to show rectangle around each segments..and measure x and y coordinates of image
I want to count no. of segments in rtd images and have to draw rectangle around each of object .Also i have to measure x and y coordinates in c#
0
votes
1answer
47 views
EXCEL application updating event
Most of the cells in my worksheet receives RTD data once per second and a lot of calculations are done when the data is refreshed. It's becoming really slow. If I set Application.ScreenUpdating to ...
1
vote
0answers
101 views
Macro run on RTD updates
My problem is as follows:
I am running a real-time data server with a count-down from 900 to 0. Once the countdown hits 5 i want excel to copy range(B2 to B61) in sheet(RTD_NEWS) and paste it into a ...
0
votes
0answers
191 views
Value does not fall within the expected range - calling a COM method in c#
I am invoking an RTD server's ConnectData method from c# and I get the "Value does not fall within the expected range" exception. The parameters I am passing to ConnectData method are the same ...
0
votes
0answers
142 views
Excel write real time data to csv file
I have an excel spreadsheet that receives RTD every second in iterations and each iteration takes 6 mins. I want to save all this data and output them to an .csv file. What is the best way to do it? I ...
1
vote
1answer
110 views
Java to Excel - dynamic updates
I need to display some dynamic data - an array of constantly updating values - from a java server onto an excel sheet. I have been looking at xlloop but this seems to be more a request/reply ...
0
votes
0answers
132 views
nodejs library for excel dde and excel RTD protocol
We are trying to download real time data from stock trading terminal. Terminal provides data in excel DDE or excel RTD protocol. We want to write utility in nodejs. We want to write nodejs client for ...
0
votes
1answer
53 views
IRtdServer.RefreshData and format cell
Can RefreshData function send Excel cell format information. I want excel to show arrows in his cells and I want RTD server to inform him which arrow to show.
0
votes
1answer
136 views
add Excel RTD Server project type in visual studio
I will like to create something similar to: http://www.add-in-express.com/docs/net-excel-rtd-servers.php
When I open visual studio I do not have that project type even though I am running it as an ...
0
votes
0answers
95 views
Excel RTD from an RDP Remote App
I have an application that calculates real time data and serves as an RTD for Excel.
Can I host my application with RDP (Microsoft Remote Application) and still get data from the Application Server to ...
1
vote
1answer
120 views
Accessing Microsoft Excel RTD Server from javascript?
Are there any javascript libraries for accessing MS Excel RTD server? I would like to retrieve realtime data from a RTD server from javascript and display it in browser. I don't want to do it on the ...
-1
votes
1answer
117 views
How do I autoformat excel cells that contains both strings and numbers?
I have written an RTD server that I wrap in a UDF - both in C# which looks like this:
public object MyUDF(string ItemID, string TopicName)
{
return _xlApp.WorksheetFunction.RTD("my_rtdserver", ...
0
votes
0answers
119 views
Excel UDF & RTD UDF refresh issue
I have a Excel UDF (not RTD UDF) say MyUDF which reference a cell A1,
another RTD UDF say MyRTDUDF which also reference the same cell A1,
MyUDF calls a web service to get data back
When the value ...
0
votes
1answer
372 views
C# COM client (RTD)
I'm working with a real time data server (a trading terminal) that has a COM interface for ticker updates.
From Excel, I'm able to subscribe to the ticker updates using this -
...
0
votes
0answers
132 views
RTD Console Application
I have an RTD server that will run in debug mode (Visual Studio 2010, VB.NET) and when Excel launches, the RTD server starts - great.
My problem though is the following, I need to make this ...
0
votes
1answer
253 views
Module Function in Excel Returns #VALUE
I have an RTD server that I am using to send data to and from Excel. I am trying to make it easier on the user by building a few simple functions in a Module in Excel's VBA to allow for them to grab ...
0
votes
1answer
107 views
Excel Freezes With RTD Call
So, this used to never happen before and now it is doing it every single time.
The RTD server is off now for testing purposes and there is nothing that the Excel really has to do but spit out #N/A. ...
0
votes
0answers
243 views
RTD Server : how to read RTD server data in C#
I have developed an application to read data from excel spreadsheet which get data from RTD server. So whenever spreadsheet get updated I can write that data to database using C#.
But my concern is ...
0
votes
0answers
100 views
Worksheet.Calculate not retriggering call to RTD server. C#
I am trying to trigger calls to the addTopic method of my RTD server by using the worksheet.calculate method. However the RTD server is not getting hit. I need resend all topics to the RTD server as ...
1
vote
1answer
286 views
RTD Server C#: Getting “N/A” in deployment
I have created Excel RTD Server, after all implementation completion in debug mode, I am able to run RTD and it is working fine. But when I get the dll in release mode and take it to another system, ...
0
votes
0answers
169 views
UpdateNotify method with RTD server not returning
I have implemented an RTD server in c#
Its working fine in 2003 but when I use Excel 2007 the cell values stop updating after while.
Here is my logic for refreshdata and update notify
I have used ...
0
votes
0answers
50 views
COMETD re-connect?
My Excel RTD addin uses AddIn-Express RTD, COMETD.NET, it works fine usually.
but when network conneciton is lost, after conneciton is restored, it fails to work.
RTD will show handshaking forever ...
0
votes
0answers
241 views
Reading calculated data from a formula cell with formula RTD in Excel 2007 form Java application
I am trying to evaluate the cell value of a formula cell [Formula being RTD] in Excel 2007 from my Java code. I have used HSSFFormulaEvaluator class and evaluate() method, the standard way in short. ...
0
votes
2answers
367 views
what is default throttle value for Excel 2010
I see from http://msdn.microsoft.com/en-us/library/aa140060(v=office.10).aspx
that data throttle value for Excel 2002 is 2 seconds. but I can't find the default value for Excel 2003, 2007 & 2010. ...
0
votes
1answer
632 views
.NET RTD/COM Excel Interop errors on one user's machine?
We built a .NET COM/Excel RTD Server (.NET Assembly) which has been in use for many years, on a variety of machines (i.e. we know it works, and our standard method for installing it works). We have a ...
4
votes
2answers
593 views
Excel RTD server in Python not updating data
I've got the excelRTDserver.py up and running in Excel 2010 (32bit) by changing the EXCEL_TLB_MINOR value to 7. I can see the server in the add-ins list and if I enter ...
0
votes
0answers
160 views
Excel RTD-Formatting C++ or C#?
I have a plain C++ object that generates high frequency updates which I would like to rapidly deliver to excel (08-10++) cells/workbooks. I have looked at XLL's, RTD's and the Excel C API and am ...
0
votes
2answers
593 views
Excel Add-in not show up in 64 bit Excel (Add-In Express)
I have an Excel add-in (COM AddIn, XLL, RTD) , created with C#, VS2010, Add-In Express 2010, I install it on a PC with win 64 bit + Excel 2010 64 bit without error, but it does not show up at all. ...
0
votes
1answer
440 views
RTD Client with 3rd party RTD Server : C#
I am trying to connect custom RTD client, written in C# with 3rd party RTD server.
Type rtd;
Object rtdServer = null;
rtd = Type.GetTypeFromProgID("ProgId","WS001");
rtdServer = ...
0
votes
0answers
334 views
Excel RTD server deployment
I am trying to develop a RTD server similiar to this example in C#. The RTD server requires another .NET dll which uses a native C-dll. The .NET dll calls the native C dll via Interop.
So far I have ...
0
votes
1answer
405 views
c# client to connect to rtd server (comfyJ)
I am trying to connect to an RTD server which passed data from JAVA application (through ComfyJ, a Java-COM bridge)
Basically, I am looking for some sample code which contains the basic structure of ...
0
votes
1answer
236 views
Add-in Express RTD refresh issue
Excel AddIn using Add-In express, VS2010, cometd.net talks to cometd server and Tom cat
In RTDInitialize event handler, I log in Tom Cat and connect to cometd server, I use an instance of class ...
0
votes
2answers
364 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 ...
3
votes
0answers
787 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.
...
0
votes
1answer
258 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:
...
1
vote
1answer
354 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
2answers
3k 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 ...
2
votes
1answer
3k 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... ...
1
vote
1answer
1k 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)
...
10
votes
1answer
4k 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
1answer
975 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
1answer
275 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
1k 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
1k 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
2k 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 ...
1
vote
2answers
2k 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 ...