Tagged Questions

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 ...
15
votes
12answers
1k views

.NET 2.0 or 3.5?

Our clients use a vb6 version of our software. We are upgrading them to a .NET application written in C#... Is there less bulk using .net 2.0 than .net 3.5? My definition of less bulk would be: ...
14
votes
8answers
1k views

Reg Free Com with VB6 on Windows 7

I have some .NET code I use from VB6 code. I have always developed this on an XP machine by creating a VB6.exe.manifest file that listed the dependent .NET assemblies. For example, say my 2 .NET ...
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 ...
11
votes
11answers
367 views

Is this the “one in ten” time to rewrite?

I'm very much against rewriting an application if it can be avoided. I understand the rule that 9 times out of 10, it's better to refactor, but I'm in a situation where it might be the one time in ...
8
votes
1answer
248 views

Did VB 6/.NET interop recently get broken by a Windows update?

Recently a VB 6 application using .NET 1.1/2.0 components stopped working on my companies XP machines. The IT department was installing Windows patches at the time, so I'm wondering if anyone has ...
7
votes
4answers
148 views

VB6~C# Com Question

I am trying to mimic an old vb6 dll with a new .net one. The mimicry has to be perfect so that that callers don't know they are using a new .dll. I have a curiousness though. In VB6 it has the ...
7
votes
3answers
1k views

Are there any good TDD tools or resources for VB6?

Yea i know i'm way behind times but what i've got here is a antique VB6 editor app which i believe that no one will be upgrading to .NET soon. It uses a couple of third party DLLs tools and as it's ...
7
votes
16answers
2k views

What's so bad about VB.NET? [closed]

Having spent time on Reddit and (gasp) Digg, I hear a lot of trash-talk on .NET and MS products, and a lot of interesting talk about other languages. As a (second gasp) Project Manager at a small ...
6
votes
3answers
911 views

How to determine if DLL is COM or .NET?

