G
grendel99
Greetings. I'm using Office X on a G4 desktop with OS version 10.4.3.
I have some VBA macros in PowerPoint which I know to work well on
Windows, and now I'm trying to use them on the Mac as well. VBA in
general appears to work fine, but some of my macros don't.
The problem appears to be with common file dialogs. For example, in a
macro on Windows I can do something like this:
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogOpen)
fd.Show
....which causes a 'File Open' dialog to appear, and everything's great.
The trouble is, Application.FileDialog doesn't seem to even exist on
the Mac -- so what do I do? I can't believe there aren't standard
dialog types in MacOS, so there has to be some way to access them.
Sorry if this is too elementary -- I've looked in the help file and
other places, all to no avail, I'm afraid. Maybe I'm just not
searching for the right terms. Any help would be enormously
appreciated.
Thanks!
-DH
I have some VBA macros in PowerPoint which I know to work well on
Windows, and now I'm trying to use them on the Mac as well. VBA in
general appears to work fine, but some of my macros don't.
The problem appears to be with common file dialogs. For example, in a
macro on Windows I can do something like this:
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogOpen)
fd.Show
....which causes a 'File Open' dialog to appear, and everything's great.
The trouble is, Application.FileDialog doesn't seem to even exist on
the Mac -- so what do I do? I can't believe there aren't standard
dialog types in MacOS, so there has to be some way to access them.
Sorry if this is too elementary -- I've looked in the help file and
other places, all to no avail, I'm afraid. Maybe I'm just not
searching for the right terms. Any help would be enormously
appreciated.
Thanks!
-DH