Tagged Questions

The Visual Basic programming language. Please use a more specific tag if you can, such as [vb6], [vba] or [vb.net]

learn more… | top users | synonyms

13
votes
5answers
1k views

Writing code with issues for a technical interview [closed]

It's well known that developers have to read and understand code more than write it. So one of my standard interview questions is to give the candidate 10 lines of code and ask the following: ...
12
votes
25answers
4k views

What 3rd Party Controls are .Net Developers using

I am re-evaluating my 3rd party controls. I currently use the Infragistic suite for ASP.Net and WinForms. What controls do you use and would you recommend them?
11
votes
12answers
6k views

VB.NET vs. C#.NET?

The company I work for has all of its legacy ("legacy" being used rather liberally in this context) code in VB.NET. They have about 6000+ lines of VB.NET code, so all of the developers are comfortable ...
11
votes
20answers
583 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 ...
10
votes
1answer
123 views

Different mathematical results from Java than from Visual Basic?

When I run the following Visual Basic code : Dim b As Double b = (2 ^ 16 - 1) * Math.Sqrt(Math.Sqrt((a / (2 ^ 8 - 1)))) (Assuming a is a double whose value is 15.0) The result I get for b is about ...
10
votes
6answers
517 views

Why are interfaces used so prolifically in .NET apps?

Recently I began working on a largish mainstream project to deliver a public-facing e-commerce platform for a client I cannot reveal. I'm working with seasoned developers with many years experience ...
10
votes
3answers
3k views

Visual Studio Async CTP - How does it work?

Microsoft announced the Visual Studio Async CTP today (October 28, 2010) that introduces the async and await keywords into C#/VB for asynchronous method execution. First I thought that the compiler ...
10
votes
7answers
29k views

How to import mdb to sql server

I have a vb application. Now I have developed that same vb application in Asp.net. In vb I had used MSAccess database. In asp.net I am using Sql server. Now I want to Move or copy the MSaccess ...
9
votes
2answers
655 views

C# - are all Enum constants?

Are all Enum enumerations constants? Do they get converted to their value at compile-time, or at run-time?
8
votes
7answers
319 views

Is VB's Dim the same as C#'s var?

This is a small doubt: On VB, I can declare variables using Dim. In C#, I can declare then using var. I'm more familiar with the intricacies of C#, and I know that var uses type inference to determine ...
8
votes
6answers
309 views

Which Error Handling Model Is More Robust?

I'm kind of torn between these two error-handling models: Create a boolean Error and a string ErrorMessage property for your object. Catch all exceptions internally in the object's methods and pass ...
8
votes
9answers
1k 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 ...
8
votes
8answers
384 views

Is it true I should not do “long running” things in a property accessor?

And if so, why? and what constitutes "long running"? Doing magic in a property accessor seems like my prerogative as a class designer. I always thought that is why the designers of C# put those ...
8
votes
5answers
3k views

How can you force VB6 to use the DLLs and OCXs from the app directory?

I want to put my dependent files in the app directory. I seem to remember that you can force VB6 to use the files in the local directory only. Any hints?
7
votes
4answers
289 views

Python clean way to wrap individual statements in a try except block

I'm currently doing some python automation of excel with com. It's fully functional, and does what I want, but I've discovered something surprising. Sometimes, some of the excel commands I use will ...
7
votes
6answers
761 views

.NET Throwing Custom Exceptions

Can anyone shed some light on the pros and cons of throwing custom exceptions (which inherit from System.Exception), or the proper way to use them? I'm already aware of the when/when not to throw ...
7
votes
20answers
686 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 ...
7
votes
4answers
2k views

Tool for analyzing VB6 source code (like Understand from SciTools)

Does anyone know of a tool to analyze/navigate VB6 source code like the tool from scitools? http://www.scitools.com/products/understand/
7
votes
7answers
3k views

Visual Basic 6.0 Language Syntax

I've done a fair bit of googling, but I've been unable to find what I'm looking for. I am looking for documentation of the syntax to the Visual Basic 6.0 language. Specifically something that could ...
7
votes
6answers
5k views

How to view the assembly behind the code? (MSVC++ If Relevent)

I was reading another question pertaining the efficiency of two lines of code, and the (asker?, questioner?, querier?) said that he looked at the assembly behind the code and both lines were identical ...
7
votes
8answers
689 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 ...
7
votes
18answers
2k views

Which .NET programming language should I learn as a web developer?

I'm a web developer who is still 'stuck' in the classic asp world. I want to step up to .NET but I am unsure of which language to learn - most likely out of VB or C#. Are there any compelling ...
7
votes
9answers
1k views

Mathematical analysis of a sound sample (as an array of numbers)

I need to find the frequency of a sample, stored (in vb) as an array of byte. Sample is a sine wave, known frequency, so I can check), but the numbers are a bit odd, and my maths-foo is weak. Full ...
7
votes
2answers
1k views

Best SVN Client Ignore Pattern for VB.NET Solutions?

What SVN Ignore Pattern should TortoiseSVN have for a VB.NET solution?
6
votes
1answer
380 views

How to get Print Job Status using C#

I went through many Link1 Links for checking Job Status in C#.I am able to Print a document but I did not get how to get back its status? I actually want to get confirmation from the printer whether ...
6
votes
1answer
258 views

Do I need to dispose of a Task?

I am having fun working with System.Threading.Tasks. Many of the code samples I see, however, look something like so: Dim lcTask = Task.Factory.StartNew(Sub() DoSomeWork()) Dim lcTaskLong = ...
6
votes
1answer
214 views

