I am using Excel 2003 and the built-in IDE for programming VBA, but a lot of things bug me. Obviously, the built-in nature of the VBA IDE is a big plus. Is there a (free?) alternative out there?
|
Do you need to code in VBA? You can code in C#. Here's a post from Joel's Software Discuss board.
Maybe you should check out Office Development with Visual Studio. |
|||
|
|
|
+1 Bernie for .NET + VSTO. However writing code against the Excel object model in C# gets really old really fast, because in C# named arguments are not supported, and some Excel methods take a crazy argument list of 20-30 parameters, so the code looks like
I think when it comes to Excel .NET development VB.NET is the way to go, especially if you're not that familiar with the object model, you can record VBA in Excel and easily convert it to VB.NET, instead of poring through the lackluster documentation. @OP, There isn't much in the way of VBE replacement. For more powerful text editing you can of course use your favorite text editor, but then you lose Intellisense and live syntax checking, so it's a big trade-off. |
|||
|
|
|
Where I work we tried VSTO but it forces you to distribute assemblies, and your users will no longer be able to edit your macro's. Then it has this misguided focus on security making everything hard. To top it all off, we were not able to target multiple office versions. I'd stick to VBA, at least if you wanna get stuff done this year. Yeah, I know it's january :) |
|||||||||
|
|
Excel's VBA IDE leaves a lot to be desired, for sure, but you should say what bugs you. There are few utilities out there that help. Google Smart Indenter and MZ-Tools to name two. |
|||
|
|