void insertHexValue_Click(object sender, EventArgs e) { HexPrompt prop = new HexPrompt(); prop.ShowDialog(); byte?a = prop.b; if (a != null) { inputToSendData.Text += (char)a; } }
private void hex_Click(object sender, EventArgs e) { if (stopSymbolStringInput.TextLength < 2) { HexPrompt prop = new HexPrompt(); prop.ShowDialog(); byte? a = prop.b; if (a != null) { stopSymbolStringInput.Text += (char)a; } } }
private void hex_Click(object sender, EventArgs e) { if (stopSymbolStringInput.TextLength < 2) { HexPrompt prop = new HexPrompt(); prop.ShowDialog(); byte?a = prop.b; if (a != null) { stopSymbolStringInput.Text += (char)a; } } }
void insertHexValue_Click(object sender, EventArgs e) { HexPrompt prop = new HexPrompt(); prop.ShowDialog(); byte? a = prop.b; if (a != null) { inputToSendData.Text += (char)a; } }