Example - MkDir Statement

PC-DMIS Basic creates the new directories in the default location "C:\Users\Public\Public Documents\Hexagon\PC-DMIS\<version>", where <version> is the version of the PC-DMIS application.

Sub Main()
   Dim DST As String
 
   DST = "t1"
   MkDir DST
   MkDir "t2"
End Sub