Skip to content

Commit a4590bc

Browse files
Fix Bug - Set Focus the List View item when renaming the label (after labeling)
Fix Bug - Prevent Duplicate File/Folder name Fix Bug - Correct the Image Icon on both TreeView and List View Fix Bug - Fix the Recursive procedure when adding a node and its subnode upon checking if a node is existing or not Enhancement - Put Label on Splash Screen Enhancement - Use another Zip tool and prevent to remain the zip cachce on the memory at least when it cache at least 50MB, when it do then flush it. Enhancement - Add other target folders to duplicate the zip file.
1 parent 82fd9ee commit a4590bc

24 files changed

+5572
-27655
lines changed

.vs/OneClickZip/v16/.suo

12 KB
Binary file not shown.

Forms/Loading/SplashScreenDesignerFrm.Designer.cs

Lines changed: 55 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Forms/Loading/SplashScreenDesignerFrm.cs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
using System.Text;
88
using System.Threading.Tasks;
99
using System.Windows.Forms;
10+
using OneClickZip.Includes.Classes;
11+
using OneClickZip.Includes.Models;
1012

1113
namespace OneClickZip.Forms.Loading
1214
{
@@ -28,7 +30,19 @@ private SplashScreenDesignerFrm()
2830
public void DisposeInstance()
2931
{
3032
Hide();
31-
splashScreenDesigner.Dispose(true);
33+
if (splashScreenDesigner !=null) splashScreenDesigner.Dispose(true);
3234
}
35+
36+
private void SplashScreenDesignerFrm_Load(object sender, EventArgs e)
37+
{
38+
txtBoxStatMsg.Text = "Loading...";
39+
ApplicationArgumentModel appArg = ProjectSession.Instance().ApplicationArgumentModel;
40+
41+
if (appArg.IsFileOpenCase)
42+
{
43+
txtBoxStatMsg.Text = String.Format(@"Opening project '{0}' ...", appArg.FileName);
44+
}
45+
}
46+
3347
}
3448
}

0 commit comments

Comments
 (0)