13
votes
6answers
758 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 …
9
votes
8answers
847 views
Best way to test a MS Access application?
With the code, forms and data inside the same database I am wondering what are the best practices to design a suite of tests for a Microsoft Access application (say for Access 2007).
One of the main …
8
votes
8answers
135 views
Building SQL strings in Access/VBA
Occasionally, I have had to build a SQL string in VBA and execute it with Docmd.RunSql(). I have always built these strings by concatenating variables into the string, e.g:
Dim mysqlstring as String
…
7
votes
5answers
162 views
Finding similar sounding text in VBA
My manager tells me that there is a way to evaluate names that are spelled differently but sound similar in the way they are pronounced. Ideally, we want to be able to evaluate a user-entered search …
7
votes
9answers
472 views
Hidden features of VBA
Which features of the VBA language are either poorly documented, or simply not often used?
7
votes
20answers
716 views
How do I convince a manager we need bug tracking software?
Good day all, I'm the "lead developer" for a major Excel based application that handles the production of a few mine sites. It talks to a bunch of databases, tries its best to help out users, and …
7
votes
2answers
4k views
VBA array sort function?
I'm looking for a decent sort implementation for arrays in VBA. A Quicksort would be preferred. Or any other sort algorithm other than bubble or merge would suffice.
Please note that this is to work …
6
votes
3answers
2k views
Does VBA have Dictionary structure?
Hi.
Does VBA have dictionary structure? Like key<>value array?
6
votes
12answers
774 views
How can I convert a decimal to a fraction ?
How do I convert a indefinite decimal (i.e. .333333333...) to a string fraction representation (i.e. "1/3"). I am using VBA and the following is the code I used (i get an overflow error at the line …
6
votes
4answers
4k views
How can I send an HTTP POST request to a server from Excel using VBA?
What VBA code is required to peform an HTTP POST from an Excel spreadsheet?
Accepted Answer Note: For greater control over the HTTP request you can use "WinHttp.WinHttpRequest.5.1" in place of …
6
votes
3answers
2k views
Password hash function for Excel VBA
I need a function written in Excel VBA that will hash passwords using a standard algorithm such as SHA-1. Something with a simple interface like:
Public Function CreateHash(Value As String) As …
6
votes
2answers
1k views
Word Automation: Write RTF text without going through clipboard
I am trying to replace the current selection in Word (2003/2007) by some RTF string stored in a variable.
Here is the current code:
Clipboard.SetText(strRTFString, TextDataFormat.Rtf)
…
5
votes
11answers
427 views
What’s wrong with output parameters?
Both in SQL and C#, I've never really liked output parameters. I never passed parameters ByRef in VB6, either. Something about counting on side effects to get something done just bothers me.
I know …
5
votes
9answers
262 views
VB Using colons to put two statements on same line
Is it considered bad practice to use colons to put two statements on the same line?
5
votes
2answers
652 views
How Add a COM-Exposed .NET Project to the VB6 (or VBA) References Dialog?
I have created a .NET assembly that is exposed to COM according to the exceptional article Build and Deploy a .NET COM Assembly by Phil Wilson.
And everything works fine in the sense that the .NET …
