13
votes
6answers
804 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 …
10
votes
2answers
1k views
How to structure VB.NET windows forms applications
What is the best way to structure a VB.NET windows forms application so that code can be reused and the app can be extended easily.
I used to create lots of new forms. This lead to lots of repeated …
10
votes
13answers
2k views
How do I enable Edit and Continue on a 64-bit application and VB2008 Express?
When I try to do that I get the following error:
Changes to 64-bit applications are not allowed.
9
votes
17answers
694 views
ASP.NET - Common Gotchas
When I am working with ASP.NET, I find that there are always unexpected things I run into that take forever to debug. I figure that having a consolidated list of these would be great for those "weird …
8
votes
6answers
173 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
2answers
444 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?
7
votes
17answers
1k 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
706 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 …
6
votes
8answers
316 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 …
6
votes
11answers
641 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
5answers
255 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
5answers
379 views
Using VB for Artificial Intelligence
Do you think VB is a good language for AI? I originally did AI using mainly Lisp and C/C++ when performance was needed, but recently have been doing some VB programming.
VB has the following …
5
votes
11answers
859 views
How to make mockup screenshots without VB
I am looking for a program to make mockup screenshots with. I first found out I could do it with Visual Basic (uglier names I have yet to hear a programming language being called) from …
5
votes
20answers
1k 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?
4
votes
1answer
59 views
Is it possible that C# has problems calling VB6 methods that have optional parameters?
I added 3 optional boolean parameters to a method found within a VB6 DLL. The class that houses it is MultiUse (public), and the method itself is Private. The class implements a specific interface …
