Skip to content Skip to sidebar Skip to footer

Need To Convert Vb 6 Forms To Html Forms

We have developed a standalone application using visual basic 6. Now we are changing the standalone application to web application. Is there any way to convert VB6 forms into pla

Solution 1:

Don't even think about "converting". It's not just a "conversion" process. The entire paradigm is different between web applications and desktop applications. They're just totally different.

ASP.NET web forms try to make the differences less apparent. However, the differences are still there, and are still huge.

What you should do is separate your business logic from your forms logic in your VB6 application. You will then be more easily able to convert the business logic into .NET business logic. You'll still need to create equivalent forms, but the logic will be the same.

Solution 2:

You cannot simply convert VB6 form to html, there is some website which provides this conversion.. but this will increase your work more

refer - VB to HTML convertor

Post a Comment for "Need To Convert Vb 6 Forms To Html Forms"