Tagged Questions
This tag is for questions about migrating existing applications, or legacy code, from Visual Basic 6 to a more modern platform. Unfortunately migration is usually a tricky task. The most common target platforms are VB.NET and C#.
48
votes
39answers
4k views
Should we select VB.NET or C# when upgrading our legacy applications?
At the company where I work, we have a number of legacy applications written in Visual Basic 6.0. Without casting aspersions on the developers who wrote them, suffice it to say we have decided to ...
45
votes
17answers
8k views
How do you migrate a large app from Visual Basic 6.0 to VB.NET?
My company makes a monolithic piece of software that our customers use to run their car dealerships. The original application was written in Visual Basic 6.0, and it has grown substantially over the ...
24
votes
10answers
787 views
Convincing legacy application VB6 developers to make the switch to C#
I know this question could be similar to others but really I'm looking for reasons why VB6 developers should switch to C#.
My company recently approved project to be written in C#, so we have a lot ...
14
votes
13answers
463 views
How to prevent your code from becoming obsolete?
Some programmers here have been developing a project in VB6, and they say they now need to upgrade to vb.net if they want their apps to run on newer/future systems as vb6 is going to be history soon.
...
13
votes
9answers
831 views
How to migrate ugly and undocumented VB6 Code to .NET
I know that there are already Questions about VB6 migration, but the code base of my project brings some new questions here.
I have to say the Code quality, structure and architecture is just a ...
13
votes
10answers
14k views
How can I convert VB6 code to C#?
Does anyone know a way to convert from VB6 code to C#?
Is there a tool that can do this for me?
11
votes
4answers
382 views
10
votes
2answers
1k views
How do I convert Twips to Pixels in .NET?
I'm working on a migration project in which a database actually stores display sizes in twips.
Since I can't use twips to assign sizes to WPF or Winforms controls, I was wondering if .NET has a ...
7
votes
5answers
434 views
Strategy for converting a VB6 app to .NET
Would it be a good idea to start converting forms into .NET one at a time which you would then invoke from the VB6 app via COM-interop.
This way, by the end of the process you would just convert the ...
7
votes
7answers
608 views
Porting VB6 app to VB.Net: Can anyone ballpark how much effort this is?
In 2002 I did a pretty large VB6 app for a client. It used a lot of UserControls and a 3rd party menu control (for putting icons next to menu names). It had dynamically "splittable" panels, TreeViews ...
7
votes
6answers
1k views
Conversion tool comparisons for visual basic 6.0 [closed]
Has anyone here used either of the following (or any other tool) to convert your vb6 code to a .net language?
Artinsoft's upgrade companion (converts to c# and vb.net)
vbmigration partner ...
6
votes
6answers
607 views
What's the fastest way to convert an existing Vb6.0 win-based application into a c# win-based?
What's the fastest way to convert an existing Vb6.0 win-based application into a c# win-based?
6
votes
6answers
23k views
VB6 migrating to .Net with Visual Studio 2010
Has anyone migrated a VB6 project to .Net with Visual Studio 2010?
I have tested the migration in VS2005, but the resulting .Net code was so messed up, that we decided not to migrate to .Net. So has ...
6
votes
7answers
463 views
Will “Working Effectively with Legacy Code” help someone working with an app ported from VB6 to VB.NET?
I would like to refactor a large legacy application originally written in VB6 and subsequently ported to .NET. In order to do this with confidence, I want to have unit tests around the existing code ...
5
votes
6answers
690 views
Best Strategy for moving from VB6 to .NET
My company has tons of legacy applications that are written in VB6.
We are in transitions from moving VB6 applications to .NET (3.5 specifically).
What would be the best strategy for moving form VB6 ...
4
votes
2answers
57 views
Are array indexes 0-based in VB6?
I'm reviewing an automatic translation of VB6 code to C# and the convertor translated someArray(3) to someArray[3]. But accordingly to the old code documentation it should pick the third element not ...
4
votes
2answers
55 views
Force Modal Form to be Shown in Taskbar
According to MS when you show a modal form in VB6 it does not show in the taskbar 'by design'
But is there any way to make a VB6 Modal form to be shown in the taskbar (the ShowInTaskbar property has ...
4
votes
1answer
108 views
Can I make a function COM Only? (Opposite of <Runtime.InteropServices.ComVisible(False)> )
I have some functions in my VB.NET DLL which I can 'hide' from my VB6 app by using the following:
<Runtime.InteropServices.ComVisible(False)> _
But is there a way to make a function ONLY ...
4
votes
3answers
589 views
Err.Number (VB6 versus C#)
I've used Artinsoft's VB6 to .NET wizard to convert a VB6 application to C# and I'm getting an upgrade warning in any place where Err.Number was previously used;
//UPGRADE_WARNING: (2081) ...
4
votes
3answers
312 views
We have migrated VB6 code to C# in .net
The code was migrated using a third party tool. what ever the tool couldnt do, was done by the .net developers, so that all compile issues were fixed. My question is, for such migration activities, do ...
4
votes
3answers
740 views
PV Function and Porting VB6 to C#
I'm working on porting some classic VB6 code to C# and just stumbled across a usage of the PV function.
I feels wrong including a reference to the Microsoft.VisualBasic Assembly. Is this something ...
4
votes
6answers
2k views
Best Development tools for Upgrading from VB6.0
Im planning to upgrade a large vb6 application to .net. The project uses many third party components eg VSFlexGrid as well as crystal reports. It also uses old VB6 dlls whose source code is ...
3
votes
3answers
77 views
how to print (on printer) table from database using c#
I work on some project that is migrating from vb6 to web (asp.net). I need to print some kind of report - A table from database and number of simple headers with date and time. In vb it was ...
3
votes
2answers
96 views
Convert VB6 app to WPF?
Is it possible to convert a VB6 app to WPF using automated tools?
I'm aware of tools to convert to Winforms, but what about WPF?
Is there a pathway from Winforms to WPF that could be utilised?
3
votes
2answers
102 views
Converting a VB6 module to VB.NET
I'm almost done converting a module from VB6 to VB.NET, but I'm having trouble with the following 2 quotes and am wondering if there's any way to go about this:
Structure AUDINPUTARRAY
...
3
votes
3answers
100 views
Line Input # statement, three lines the same. Will it overwrite the variable each time?
In a program I am migrating from vb6 to VB.net, there are three Line Input# statements, all the same:
Line Input #9, dummy
Line Input #9, dummy
Line Input #9, dummy
Will this just overwrite the ...
3
votes
1answer
59 views
C# DLL cannot affect value of a number passed by reference from a VB6 application
I have a legacy VB6 application that calls a VB6 DLL, and I am trying to port the VB6 DLL to C# without yet touching the main VB6 application code. The old VB6 DLL had one interface that received a ...
3
votes
1answer
330 views
Callback functions: passing callbacks from a C# winform app to a referenced VC++ Exe
Asynchronous Callback Functions
Perspective: I am upgrading several VB6 ActiveX applications to C#.net, which all talk to each other using callback functions which they register with a referenced ...
3
votes
3answers
125 views
vb6 control arrays in .net?
Are control arrays supported in .Net? We are talking about converting a legacy app from VB6 to .Net. The app has a lot of control arrays. I've read different articles that differ if .Net supports ...
3
votes
3answers
3k views
convert vb6 project to .net using VS2010 Express?
I can't seem to convert my vb6 ActiveX dll project (.vbp) to .net using VS2010 Express.
Is there another way?
UPDATE
So now that Microsoft has stopped offering a VB6 migration tool (VS2010). ...
3
votes
2answers
352 views
Multiple constructors in VB6?
Is it possible to have multiple constructors in vb6? The reason I'm asking is because I see the class initialize, but i don't know if I can stick in 0 or more parameters into a constructor or if ...
3
votes
2answers
171 views
What is C# equivalent of VB6's Label.FontName?
VB6's Label controls have a Property FontName, which allows you to set the font like this: lblTitle.FontName = "Arial Bold". Does C# have something similar?
I'm porting a database heavy program from ...
3
votes
1answer
492 views
VB.net Passing a structure to unmanaged dll
I'm migrating some VB6 code to VB.net,
the code contains a structure that contains 1d arrays, 2d arrays, and few other variables.
The general outline of the Vb.net structure is as under
Public ...
3
votes
3answers
241 views
VB.NET Limit to Tab Ordering?
I have inherited a frankenstein VB6 "Converted" to VB.NET winform application. This application has a metric ton of fields in it, the users rightfully complained that the tab order is off (after a ...
3
votes
3answers
250 views
Is there a way to programmatically convert VB6 Formatting strings to .NET Formatting strings?
Does anyone know of a good reference for VB6 format-strings?
Does anyone know of a converter from VB6 formatting strings to .NET strings?
I'm working on porting a large VB6 code base to .NET. It ...
3
votes
1answer
121 views
Property/Method Descriptions for COM Libraries
If you create a COMClass, I've noticed that the values in the XML Summary tag do not show in the object browser of VB6/VBA when you reference the resulting tlb file. Is there a way to have these ...
3
votes
2answers
142 views
Gradually refactoring pieces of a giant, monolithic VB6 winforms app to .Net
In a nutshell, the app looks up an instruction for something to do from a database, performs the action, and saves information about the success or failure of that action back to the database. It ...
3
votes
3answers
1k views
Differences between migrating from vb6 to vb2005, vb2008, vb2010
I own a copy of vb2005 professional.
I need to migrate a vb6 project to vb.net
Is there any difference in terms of effort to migrating to these
editions of vb.net
thanks
3
votes
3answers
228 views
i need tips and advices while migrating code from vb6 to .net with visual studio 2010
i want to migrate one of the application from vb6 to .net with visual studio 2010.At present the application is windows based application. i want to make web application.
i guess i have to rewrite the ...
3
votes
2answers
128 views
Performance of passing data between .Net and COM assemblies
I am in the process of migrating a legacy VB6 app to .Net, however since it is a high-profile business critical application, it is being done piece by piece.
In the interest of improving performance, ...
3
votes
3answers
3k views
Convert vba to vb6 and create a .dll - how to - hints, tipps and risks
I should convert a huge load of code which was written in VBA (Excel) to VB6. But I really do not know what I have to take care of or where to begin. Therefore it would be great to get some hints here ...
3
votes
4answers
231 views
VB6 Migration Advice
I know a lot of question regarding VB6 migration have been asked, but I don't believe my exact situation has been answered in them.
Basically, our company is wanting to migrate our mission-critical ...
3
votes
7answers
973 views
Any tools to aid porting vb6 to vb.net?
I just inherited control of a largish VB6 codebase. It doesnt have much in the way of active X other than the crystal reports engine and MS access work it does. I want to move it to .net before the ...
3
votes
8answers
5k views
What's the simplest .NET equivalent of a VB6 control array?
Maybe I just don't know .NET well enough yet, but I have yet to see a satisfactory way to implement this simple VB6 code easily in .NET (assume this code is on a form with N CommandButtons in array ...
2
votes
4answers
90 views
Does VB.NET offer any performance improvement over VB6 for CPU-bound processes?
I'm working on a mathematical model written in VB6. The amount of CPU time this model is consuming is becoming a concern to some of our customers and the notion has been floated that porting it to ...
2
votes
2answers
73 views
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 plain HTML forms so ...
2
votes
2answers
47 views
Initialising New Label in code - crashes
I'm converting an application from VB6 to VB.NET, and am required to declare and initialise some controls in code (control arrays). I have it declared globally, so other forms can access the data ...
2
votes
0answers
90 views
KeyPress triggers click event when C# modal window is opened by VB6 application
I've created a simple C# dll which is to be called by a VB6 application. It just opens a form modally, nothing else. ShowInTaskbar is set to false.
namespace ComTest{
[ComVisible(true)]
...
2
votes
1answer
63 views
Semicolon tab stop in VB.NET
In VB6, there was a function that moves the print position along to the next tabstop, like so:
Print #1, "Total run time: "; _
Fix(tmpTick / 60000) & " min and " _
...
2
votes
1answer
241 views
Building VB6 Projects in TFS 2010 - correct approach?
I've been fiddling with setting up automated builds for our old VB6 COM components.
I have successfully installed the MSSCCI provider for TFS 2010 and can successfully check in and check out code ...