C# equivalent of VB DLL function declaration (InternetSetOption)?

What is the C# equivalent of this VB code? Private Declare Auto Function InternetSetOption Lib "wininet.dll" (ByVal hInternet As IntPtr, ByVal dwOption As Integer, ByVal lpBuffer As IntPtr, ByVal ...
6
votes
2answers
127 views

VB6 - Is there any performance benefit gained by using fixed-width strings in VB6?

In pre-.NET Visual Basic, a programmer could declare a string to be a certain width. For example, I know that a social-security number (in the US) is always eleven characters. So, I can declare a ...
6
votes
4answers
1k views

How do I integrate UAC into my VB6 program?

I need some code that will add the admin rights icon to command buttons and display the prompt when such buttons are clicked. How can I do this in VB6? Some actions require admin rights because they ...
6
votes
5answers
502 views

Are .OCA files necessary for program execution?

In the system32 directory I saw an .OCX file with a corresponding .OCA file. I had thought .OCA files are used only by Visual Basic. Are they therefore unnecessary for program execution and could be ...
6
votes
12answers
564 views

How to deal with someone's ugly code gently?

I've recently been given the task of finishing an incomplete project for my University. It'll count as credit for one Class so I'll shave a month off of my studies! Here's the thing. The that was ...
6
votes
7answers
100 views

a quick overview on access

Hey I am a university student (math major), but programming since I was little (read: 14). I am starting a new programming job tomorrow at a very big company. However I just found out that I might ...
6
votes
6answers
1k views

How to keep an old VB6 application running in Windows Vista and Windows 7?

I have an old VB6 app which I'm still trying to support. A few users have reported weird crashes when running the app in Vista or Windows 7. The log files don't show anything after one of these ...
6
votes
4answers
1k views

Should I use Call keyword in VB/VBA?

I use the Call keyword used when calling subs in VB/VBA. I know it's optional, but is it better to use it or leave it off? I've always thought it was more explicit, but maybe it's just noise. Also, ...
6
votes
2answers
193 views

Grouping using LINQ

I'm having a heck of a time with transforming a simple SQL Query into a LINQ query(using vb btw) Here is my SQL: SELECT USRDEFND5 FROM int_gp_employee GROUP BY USRDEFND5 The xml looks ...
6
votes
4answers
552 views

What is best couple for developing small and fast GUI application with some graphical editor features - C++ and (VB or Win32)?

It has to make some time consuming calculations, so i need it to work as fast as possible. Also thought about Delphi. So. Is it a question of taste(or habit) or not and what can you advice me then? ...
6
votes
3answers
2k views

What is the difference between VB and VBScript

What is the difference between VB and VBScript?
6
votes
5answers
8k views

User Defined Type (UDT) As Parameter In Public Sub In Class Module.Visual Basic 6

I've tried to solve this problem, but can't find any solution. I have a UDT defined in a normal module, and wanted to use it as parameter in a Public Sub in a Class module. I then get a compile error: ...
6
votes
4answers
1k 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: ...
6
votes
11answers
1k views

Best way to make it so an exe can only be run once

I've got a Visual Basic App that tends to get severely messed up if the installation runs more than once. It seems the occasionally client mistakes the installer for the shortcut to it later on down ...
6
votes
4answers
2k 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 ...
6
votes
3answers
7k views

Write VB6 on Visual Studio 2008 without .NET support?

I have to continue to support VB6 applications. I've got both VB6 (Visual Studio 6) installed and Visual Studio 2008 as well. Can I read and write to VB6 projects while in Visual Studio 2008? ...
6
votes
5answers
2k views

Tool to calculate # of lines of code in code behind and aspx files?

Looking for a tool to calculate the # of lines of code in an asp.net (vb.net) application. The tricky part is that it needs to figure out the inline code in aspx files also. So it will be lines of ...
6
votes
5answers
422 views

Is there a lang-vb or lang-basic option for prettify.js from Google?

Visual Basic code does not render correctly with prettify.js from Google. on Stack Overflow: Partial Public Class WebForm1 Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender ...
5
votes
3answers
117 views

Making a .NET application the only program which can run?

What would be the best way to make a Windows .NET application be the only program that can be used on a computer? I have come across timers or events to switch windows back to a window with matching ...
5
votes
1answer
118 views

How to use IsNumeric method in MonoDevelop by using Microsoft.VisualBasic reference?

What I am trying to do is to check whether the float input is a number or not. I am being asked to do so by using IsNumeric() method. The problem is that I am using MonoDevelop and I can't figure out ...
5
votes
1answer
73 views

determining which numbers in an array equal a specific sum

I am presenting this question as a general math problem. I am going to tag it with Visual Basic, as the solution would likely be implemented in a spreadsheet. I have a list of shipments with the ...
5
votes
1answer
132 views

Lines of Code limit in VB6

We have a legacy VB6 application that is very procedural. This thing is gigantic! My boss thinks that there is a 65000 lines of code limit in the editor of VB6 however, I could not find any ...
5
votes
2answers
197 views

c# to vb: the **default** keyword? [closed]

Possible Duplicate: Default value for generics Ok so while translating some code from c# to vb, i came across the default keyword, and I'm simply replacing it to nothing. I'm wondering if ...
5
votes
3answers
625 views

asp.net: Iterating over multiple repeater.items collections

I have a number of idential repeaters, and I need to iterate through all of the items. I currently have: For Each item In rpt1.Items ...do some stuff Next For Each item In rpt2.Items ...

1 2 3 4 5 67