HI
If its for opening or saving files etc
I know for XL97 you can use
Application.GetOpenFilename
which return the Path and Name of the selected item and you can use
Store it to a variable
the workbookname you can get from using Left and Right Functions
Code:
myFile = Application.GetOpenFilename
Filename = Right(myFile, Len(myFile) - InStrRev(myFile, "\"))
Filename = Left(Filename, InStr(Filename, ".") - 1)
or using ActiveWorkbook.Name if you open it.
the equivalent for the Save Dialog is
Application.GetSaveAsFilename
Im Afraid i dont know about XL95
Hope this Helps
David