Skip to content

Commit

Permalink
Merge pull request #4 from JosePineiro/JosePineiro-patch-2
Browse files Browse the repository at this point in the history
Swaped command line arguments
  • Loading branch information
JosePineiro authored Jun 7, 2018
2 parents 9f373b4 + 173351b commit 01b96ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LittleZip/LittleZipTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ private void LittleZipTest_Load(object sender, EventArgs e)
string[] args = Environment.GetCommandLineArgs();
if (args.Length == 3)
{
this.textBoxSource.Text = args[1];
this.textBoxZipFile.Text = args[2];
this.textBoxZipFile.Text = args[1];
this.textBoxSource.Text = args[2];
buttonZIP_Click(null, null);
System.Windows.Forms.Application.Exit();
}
Expand Down
Binary file modified LittleZip/bin/Release/LittleZipTest.exe
Binary file not shown.

0 comments on commit 01b96ac

Please sign in to comment.