filetypes
-
Hey, everyone. I know it's possible, but i don't know how to access the filetypes part of Windows Explorer. I need to access the ext., the path, the name, and the image. And is it possible to open up the filetypes dialog without opening up Windows Explorer (from my program)? Thanks.
-
Hey, everyone. I know it's possible, but i don't know how to access the filetypes part of Windows Explorer. I need to access the ext., the path, the name, and the image. And is it possible to open up the filetypes dialog without opening up Windows Explorer (from my program)? Thanks.
look at the Path class, it has static methods for almost anything you may need. :)
Luc Pattyn
-
Hey, everyone. I know it's possible, but i don't know how to access the filetypes part of Windows Explorer. I need to access the ext., the path, the name, and the image. And is it possible to open up the filetypes dialog without opening up Windows Explorer (from my program)? Thanks.
I've done something similar in VBA once. Take a look into BuiltInDocumentProperties, maybe you'll finf what you need
Public Function GetWordTitle(strFileName As String) As String Dim wordApp As New Word.Application wordApp.Documents.Open strFileName, , True wordApp.Visible = False GetWordTitle = wordApp.ActiveDocument.BuiltInDocumentProperties("Title") wordApp.ActiveDocument.Close False Set wordApp = Nothing End Function
Contact me! Please feel free to visit my site