Now that my project is nearing completion, i have been informed that thjey would like the process to run simply by having the exe called. I must make it run without having to click any command button or anything. simply run when it loads. how do i do this? I tried setting the startup object to sub main and renaming
to
but no success
Code:
Private Sub Command1_Click()
If Dir("C:\test\") = "" Then
MkDir "C:\test\"
Else
End If
.....
Code:
Sub Main()
If Dir("C:\test\") = "" Then
MkDir "C:\test\"
Else
End If
....