Subversion Repositories Code-Repo

Compare Revisions

No changes between revisions

Regard whitespace Rev 20 → Rev 21

/SWAT USB App/trunk/SWAT USB App/AboutBox.cs
15,7 → 15,7
InitializeComponent();
this.Text = "Program Info";
this.labelProductName.Text = "SWAT USB App";
this.labelVersion.Text = "Version 2.2";
this.labelVersion.Text = "Version 2.2.1";
this.labelCopyright.Text = "Copyright to Kevin Lee @ Virginia Tech";
this.labelCompanyName.Text = "Author: Kevin Lee";
this.textBoxDescription.Text = "This program has been written by Kevin Lee for use " +
/SWAT USB App/trunk/SWAT USB App/bin/Debug/SWAT USB App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App/bin/Debug/SWAT USB App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App/bin/Release/SWAT USB App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App/bin/Release/SWAT USB App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App/form_Software.cs
33,11 → 33,23
}
public form_Software()
{
this.Load += new EventHandler(form_Software_Load);
// Draws the form with a checkbox for each software specified in the text file
InitializeComponent();
}
void form_Software_Load(object sender, EventArgs e)
{
try
{
if (SettingsParser.ApplicationsList.Count() == 0)
{
DebugText.appendText("No software were found in USBSettings.xml");
MessageBox.Show("No software were found in USBSettings.xml");
this.Close();
}
else
{
DebugText.appendText("Software form initializing");
// Draws the form with a checkbox for each software specified in the text file
InitializeComponent();
// Clears all lists
subGroups.Clear();
toInstall.Clear();
123,9 → 135,10
this.groupBox_SoftwareList.Controls.Add(grpBox);
}
}
catch (Exception e)
}
catch (Exception ex)
{
DebugText.appendText("Exception Thrown: " + e.ToString());
DebugText.appendText("Exception Thrown: " + ex.ToString());
MessageBox.Show(e.ToString());
}
}
/SWAT USB App/trunk/SWAT USB App/obj/x86/Debug/SWAT USB App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App/obj/x86/Debug/SWAT USB App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App/obj/x86/Release/SWAT USB App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App/obj/x86/Release/SWAT USB App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT USB App/trunk/SWAT USB App.suo
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream