1-10 of 38 hubssort by Hot Best Latest

84

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 comments    technology events cells
Transaction Form Enter73

Personal 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 comments    personal finance excel macros
Inventory Data Entry Form79

Enter 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 comments    data entry excel userform
msaccessmemento profile image67

MS 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 comment    ms access ms access function format function
msaccessmemento profile image60

Export 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 comments    ms access vba copyobject
msaccessmemento profile image64

MS 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 comments    business programming office
msaccessmemento profile image63

MS Access Conditional Formatting

Public Function HighLightForeignKeys(argFieldName As String, _ ArgFieldValue As Integer) Dim FormatCondition As String Dim CodeReception As Integer CodeReception = ArgCodeReception 'FormatCondition =...

1 comment    ms access vba ms access vba
msaccessmemento profile image57

Use 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 comments    programming database sql server
msaccessmemento profile image67

CurrentDb 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 comments    ms access ms access vba
msaccessmemento profile image65

Bind 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    ms access ado form bining
working