To create a folder using VB, here’s what I’m using:
Sub CreateFolder(strID As String) Dim strPath As String strPath = GetMDBPath strPath = strPath & strID If Len(Dir(strPath, vbDirectory)) > 0 Then MsgBox ("folder " & strPath & " already exists.") Else MkDir strPath End If End Sub