Here are some general examples of extensions to associate:
Associate the .zip extension with a zip viewer application
Associate the .txt extension with the notepad application
Associate the .pdf extension with a PDF viewer
Here are some general examples of extensions not to associate:
Do not associate the .exe extension (you will no longer be able to run programs properly)
Here is an example of a string used to provide 3 extensions to the SfxExtensionsToAssociate property using Visual Basic:
Visual Basic | Copy Code |
---|---|
XceedZip1. SfxExtensionsToAssociate = "zip|%d\ZipView\ZipView.exe|Zip file" & chr$(13) & _ |
In Delphi, you would do this:
Delphi | Copy Code |
---|---|
|