0% found this document useful (0 votes)
144 views

CIRCLY 7.0 Setup Debug

The document describes the progress of an uninstall process. It shows the uninstall removing multiple files in stages, updating the progress bar and displaying the name of the current file being removed. It begins removing files from the DataReferenceDB folder, then the LAYERS7.cmdb file, increasing the progress percentage each time, before moving to remove files from the CSV examples folder.

Uploaded by

ASHIK BELLARY
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
144 views

CIRCLY 7.0 Setup Debug

The document describes the progress of an uninstall process. It shows the uninstall removing multiple files in stages, updating the progress bar and displaying the name of the current file being removed. It begins removing files from the DataReferenceDB folder, then the LAYERS7.cmdb file, increasing the progress percentage each time, before moving to remove files from the CSV examples folder.

Uploaded by

ASHIK BELLARY
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 38

[48]: user_info = System.

GetUserInfo();
[49]: if (not user_info.IsAdmin) then
[58]: tVersionInfo = System.GetOSVersionInfo();
[61]: sCurrentWindowsVersion = tVersionInfo.MajorVersion .. "." ..
tVersionInfo.MinorVersion.. "." .. tVersionInfo.BuildNumber;
[62]: SetupData.WriteToLogFile("sCurrentWindowsVersion = " ..
sCurrentWindowsVersion .. "\r\n", true);
[88]: SetupData.WriteToLogFile("-- Set up the data folder" .. "\r\n", true);
[90]: SetupData.WriteToLogFile("tVersionInfo.MajorVersion =" ..
tVersionInfo.MajorVersion .. "\r\n", true);
[92]: SetupData.WriteToLogFile("Vista, Windows 7, Windows 8, Windows 10" .. "\r\n",
true);
[102]: sApplicationDataFolderCommon = Shell.GetFolder(46);
[104]: Debug.Print("sApplicationDataFolderCommon = " ..
sApplicationDataFolderCommon .. "\r\n");
sApplicationDataFolderCommon = C:\Users\Public\Documents
[108]: Folder.Create(sApplicationDataFolderCommon.."\\Mincad Systems");
[111]: StatusDlg.Show();
[115]: sApplicationDataFolderCommonMincadApp =
sApplicationDataFolderCommon.."\\Mincad
Systems".."\\"..strProgramNameAndMajorVersion
[117]: SetupData.WriteToLogFile("sApplicationDataFolderCommonMincadApp = " ..
sApplicationDataFolderCommonMincadApp .. "\r\n", true);
[120]: SessionVar.Set("%ApplicationDataFolderCommonMincadApp%",
sApplicationDataFolderCommonMincadApp);
[123]: Folder.Create(sApplicationDataFolderCommonMincadApp);
[124]: SetupData.WriteToLogFile("%
Folder.Create(sApplicationDataFolderCommonMincadApp)" .. "\r\n", true);
[128]: StatusDlg.Show();
[133]: mincadINIFileFullPath = sApplicationDataFolderCommonMincadApp ..
"\\"..strProgramNameAndMajorVersion..".ini";
[134]: Debug.Print("mincadINIFileFullPath = " .. mincadINIFileFullPath .. "\r\n");
mincadINIFileFullPath = C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CIRCLY7.0.ini
[135]: SetupData.WriteToLogFile("mincadINIFileFullPath = " .. mincadINIFileFullPath
.. "\r\n", true);
[138]: if File.DoesExist(mincadINIFileFullPath) then
[140]: SetupData.WriteToLogFile("mincadINIFileFullPath does exist." .. "\r\n",
true);
[143]: mincadUserName = INIFile.GetValue(mincadINIFileFullPath, "USER INFORMATION",
"USER NAME");
[144]: Debug.Print("mincadUserName = " .. mincadUserName .. "\r\n");
mincadUserName = [email protected]
[145]: if (mincadUserName ~= "") then
[146]: SessionVar.Set("%RegOwner%", mincadUserName); -- Set default User Name
[150]: mincadUserOrganization = INIFile.GetValue(mincadINIFileFullPath, "USER
INFORMATION", "USER ORGANIZATION");
[151]: Debug.Print("mincadUserOrganization = " .. mincadUserOrganization ..
"\r\n");
mincadUserOrganization =
[152]: if (mincadUserOrganization ~= "") then
[157]: mincadAppPath = INIFile.GetValue(mincadINIFileFullPath, "INI_FILE",
"AppPath");
[158]: Debug.Print("mincadAppPath = " .. mincadAppPath .. "\r\n");
mincadAppPath = C:\Program Files (x86)\CIRCLY7.0
[170]: if (mincadAppPath ~= "") then
[171]: SetupData.WriteToLogFile("mincadAppPath = " .. mincadAppPath .. "\r\n",
true);
[173]: SessionVar.Set("%AppFolder%", mincadAppPath);
[174]: mincadAppPath2 = SessionVar.Expand("%AppFolder%");
[176]: SetupData.WriteToLogFile("mincadAppPath2 = " .. mincadAppPath2 .. "\r\n",
true);
[177]: Debug.Print("mincadAppPath2 = " .. mincadAppPath2 .. "\r\n");
mincadAppPath2 = C:\Program Files (x86)\CIRCLY7.0
[187]: old_subfolder_named_data_exists =
Folder.DoesExist(sApplicationDataFolderCommon.."\\Mincad
Systems".."\\"..strProgramNameAndMajorVersion.."\\data");
[190]: if old_subfolder_named_data_exists then
[192]: SessionVar.Set("%DataFolder%", sApplicationDataFolderCommon.."\\Mincad
Systems".."\\"..strProgramNameAndMajorVersion.."\\data");
[201]: sDataReferenceDBFolder = sApplicationDataFolderCommon.."\\Mincad
Systems".."\\"..strProgramNameAndMajorVersion.."\\DataReferenceDB"
[202]: SetupData.WriteToLogFile("sDataReferenceDBFolder = " ..
sDataReferenceDBFolder .. "\r\n", true);
[203]: Folder.Create(sDataReferenceDBFolder);
[204]: SessionVar.Set("%DataReferenceDBFolder%", sDataReferenceDBFolder);
[207]: INIFile.SetValue(mincadINIFileFullPath, "INI_FILE", "DataReferenceDB",
sDataReferenceDBFolder);
[211]: Folder.Create(sApplicationDataFolderCommon.."\\Mincad
Systems".."\\"..strProgramNameAndMajorVersion.."\\CSV examples");
[212]: SessionVar.Set("%CSVexamplesFolder%",
sApplicationDataFolderCommon.."\\Mincad
Systems".."\\"..strProgramNameAndMajorVersion.."\\CSV examples");
[215]: StatusDlg.Show();
[225]: return;

*** LOCATION: Welcome to Uninstall > On Preload


[0]:

*** LOCATION: Welcome to Uninstall > On Next


[4]: Screen.Next();

*** LOCATION: One Progress Bar (While Uninstalling) > On Preload


[0]:

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[]==];local
e_CurrentItemPct=0;local e_StagePct=0;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\DataReferenceDB\LOADS7.cmdb]==];local e_CurrentItemPct=0;local
e_StagePct=0;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\DataReferenceDB\LOADS7.cmdb]==];local e_CurrentItemPct=50;local
e_StagePct=0;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\DataReferenceDB\LOADS7.cmdb]==];local e_CurrentItemPct=100;local
e_StagePct=0;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\DataReferenceDB\LAYERS7.cmdb]==];local e_CurrentItemPct=0;local
e_StagePct=2;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\DataReferenceDB\LAYERS7.cmdb]==];local e_CurrentItemPct=50;local
e_StagePct=2;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\DataReferenceDB\LAYERS7.cmdb]==];local e_CurrentItemPct=100;local
e_StagePct=2;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Qld TN167 AppE.csv]==];local
e_CurrentItemPct=0;local e_StagePct=4;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Qld TN167 AppE.csv]==];local
e_CurrentItemPct=50;local e_StagePct=4;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Qld TN167 AppE.csv]==];local
e_CurrentItemPct=100;local e_StagePct=4;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Austroads AGPT02-17 - App G - Table G
example.csv]==];local e_CurrentItemPct=0;local e_StagePct=6;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Austroads AGPT02-17 - App G - Table G
example.csv]==];local e_CurrentItemPct=50;local e_StagePct=6;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Austroads AGPT02-17 - App G - Table G
example.csv]==];local e_CurrentItemPct=100;local e_StagePct=6;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Austroads 2017 TABLE I.csv]==];local
e_CurrentItemPct=0;local e_StagePct=9;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Austroads 2017 TABLE I.csv]==];local
e_CurrentItemPct=50;local e_StagePct=9;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\CSV examples\Austroads 2017 TABLE I.csv]==];local
e_CurrentItemPct=100;local e_StagePct=9;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\TLD_Caveat.txt]==];local e_CurrentItemPct=0;local e_StagePct=11;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\TLD_Caveat.txt]==];local e_CurrentItemPct=50;local e_StagePct=11;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\TLD_Caveat.txt]==];local e_CurrentItemPct=100;local e_StagePct=11;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - contour
plot.ini]==];local e_CurrentItemPct=0;local e_StagePct=13;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - contour
plot.ini]==];local e_CurrentItemPct=50;local e_StagePct=13;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - contour
plot.ini]==];local e_CurrentItemPct=100;local e_StagePct=13;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - carpet
plot.ini]==];local e_CurrentItemPct=0;local e_StagePct=16;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - carpet
plot.ini]==];local e_CurrentItemPct=50;local e_StagePct=16;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - carpet
plot.ini]==];local e_CurrentItemPct=100;local e_StagePct=16;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection along a line.ini]==];local
e_CurrentItemPct=0;local e_StagePct=18;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection along a line.ini]==];local
e_CurrentItemPct=50;local e_StagePct=18;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection along a line.ini]==];local
e_CurrentItemPct=100;local e_StagePct=18;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Haul Road.ini]==];local e_CurrentItemPct=0;local
e_StagePct=20;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Haul Road.ini]==];local e_CurrentItemPct=50;local
e_StagePct=20;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Haul Road.ini]==];local e_CurrentItemPct=100;local
e_StagePct=20;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Cost Optimization.ini]==];local
e_CurrentItemPct=0;local e_StagePct=23;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Cost Optimization.ini]==];local
e_CurrentItemPct=50;local e_StagePct=23;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Cost Optimization.ini]==];local
e_CurrentItemPct=100;local e_StagePct=23;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase.ini]==];local e_CurrentItemPct=0;local e_StagePct=25;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase.ini]==];local e_CurrentItemPct=50;local e_StagePct=25;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase.ini]==];local e_CurrentItemPct=100;local e_StagePct=25;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase- Post-Cracked.ini]==];local e_CurrentItemPct=0;local e_StagePct=27;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase- Post-Cracked.ini]==];local e_CurrentItemPct=50;local e_StagePct=27;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase- Post-Cracked.ini]==];local e_CurrentItemPct=100;local e_StagePct=27;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 2 - Full Depth Asphalt
Pavement.ini]==];local e_CurrentItemPct=0;local e_StagePct=30;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 2 - Full Depth Asphalt
Pavement.ini]==];local e_CurrentItemPct=50;local e_StagePct=30;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 2 - Full Depth Asphalt
Pavement.ini]==];local e_CurrentItemPct=100;local e_StagePct=30;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 1 - Unbound Granular
Pavement.ini]==];local e_CurrentItemPct=0;local e_StagePct=32;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 1 - Unbound Granular
Pavement.ini]==];local e_CurrentItemPct=50;local e_StagePct=32;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 1 - Unbound Granular
Pavement.ini]==];local e_CurrentItemPct=100;local e_StagePct=32;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);
*** LOCATION: Progress
[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\sx32w.lib]==];local e_CurrentItemPct=0;local e_StagePct=34;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\sx32w.lib]==];local e_CurrentItemPct=50;local e_StagePct=34;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\sx32w.lib]==];local e_CurrentItemPct=100;local e_StagePct=34;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - contour
plot.CLS]==];local e_CurrentItemPct=0;local e_StagePct=37;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - contour
plot.CLS]==];local e_CurrentItemPct=50;local e_StagePct=37;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - contour
plot.CLS]==];local e_CurrentItemPct=100;local e_StagePct=37;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - carpet
plot.CLS]==];local e_CurrentItemPct=0;local e_StagePct=39;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - carpet
plot.CLS]==];local e_CurrentItemPct=50;local e_StagePct=39;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection on a grid - carpet
plot.CLS]==];local e_CurrentItemPct=100;local e_StagePct=39;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection along a line.CLS]==];local
e_CurrentItemPct=0;local e_StagePct=41;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection along a line.CLS]==];local
e_CurrentItemPct=50;local e_StagePct=41;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Surface Deflection along a line.CLS]==];local
e_CurrentItemPct=100;local e_StagePct=41;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Haul Road.CLS]==];local e_CurrentItemPct=0;local
e_StagePct=44;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Haul Road.CLS]==];local e_CurrentItemPct=50;local
e_StagePct=44;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Haul Road.CLS]==];local e_CurrentItemPct=100;local
e_StagePct=44;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Cost Optimization.CLS]==];local
e_CurrentItemPct=0;local e_StagePct=46;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Cost Optimization.CLS]==];local
e_CurrentItemPct=50;local e_StagePct=46;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Example - Cost Optimization.CLS]==];local
e_CurrentItemPct=100;local e_StagePct=46;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase.CLS]==];local e_CurrentItemPct=0;local e_StagePct=48;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase.CLS]==];local e_CurrentItemPct=50;local e_StagePct=48;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase.CLS]==];local e_CurrentItemPct=100;local e_StagePct=48;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase- Post-Cracked.CLS]==];local e_CurrentItemPct=0;local e_StagePct=51;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase- Post-Cracked.CLS]==];local e_CurrentItemPct=50;local e_StagePct=51;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 3 - Asphalt Pavement with CT
Subbase- Post-Cracked.CLS]==];local e_CurrentItemPct=100;local e_StagePct=51;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 2 - Full Depth Asphalt
Pavement.CLS]==];local e_CurrentItemPct=0;local e_StagePct=53;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 2 - Full Depth Asphalt
Pavement.CLS]==];local e_CurrentItemPct=50;local e_StagePct=53;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);
*** LOCATION: Progress
[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 2 - Full Depth Asphalt
Pavement.CLS]==];local e_CurrentItemPct=100;local e_StagePct=53;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 1 - Unbound Granular
Pavement.CLS]==];local e_CurrentItemPct=0;local e_StagePct=55;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 1 - Unbound Granular
Pavement.CLS]==];local e_CurrentItemPct=50;local e_StagePct=55;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\Austroads 2017 - Example 1 - Unbound Granular
Pavement.CLS]==];local e_CurrentItemPct=100;local e_StagePct=55;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\LOADS7.cmdb]==];local e_CurrentItemPct=0;local
e_StagePct=58;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\LOADS7.cmdb]==];local e_CurrentItemPct=50;local
e_StagePct=58;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\LOADS7.cmdb]==];local e_CurrentItemPct=100;local
e_StagePct=58;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\LAYERS7.cmdb]==];local e_CurrentItemPct=0;local
e_StagePct=60;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\LAYERS7.cmdb]==];local e_CurrentItemPct=50;local
e_StagePct=60;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Users\Public\Documents\Mincad
Systems\CIRCLY7.0\data\LAYERS7.cmdb]==];local e_CurrentItemPct=100;local
e_StagePct=60;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Interop.DAO.dll]==];local e_CurrentItemPct=0;local e_StagePct=62;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Interop.DAO.dll]==];local e_CurrentItemPct=50;local e_StagePct=62;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Interop.DAO.dll]==];local e_CurrentItemPct=100;local e_StagePct=62;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\PEGRPSE.dll]==];local e_CurrentItemPct=0;local e_StagePct=65;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\PEGRPSE.dll]==];local e_CurrentItemPct=50;local e_StagePct=65;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);
*** LOCATION: Progress
[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\PEGRPSE.dll]==];local e_CurrentItemPct=100;local e_StagePct=65;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Ionic.Zip.dll]==];local e_CurrentItemPct=0;local e_StagePct=67;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Ionic.Zip.dll]==];local e_CurrentItemPct=50;local e_StagePct=67;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Ionic.Zip.dll]==];local e_CurrentItemPct=100;local e_StagePct=67;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);
*** LOCATION: Progress
[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWSSDK.dll]==];local e_CurrentItemPct=0;local e_StagePct=69;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWSSDK.dll]==];local e_CurrentItemPct=50;local e_StagePct=69;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWSSDK.dll]==];local e_CurrentItemPct=100;local e_StagePct=69;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWS.TraceListener.dll]==];local e_CurrentItemPct=0;local
e_StagePct=72;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWS.TraceListener.dll]==];local e_CurrentItemPct=50;local
e_StagePct=72;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWS.TraceListener.dll]==];local e_CurrentItemPct=100;local
e_StagePct=72;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWS.SessionProvider.dll]==];local e_CurrentItemPct=0;local
e_StagePct=74;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWS.SessionProvider.dll]==];local e_CurrentItemPct=50;local
e_StagePct=74;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\AWS.SessionProvider.dll]==];local e_CurrentItemPct=100;local
e_StagePct=74;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\CIRCLY7.pdb]==];local e_CurrentItemPct=0;local e_StagePct=76;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\CIRCLY7.pdb]==];local e_CurrentItemPct=50;local e_StagePct=76;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\CIRCLY7.pdb]==];local e_CurrentItemPct=100;local e_StagePct=76;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\CIRCLY_Licence.txt]==];local e_CurrentItemPct=0;local
e_StagePct=79;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\CIRCLY_Licence.txt]==];local e_CurrentItemPct=50;local
e_StagePct=79;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\CIRCLY_Licence.txt]==];local e_CurrentItemPct=100;local
e_StagePct=79;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Beta_EULA.txt]==];local e_CurrentItemPct=0;local e_StagePct=81;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Beta_EULA.txt]==];local e_CurrentItemPct=50;local e_StagePct=81;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Beta_EULA.txt]==];local e_CurrentItemPct=100;local e_StagePct=81;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\sx32w.dll]==];local e_CurrentItemPct=0;local e_StagePct=83;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);
*** LOCATION: Progress
[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\sx32w.dll]==];local e_CurrentItemPct=50;local e_StagePct=83;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\sx32w.dll]==];local e_CurrentItemPct=100;local e_StagePct=83;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\circly7.exe]==];local e_CurrentItemPct=0;local e_StagePct=86;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\circly7.exe]==];local e_CurrentItemPct=50;local e_StagePct=86;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);
*** LOCATION: Progress
[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\circly7.exe]==];local e_CurrentItemPct=100;local e_StagePct=86;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\PEGRP32E.DLL]==];local e_CurrentItemPct=0;local e_StagePct=88;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\PEGRP32E.DLL]==];local e_CurrentItemPct=50;local e_StagePct=88;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\PEGRP32E.DLL]==];local e_CurrentItemPct=100;local e_StagePct=88;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\circly32.exe]==];local e_CurrentItemPct=0;local e_StagePct=90;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\circly32.exe]==];local e_CurrentItemPct=50;local e_StagePct=90;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\circly32.exe]==];local e_CurrentItemPct=100;local e_StagePct=90;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\SmartPropertyGrid.dll]==];local e_CurrentItemPct=0;local
e_StagePct=93;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\SmartPropertyGrid.dll]==];local e_CurrentItemPct=50;local
e_StagePct=93;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\SmartPropertyGrid.dll]==];local e_CurrentItemPct=100;local
e_StagePct=93;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Skybound.VisualTips.dll]==];local e_CurrentItemPct=0;local
e_StagePct=95;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Skybound.VisualTips.dll]==];local e_CurrentItemPct=50;local
e_StagePct=95;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Skybound.VisualTips.dll]==];local e_CurrentItemPct=100;local
e_StagePct=95;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Gigasoft.ProEssentials.dll]==];local e_CurrentItemPct=0;local
e_StagePct=97;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Gigasoft.ProEssentials.dll]==];local e_CurrentItemPct=50;local
e_StagePct=97;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 1;local e_CurrentItemText=[==[C:\Program Files
(x86)\CIRCLY7.0\Gigasoft.ProEssentials.dll]==];local e_CurrentItemPct=100;local
e_StagePct=97;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[19]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_FILES";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 2;local e_CurrentItemText=[==[]==];local
e_CurrentItemPct=0;local e_StagePct=0;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[20]: elseif(e_Stage == UNINSTALL_STAGE_REMOVING_SHORTCUTS) then
[21]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_SHORTCUTS";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 2;local e_CurrentItemText=[==[C:\Users\Public\Desktop\CIRCLY
7.0.lnk]==];local e_CurrentItemPct=0;local e_StagePct=50;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[20]: elseif(e_Stage == UNINSTALL_STAGE_REMOVING_SHORTCUTS) then
[21]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_SHORTCUTS";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Progress


