Serving the Quantitative Finance Community

 
User avatar
DominicConnor
Topic Author
Posts: 41
Joined: July 14th, 2002, 3:00 am

Visual Studio Tools For Office

February 18th, 2008, 10:04 am

Does anyone here use VSTO in real work ? I don't have a query, it's just that I don't know anyone personally who uses VSTO in a bank.
Last edited by DominicConnor on February 17th, 2008, 11:00 pm, edited 1 time in total.
 
User avatar
DominicConnor
Topic Author
Posts: 41
Joined: July 14th, 2002, 3:00 am

Visual Studio Tools For Office

February 20th, 2008, 10:19 am

Is that a "no", then.
 
User avatar
untwigged
Posts: 2
Joined: January 14th, 2006, 3:21 pm

Visual Studio Tools For Office

February 21st, 2008, 12:09 pm

They are pushing it quite hard - free downloads as opposed to the previous (paid for) version. I've never heard of anywhere using it yet though.I'm not sure it's the best tool for the financial market. One one side .net will be rather over the top for your average VBA spreadsheet type; on the other it's not as powerful as a custom application - you get more flexibility from developing your own application than integrating with office.
 
User avatar
patch22
Posts: 0
Joined: May 9th, 2002, 7:50 am

Visual Studio Tools For Office

February 21st, 2008, 12:35 pm

On the occasions that I've seen people look at it, they instead took the route of writing .net assemblies enabled for automation, and had excel use those through vba wrappers. I guess because it's the more understood way of doing things.
Last edited by patch22 on February 20th, 2008, 11:00 pm, edited 1 time in total.
 
User avatar
martinlukerbrown
Posts: 0
Joined: July 3rd, 2006, 7:51 pm

Visual Studio Tools For Office

February 21st, 2008, 2:59 pm

Yes, I've used vsto.1) Ok if you want to use Excel 2007's new GUI.2) Most developers want an add-in in an xll flavour. So they usually go with using an XLL to .net wrapper technology. I've not seen a native C++ XLL for some time with most of my companies clients. The current SDK for producing .net UDF (In VSTO) within Excel takes to much code compared (it's a real bag of spanners) with the XLL/.net approach, so why bother and VSTO has less functionality. 3) I find the templates for producing installers a bit to prescriptive in VSTO, but that can be worked around.I suspect when Excel 2007 makes more in roads VSTO use will pick up for producing GUI front ends to Excel add-ins.M
 
User avatar
AndyNguyen
Posts: 0
Joined: December 10th, 2007, 4:08 am

Visual Studio Tools For Office

February 22nd, 2008, 3:12 am

I used it at work.C# with vsto for Excel 2007 in VS 2008.Yeah, they push the new ribbon GUI really hard. I find more use for my time working in stand alone application than to try to learn how to create fancy ribbon, writing menu xml in vsto.Give it a few more years and maybe they can convince me to revisit it.
 
User avatar
gatechfe08
Posts: 0
Joined: January 25th, 2008, 4:31 pm

Visual Studio Tools For Office

March 8th, 2008, 3:35 pm

how do u incorporate a customised function in C++.. into MS excel through dll/xll??? i have tried everthng... doesnot work though... please help me out....tried using sample codes on net... still does not work...
 
User avatar
IronGater
Posts: 0
Joined: October 24th, 2002, 4:41 pm

Visual Studio Tools For Office

March 18th, 2008, 10:21 pm

try using a VBA wrapper function. So Excel calls -> VBA wrapper function, which calls a customized function in a compiled dll file.