Possible Duplicate:
Is it possible to convert VBA to C#?

Suppose I have a big VBA project and want to convert it to a .NET language. Is there any way to do it automatically? Or maybe could I generate UML and a class structure, then append method bodies by hand?

link|improve this question

71% accept rate
1  
No, not possible. – Uwe Keim Nov 22 '11 at 14:46
1  
Probably more effective use of time recoding the bits of VBA into a new project. Keep things simple by sticking with VB .Net, but you'll find yourself replacing the ugly parts often enough to justify recoding. – William Stearns Nov 22 '11 at 14:51
Sorry, this is access forms project and I want any tool (preferably free) to convert it to a .net (C# or VB, doesn't matter) project. I'd also appreciate any ideas on generating UML from VBA. – idm Nov 22 '11 at 15:04
feedback

closed as exact duplicate by Justin, James Hill, Jan, Justin Ethier, NikiC Nov 22 '11 at 16:15

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

I don't think there's a provided way to migrate VBA to .NET, but there are conversion tools online that might help as a syntactical reference for parts of the code. This approach will be cumbersome, but it might still be easier than doing it all by hand.

Here's an article that discusses migrating VBA to VB.NET:
http://msdn.microsoft.com/en-us/library/aa192490%28v=office.11%29.aspx

Converters

Here's a VB.NET to C# converter:
http://www.developerfusion.com/tools/convert/vb-to-csharp/

And here's another one:
http://converter.telerik.com/

I don't know how helpful the converters will be since they're designed to convert .NET languages to other .NET languages, but seeing as how VBA and VB.NET do share some similarities, you might be able to use the converter for some of the code.

link|improve this answer
@JamesHill: Presumably because the first link is VBA to VB.NET, so it'd be VBA->VB.NET->C# – George Duckett Nov 22 '11 at 14:54
@JamesHill: I didn't say that they were the solution. I just said that they be useful for parts of the migration. – James Johnson Nov 22 '11 at 14:57
@JamesJohnson, understood. – James Hill Nov 22 '11 at 15:02
There are vb6->C# converters out there. We used one at my former company. – mydogisbox Nov 22 '11 at 15:03
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.