1-10 of 38 hubssort by Hot Best Latest
How to Create A For Next Loop in Excel VBA
For those of you who are interested in becoming an Excel guru, (or simply showing off) knowing how to construct loops in Excel VBA can be extremely useful. However, you should understand some basic concepts...
0 commentsPersonal Finance and Excel VBA 2007
I'm passionate to make my life easier. I'm always try to find out how to take control of my stuff easier. MS Excel is a wonderful tool I use not only for work, but also for Home stuff. I like to control my...
0 commentsEnter Data in an Excel UserForm
To make it easier for users to enter data in a workbook, you can create a UserForm. It requires some programming, and the steps are clearly shown in the following short videos. In this...
0 commentsMS Access Format Function
In Access, the Format function takes an expression and returns it as a formatted string. The syntax for the Format function is: Format ( expression, [ format ] ) expression is the value to format. format...
1 commentExport MS Access objects to secured database
Option Compare DatabaseOption Base 1Public Function ExportForms(p_strListForms As String, Optional p_strDestinationMDB As String) Dim strDestinationMDB As String Dim strListForms As String Dim...
0 commentsMS Access Tips: Maximize MS Access Window
Call this function in autoexec macro for example: Function AccessMaximize() AccessMaximize = ShowWindow(GetAccesshWnd(), SW_MAXIMIZE) End Function where GetAccesshWnd is defined by: Function...
0 commentsMS Access Conditional Formatting
Public Function HighLightForeignKeys(argFieldName As String, _ ArgFieldValue As Integer) Dim FormatCondition As String Dim CodeReception As Integer CodeReception = ArgCodeReception 'FormatCondition =...
1 commentUse DSN-Less Connection (MS Access / SQL SERVER)
You can open a connection to a database without creating or specifying a named data source. Connections made in this way are called "DSN-less", because they don't require the system administrator to create...
0 commentsCurrentDb Method (MS Access)
According to this article from Microsoft, CurrentDB should be used instead of DBEngine.Workspaces(0).Databases(0). But we encountered some cases where CurrentDB is really slow so that...
0 commentsBind MS Access forms to ADO recordsets
This article was previously published under Q281998Advanced: Requires expert coding, interoperability, and multiuser skills. This article applies to a Microsoft Access database (.mdb) and to a ...
0 comments




