Guys, sorry, its been a while...

I need to get a filename from the user, and also store its folder. I was trying with this but I guess this dialogue just returns the filename, dont want to have to trim it...

'Select XML CA definition file
Set objDialog = CreateObject("UserAccounts.CommonDialog")
intResult = objDialog.ShowOpen
If Not intResult = 0 Then
str_xmlfilename = objDialog.filename
str_xmlfoldername = ""
End If

Whats the simple way of doing this?

Bob