|

ButtonText


(string) The text to display on the cancel button.


Re t u r n s


image

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

StatusDlg.ShowProgressMeter

OverviewExamples

StatusDlg.ShowProgressMeter ( boolean Show = true )


De s cr ip t ion


Shows or hides the progress meter on the built-in status dialog.


P arame t er s


Show


(boolean) Whether to show the progress meter on the built-in status dialog:



VALUE DESCRIPTION


true


Show the progress meter. (Default)


false


Hide the progress meter.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

S t r i n g


image

String.AbbreviateFilePath

OverviewExamples

string String.AbbreviateFilePath ( string FilePath,


number Characters )


De s cr ip t ion


Returns an abbreviated file path given a maximum number of characters. If the file path exceeds the maximum number of characters, folder names will be removed from the path from the right hand side until its length is less than the specified number of characters. This removal will be replaced by "...".


image

Note: The filename will never be truncated, therefore if the path including the filename exceeds the maximum number of characters, the abbreviation will be as close as possible.

For example: String.AbbreviateFilePath("C:\\Program Files\\AutoPlay Media Studio X\\Readme.htm",37); Returns:

C:\Program Files\...\Readme.htm


Because this path is the smallest path that does not exceed 37 characters in length.


P arame t er s


FilePath


(string) The file path you want to abbreviate.


|