Horje
vba create directory Code Example
vba create directory
'requires reference to Microsoft Scripting Runtime
Function MkDir(ByVal strDir As String, ByVal strPath As String)
  	Dim fso As New FileSystemObject
  	Dim path As String
	path = strPath & strDir
	If Not fso.FolderExists(path) Then
	    fso.CreateFolder path
	End If
End Function




Vb

Related
vba create folder if not exist Code Example vba create folder if not exist Code Example
date format for ms chart vb.net Code Example date format for ms chart vb.net Code Example
vba continue for each loop Code Example vba continue for each loop Code Example
vba get text file content Code Example vba get text file content Code Example
excel insert blank row for value change in column Code Example excel insert blank row for value change in column Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9