[0]: local e_Stage = 2;local
e_CurrentItemText=[==[C:\ProgramData\Microsoft\Windows\Start Menu\Programs\CIRCLY
7.0.lnk]==];local e_CurrentItemPct=0;local e_StagePct=100;
[17]: local strStringID;
[18]: if(e_Stage == UNINSTALL_STAGE_REMOVING_FILES) then
[20]: elseif(e_Stage == UNINSTALL_STAGE_REMOVING_SHORTCUTS) then
[21]: strStringID = "MSG_PROG_UNINSTALL_REMOVING_SHORTCUTS";
[25]: local strStageMessage = SetupData.GetLocalizedString(strStringID);
[28]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_01,
{Text=strStageMessage});
[32]: local strAbbreviatedItemText = String.AbbreviateFilePath(e_CurrentItemText,
72);
[35]: DlgStaticText.SetProperties(CTRL_STATICTEXT_LABEL_02,
{Text=strAbbreviatedItemText});
[38]: DlgProgressBar.SetPos(CTRL_PROGRESS_BAR_01, e_StagePct);

*** LOCATION: Finished Uninstall > On Preload


[0]:

*** LOCATION: Finished Uninstall > On Next


[4]: Screen.Next();

*** LOCATION: On Shutdown


[6]: g_HandleSystemReboot();
*** LOCATION: Global include script: C:\Program Files (x86)\Setup Factory
9\Includes\Scripts\_SUF70_Global_Functions.lua
[308]: if(_NeedsReboot) then
[326]: end

You might also like