i have an updater program, the pulled files from server has mixed vb6 dll and .net dll in one directory. how to determine if a dll is a COM one? (so i can invoke regsvr32 to it from the updater ...
5
votes
1answer
108 views

Need to communicate fast and often between two .NET processes

So I have the following setup: a VB6 Application using a .NET dll on the one hand a .NET Service on the other end The VB6 application uses a small interface dll to communicate to our new ...
5
votes
6answers
414 views

What is the difference between VB and VB.NET?

What is the difference between VB and VB.NET? explanation with examples preferred thank u (using visual studio 2008)
5
votes
3answers
141 views

VB6 with a .NET Library

I have an application written in VB6, and I need to use a library written in .NET. Is there any way to use the library on my application? Thanks
5
votes
1answer
494 views

Which collection interface should I use in .NET for COM-interop?

That is a followup from my previous question, but you don't need to read it to understand that one. I'm designing an interface in .NET that would be consumed from COM applications (mainly VB6, but ...
5
votes
4answers
180 views

VB6's private static in C#?

In VB6 there are local static variables that keep their values after the exit of procedure. It's like using public vars but on local block. For example: sub count() static x as integer x = x + 1 end ...
5
votes
6answers
151 views

C# Object Declarations

Are there any overheads to using the following sytax: Form1 myForm = new Form1(); myForm.Show(); As opposed to: Form1 myForm; myForm = new Form1(); myForm.Show(); When I was learning VB6, I was ...
5
votes
3answers
399 views

VB6 authored ocx on a .NET WinForm?

I've inherited a VB6 project that has a Form with VB controls (Label, etc) and Windows Common controls (Treeview, ImageList, etc), which looks like an ideal candidate for a usercontrol. I mentioned ...
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 ...
5
votes
6answers
1k views

VB runtime functions in VB.NET for VB6 programmers

I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform. My primary concern is to teach my students the best practices for developing in .NET, ...
4
votes
4answers
71 views

Pass data between VB6 app and .Net app

I need to pass data between a vb6 app and a .net app. This data will either be written or read every second. It is about 30 fields. Both apps reside on the same machine. I am currently passing ...
4
votes
2answers
278 views

Registering a .NET dll for use in VB6 application

I have a DLL I wrote in C# which I want to use in my VB6 application. In VS2008 the project property "Register for COM interop" is checked, and when I compile the DLL and try to use it on my ...
4
votes
7answers
236 views

.NET and VB6: is Interop a viable development strategy?

Is Interop between VB6 and .NET a viable development strategy? I am working on a VB6 app that interops with some .NET assemblies, but the combination of 'cold-start' and other cohesion problems makes ...
4
votes
5answers
349 views

get; set; syntax in C#

In C#, I can have a property without having the need to declare a private variable. My VB6 code that looked like this 'local variable(s) to hold property value(s) Private mvarPhoneNumber As String ...
4
votes
1answer
100 views

Profiling a .net library

I'm referencing a class in a .net library in VB6 and need to profile it. Is there a profiler that can be pointed at a .net library dll? The memory issues I wish to profile only happens when used in ...
4
votes
5answers
857 views

Using MSMQ - System.Messaging versus WCF

I have to port a VB 6.0 app to VB.Net (Framework 3.5). The application uses MSMQ heavily. I'm trying to figure out what are the advantages of using WCF over good ole System.Messaging. Are there any ...
4
votes
5answers
1k views

How do I use Reg-Free COM for a vb6 dll reference in a .net project?

I've been trying to solve this issue for a long time, and nothing seems to work. I have a COM DLL written in vb6. I add a reference to this DLL in .net, with the 'isolated' and 'copy local' ...
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 ...
4
votes
10answers
825 views

Picking up a VB6 project for a non-VB6 guy

I have been given the task of modifying a VB6 project. Nothing incredibly serious, adding a couple forms and fixing a few bugs for the most part. The project uses SQL Server (if that is of any ...
4
votes
1answer
628 views

Compare memory footprint of .Net and VB6 applications

I've been trying to compare the memory footprint between a VB6 application and .Net application. Trying to determine what's the average difference between the two. The .Net code is for the most part ...
4
votes
2answers
975 views

.NET Interop: Using an assembly in the current directory

I'm trying to use a .NET assembly from VB6 via interop without placing it in the GAC and without using the /codebase argument for regasm.exe. From what I understand, when I run regasm.exe on a .NET ...
3
votes
2answers
94 views

Pass VB6 object to .NET object via interop?

I have a VB6 app that shows a .NET DLL form via interop. I would like an event in the .NET DLL to cause a form in the VB6 app to be shown. My idea is to have the VB6 app pass a reference to a form ...
3
votes
2answers
67 views

Lost VB6 source code; is it possible to override methods in another object?

I know a company that lost its source code to a VB6 DLL that exposes COM. Is it possible to wrap, or orverride properties, methods, etc of this object to be more modern? What technology should I ...
3
votes
1answer
98 views

Webservice call from .net class called from VB6

Im using VB6 in a project and I've some .Net dlls to handle document transfers. In one of these dlls im calling a webservice to retrieve my documents. This code works if only run as .net project, ...
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
2answers
318 views

Using .net dll in vb6 dll

I wrote a dll in vb.net that calls a web service, consumes the data returned then passes results back to the calling program. I originally wrote in in VS 2008, on windows 7 (x64). Tested it in a vb 6 ...
3
votes
1answer
228 views

parsing VB6 code in .NET

I have a WPF project written in C#, and in order to get some information about an external dependency, I need to parse a VB6 script. The script's location changes and its content changes some, but ...
3
votes
2answers
456 views

Issues with COM Interop and .NET 3.5 - different behaviors in Debug and Release mode

We have been troubleshooting the following and are looking for some fresh ideas or angles of attack. First scenario: We have an ASP.NET web application - .NET 3.5, C#, built targeting x86 - running ...
3
votes
1answer
757 views

How do I pass an Array (By Reference, in VB6) to a C\C++ *.dll subroutine?

I need to pass an empty Array of Variants to a DLL written in C (and available on all Windows versions), and the C code (which I have no control over and cannot edit) will populate the Empty Array of ...
3
votes
3answers
307 views

VB6 ActiveX Controls in a C#/ASP.NET Based Website

We have a website that is based on C# and ASP.NET, I have a barcode scanner with a .dll file to control it that I can get to work in VB6. Before I dig deeper in exactly how to do this I wanted a quick ...
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
9answers
165 views

Creating non-existent database tables in code

Up to this point my company has had an aversion to databases and has stuck to storing all data in comma-separated files. I have run into a unique customer application that - I believe - would benefit ...
3
votes
2answers
132 views

Releasing .NET objects from VB6 code

On .NET Rocks! Show 561, Carl and Richard talked about releasing unmanaged objects instantiated in managed code. If you have to release a COM object that's instantiated in managed .NET code, you have ...
3
votes
2answers
92 views

Does a .NET Framework installation interfere with existing VB6 runtime or COM installations?

Consider this situation: There's a critical VB6 desktop application running on a production box. There is a possibility of installing a .NET application that queries the same DB that the VB6 ...
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
306 views

possible to hide browser and control it programmatically ? .net or vb6

basically using autoit, what happens is that IE windows pops up, and autoit clicks on stuff, and can control it and so on. what i'd like is a way to hide the browser and still let autoit do it's ...
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
766 views

Trace not working in a .NET DLL loaded from VB6 EXE

I have a .NET DLL that writes to the Trace. But seems that when I call my DLL from a VB6 EXE the trace is not working. I have created an myApp.config file in the EXE folder with the trace ...
3
votes
1answer
281 views

Convert an Icon to IPicture in .NET 4.0?

One of the standard and (somewhat) supported answers was to use Support.IconToIPicture from the Microsoft.VisualBasic.Compatibility assembly. However, in .NET 4.0, "This API is now obsolete". Yes, ...
3
votes
2answers
102 views

Calling .Net Classes from Visual Basic 6

We have a .Net DLL. We need to call this DLL from a VB Application. What are the procedures we need to follow?

1 2 3 4 5