Joao Victor
Joao Victor

Reputation: 1171

Migrating a vb6 project to a vb.net project (MSFlexGrid to datagridview included)

We've been asked to migrate a vb6 project to a vb.net project (.net 3.5 to be more precise).

In this project, we're using the msflexgrid in a bunch of forms, and as far as we know, we have to remake if not all of them, at least 80% of methods and properties in order to make it work.

Is there an easier way to acomplish this? Or we have to sit down and code those methods and properties?

Upvotes: 0

Views: 2403

Answers (1)

Matt Wilko
Matt Wilko

Reputation: 27342

You could add the MSFlexgrid control to a .NET project and use all the same properties and methods. It depends on whether you need something quickly or properly.

See these other questions and answers for more info:

Uprading VB6 MSFlexGrid to VB.NET

VB6 - VS 2005 VB.net - Flexgrid

Best equivalent of MSFlexGrid for VB.NET 2005

Upvotes: 1

Related Questions