18
votes
22answers
1k views
Your favorite Visual Basic 6 tools and tips
This is somewhat related to a similar post, but that post was Visual Studio 6 in general and a lot of the suggestions didn't apply to VB6.
Suggest or vote for tools/tips. Please one tool/tip per post …
13
votes
6answers
759 views
Difference between Visual Basic and VBA
What is the difference between the two. I always thought VBA is somewhat 'crippled' version of VB, but when a friend asked me the other day I had no idea what the actual differences are.
Also, when …
7
votes
19answers
359 views
What is allowed in Visual Basic that’s prohibited in C# (or vice versa)?
This is code-related as in what the compiler will allow you to do in one language, but not allow you to do in another language (e.g. optional parameters in VB don't exist in C#).
Please provide a …
7
votes
8answers
605 views
How do you explain to a sales person that programming is really difficult and takes time.
I often work with sales and marketing types that cannot figure out how to use Excel, let alone understand the scope of their requests from a technical perspective. Of course, it would not be fair to …
5
votes
4answers
590 views
Microsoft Patch 958369 MS08-070 broke my VB6 App (Type Mismatch - dynamically created control)
We upgraded our machines with a microsoft patch listed above and are now having issues with some winsock controls. While moving on to the new component library there were two issues that we faced:
…
4
votes
11answers
290 views
Should BASIC continue to be recommended for non-programmers and beginners?
I just came across a new BASIC implementation for Google Android application called Simple. You can read about it here:
http://google-opensource.blogspot.com/2009/07/programming-made-simple.html
…
4
votes
4answers
322 views
Why does VB have more LINQ keywords than C#?
Why does VB have more LINQ keywords than C#?
4
votes
8answers
854 views
What does DIM stand for in Visual Basic and BASIC?
What does DIM stand for in Visual Basic?
4
votes
5answers
3k views
How do I save each sheet in an Excel workbook to separate CSV files with a macro?
Title says it all.
I have an excel with multiple sheets. And I was looking for a macro that will save each sheet to a separate CSV (comma separated file). Excel will not allow you to save all sheets …
3
votes
10answers
256 views
Pros and Cons of VB & VBA?
On another programming related website, I saw this line in someone's signature. This is NOT the first time I've seen such sentiments, although this is the harshest:
"People who work in VB or any …
3
votes
1answer
141 views
VB6 Implements & events
I have an older VB6 project that I'm trying to add unit tests for. I was breaking dependencies in classes by mocking objects. Everything was going great until I found some dependencies that were …
3
votes
11answers
247 views
What happened to VB 2.0?
My son asked if there was an easy language to pick up and do some foundational programming with. I thought QuickBasic at first, but then thought I should just show him VB.
I downloaded Visual Basic …
3
votes
4answers
3k views
Creating a Serial Port in code in VB.net
Hi,
I am trying to create a serial port in VB.net using code only. Because I am creating a class library I cannot use the built-in component. I have tried instantiating a new SeialPort() object, but …
3
votes
3answers
256 views
VisualBasic Month function inconsistency
I'm working in a web application using VB.NET. There is also VisualBasic code mixed in it, in particular the Date variable and the Month function of VB.
The problem is this part:
Month("10/01/2008")
…
3
votes
4answers
755 views
How to associate all textbox controls on a form with the same event handler
VB 2008.
I have several text boxes on a form and I want each of them to use the same event handler. I know how to manually wire each one up to the handler, but I'm looking for a more generic way so …
