WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

How To
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus
plus

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

Launch the file properties dialog for a file


#DefineFunction ShowFilePropDlg(file)
;Launch the file properties dialog for a file
shApp = ObjectOpen("shell.application")
onamespace = shApp.namespace(FilePath(file))
fitem = onamespace.parsename(StrCat(FileRoot(file),".",FileExtension(file)))
fitem.invokeverb("P&roperties")
Return 1
#EndFunction

File = "c:\autoexec.bat"
ShowFilePropDlg(file)

Article ID:   W16477
File Created: 2005:02:18:12:20:52
Last Updated: 2005:02:18:12:20:52