Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
142 views

Less time consuming : Rewriting or converting an app from VB5 to C#

I've got a contract where I have to continue the development of and old application suite that was programmed in VB5 back in the days. I've bug to fix and new feature to develop. So I have a few ...
3
votes
4answers
270 views

Expression evaluation

I'm doing an expression valuation program, just like this. My problem is that I can't figure out how to handle operation precedences. I used recursion to find the innermost couple of parenthesis and, ...
3
votes
1answer
92 views

How can I write a VB5 app to consume a web service?

I'm working with one legacy application written in VB5, and I need to give it the ability to consume a web service. Anyone know how this can be done? I've heard that it can be done for VB6, but I ...
2
votes
1answer
86 views

Read VB 5.0 binary files with Java

I have a binary file that is created from a program made in Visual Basic 5.0. The file just contains a bunch of Long values from the Visual Basic world. I've understood that Long in Visual Basic 5.0 ...
2
votes
2answers
126 views

How does one distinguish between VB5 and VB6 projects?

I have to maintain a number of minor legacy apps and most of them have no or minimal documentation. There are a couple of these which were written either in VB5 or 6, but I can't tell which. There ...
1
vote
1answer
17 views

What library does ObjectContext come from in VB5?

First of all, let me myself make the obligatory snarky comment about having to maintain VB5 code: yes, it's pitiful, but can we please just cut to the chase? Thanks. I am having to revisit some VERY ...
1
vote
2answers
70 views

How can I improve my Classic VBA coding using SQL? I'm making a mess with loops.

Well... I am a n00b, I know that. And this is pretty straight foward. Basically this is the code I've been writing. rstSwift.MoveFirst Do While Not rstSwift.EOF If Left(rstSwift!Date, 2) & ...
1
vote
2answers
132 views

C# COM Component works with VB6, but not VB5 — What's Up With This?

In an earlier question I was attempting to get a C# class functioning as a COM object for VB5 & 6. I did manage to get the COM object working with a VB6 app, but have had a problem getting it ...
1
vote
1answer
42 views

VB5 Application Conversion

I have a VB5 application written in a foreign language (italian). It uses an access DB which is also in italian. How can I convert this to english? I am possible going to port this to .NET, but ...
0
votes
1answer
16 views

Which library does DBCombo come from?

I'm having some compatibility issues with a legacy VB5 program I inherited. Specifically, the DBCombo control. Where does this control come from? I think it might be from the Microsoft DAO Object ...
0
votes
1answer
19 views

Upgrade Software from VisualBasic 5 to 8

I've given a VisualBasic Software, written in VB5. Now the whole thing should run under Windows 7, so it needs to be converted to VB8 or VB9. It seems that most of the API of VB changed a lot in these ...
0
votes
3answers
44 views

How can I use the database commands 'Seek' and results 'NoMatch'?

Here's my problem: Let's say I have these tables: table1 1 - "a" 2 - "b" table2 1 - 2 - 3 - Now, I'm using the following code to compare the tables: table2.MoveFirst Do While Not ...
0
votes
0answers
35 views

How to get IP address

In VB5, how do I get the IP address of the user? There is a property called remotehostIP, and it looks like this might be the way, but I do not know how to use it! Thanks.
0
votes
2answers
65 views

Mixing VB5 and C# in a Windows Form application

I'd like to add a window to my application. Is it possible to "extend" an old vb5 project using C#? Is it easy to do and maintain and is it a good practice ? If not, what are the alternatives?
0
votes
1answer
666 views

Making .NET assembly COM-visible and working for VB5

I have an assembly which I have managed to make visible to VB6 and it works, but having a problem accomplishing the same thing with VB5. For VB6, I have built the assembly, made it COM-visible, ...
0
votes
1answer
158 views

how to pass a null value to a rdoQuery.rdoParameter in VisualBasic 5

I have a visual basic 5 project, using Microsfot Remote Data Object 2.0 I have the following code: Set ps = grdoCon.CreateQuery("Resolucion_ValidaCorrelatividad", SQL) ps(0).Direction = ...
0
votes
3answers
121 views

Is it possible to create an instance of a class in VB from a string containing the class's definition?

Is it possible to create an instance of a class in VB 5 CCE from a string containing the class's definition? Um... I'm actually using VB 5 CCE because I'm too cheap to get a version that costs money. ...