Initial Commit

This commit is contained in:
2016-07-27 00:32:34 -04:00
commit 8d162b2035
701 changed files with 188672 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace RegistrationAPI_Tester
{
public partial class ChangeRegServerModalForm : Form
{
private static string s_url = "services.ndchealthvar.com";
public ChangeRegServerModalForm()
{
InitializeComponent();
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.Cancel;
this.Close();
}
private void btnOK_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(textHost.Text) ||
String.IsNullOrEmpty(textPort.Text))
{
MessageBox.Show("Host and Port can not be empty");
return;
}
uint nPort = 0;
if (!uint.TryParse(textPort.Text, out nPort) && nPort > 0)
{
MessageBox.Show("Port is invalid");
return;
}
s_url = textHost.Text;
RegistrationAPI.API.SetNetworkSettings(textHost.Text, nPort);
this.DialogResult = DialogResult.OK;
this.Close();
}
private void ChangeRegServerModalForm_Load(object sender, EventArgs e)
{
textHost.Text = s_url;
}
}
}