Skip to content

Instantly share code, notes, and snippets.

@snargledorf
Created June 4, 2013 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snargledorf/5709298 to your computer and use it in GitHub Desktop.
Save snargledorf/5709298 to your computer and use it in GitHub Desktop.
Else what?!
private void textSystemRequestCode_TextChanged(object sender, EventArgs e)
{
if (textSystemRequestCode.Text.Length > 0)
{
this.m_licenseResponse.SerialNumber = textSystemRequestCode.Text;
this.m_licenseResponse.UpdateResponse();
}
else { }
UpdateForm();
}
@snargledorf
Copy link
Author

I'm sorry to say I wrote this. I guess I was trying to be explicit...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment