Cypress Semiconductor CY8C21534 Especificaciones Pagina 65

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 69
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 64
Appendix 2
15(15)
{
// Program is stopped if an exception is present
server.Stop();
RunServer();
}
}
while(message != "QUIT1");
}
catch (Exception error)
{
// error code can be added here
}
}
// Function description--------------------------------------------- //
Initializes form.
public Form1()
{
InitializeComponent();
}
// Function description--------------------------------------------- //
Starts thread for communications.
private void Form1_Load(object sender, EventArgs e)
{
serverThread = new Thread(new ThreadStart(RunServer));
serverThread.Start();
CheckForIllegalCrossThreadCalls = false;
}
// Function description--------------------------------------------- //
List box option.
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
// Function description--------------------------------------------- //
Reset button action.
private void button2_Click(object sender, EventArgs e)
{
try
{
serverThread.Abort();
server.Stop();
Application.Restart();
}
catch (Exception error)
{
MessageBox.Show(error.ToString());
}
}
}
}
Vista de pagina 64
1 2 ... 60 61 62 63 64 65 66 67 68 69

Comentarios a estos manuales

Sin comentarios