How do I open a folder using the SfxExecuteAfter property?
-
-
Xceed admin
-
-
-
Joined on 09-29-2008
-
Longueuil
-
Posts 443
-
-
|
How do I open a folder using the SfxExecuteAfter property?
To open a folder with the SfxExecuteAfter property (ExecuteAfter for Xceed Zip for .NET), you need to separate the executable name from the folder name with a pipe (|). For example:
Xceed Zip ActiveX : XceedZip1.SfxExecuteAfter = "explorer.exe|d:\test"
Xceed Zip for .NET and Xceed Zip for .NET Compact Framework //sfx is of type XceedSfxPrefix sfx.ExecuteAfter.Add( "explorer.exe|d:\\test" ); |
|
|
|
|
|
|