I used GetOpenFIleName() to retrive a file name but the problem is that the dialog box does not come to the front. The only way I can see it is by using ALt +Tab. How can I bring the dialog box to the topmost window.
Dim xlTmp As Excel.Application
Set xlTmp = New Excel.Application
FileToImport As String
FileToImport = xlTmp.GetOpenFilename("Area Summary (*.csv), *.csv", , _
"Please select Area data file")
Thanks
Dim xlTmp As Excel.Application
Set xlTmp = New Excel.Application
FileToImport As String
FileToImport = xlTmp.GetOpenFilename("Area Summary (*.csv), *.csv", , _
"Please select Area data file")
Thanks