ADO Recordset data not showing on form
I've got a frustrating issue on MS Access 2010 that I would at this stage qualify as a bug. And after having tried all…
81 expert-verified Q&A posts in this category, sourced from the top-voted answers on Stack Overflow.
I've got a frustrating issue on MS Access 2010 that I would at this stage qualify as a bug. And after having tried all…
I'm using Microsoft Scripting Runtime (FSO) to parse folders and produce a list of all of its contents, the folders are on a network…
I was converting a VBA macro to C#. And in VBA chr(7) can simply be concatenated to a string as if chr() would yield…
I am trying to find a way of compiling the code in VBA on workbook open. I can do this manually by opening the…
I'm fairly new to VBA, and I can't find an easy way to test if any of the specified variables equal a specified value.…
I'm trying to save a file from https password protected site using WinHTTP. Here's the code: Sub SaveFileFromURL() Dim FileNum As Long Dim FileData()…
In VBA, what's the most straight forward way to test if a string begins with a substring? Java has startsWith. Is there a VBA…
I have the following code: Sub AddSources() Dim pubPage As Page Dim pubShape As Shape Dim hprlink As Hyperlink Dim origAddress() As String Dim…
Sometimes a certain bit of code will raise an error in an expected way, and it's most convenient to handle it locally rather than…
I have to manage a workflow involving R-scripts and VBA-code. I would like to run the process in R (where most of my code…