private void serverHostButton_Click( object sender, EventArgs e ) { // Create a new host HostSetup setup = CreateSetup( ); setup.HostType = HostType.Server; setup.HostGuid = new Guid("{8D7200EA-0D49-4384-9A44-2532ECB1FE55}"); HostForm host = new HostForm( setup ); host.Show( ); }
private void clientHostButton_Click( object sender, EventArgs e ) { // Create a new host HostSetup setup = CreateSetup( ); setup.HostType = HostType.Client; setup.HostGuid = new Guid( "{9B478B95-97CA-4bf2-8FB9-477367C3A325}" ); HostForm host = new HostForm( setup ); host.Show( ); }