Is there a Mac:X VBA equivalent for the FileSystem Object?
For instance, in Word VBA you can do:
Sub ShowFileSystemType Dim fs,d, s Set fs = CreateObject("Scripting.FileSystemObject") Set d = fs.GetDrive("e:") s = d.FileSystem MsgBox s End Sub
I don’t see how to do this in MacVBA.
And then there’s the ever present problem of converting forms from PC to Mac. The screen metrics are so different there doesn’t seem to be any way to write on the PC and have a form look good when imported on the Mac. Is there a utility to help in this conversion?
Thanks.