CFileDialog in VC++6.0, How do I do this in VBA
Quite simply all I want to do is use the common file dialog from a word macro to get two filenames, can this be done ??
Cheers for any help...
Stitch
====================
I'm gonna create a whole new wicked language called C~(see-blunt), no changed me mind Co(see-through)
Re: CFileDialog in VC++6.0, How do I do this in VBA
Sub Open_File()
Dim choose_file
choose_file = Application.Dialogs(wdDialogFileOpen).Show("c:\temp\*.*")
If choose_file = false then
Exit Sub
else
'do something
End If
End Sub
Curt