どうすれば削除できますか...
static int count = 0;
string s;
private void SetClock_Click(object sender, EventArgs e)
{
count++;
label5.Text = count.ToString("X2");
DateTime time = DateTime.Now;
s = "4D-" + "1A-" + "2B-" + "3C-" +(label5.Text);
txtSend.Text = s;
}
別のボタンを押して別のテキストボックスに表示されたときに「s」からテキストを取得するにはどうすればよいですか?
s= 4D-1A-2B-3C-label5.text
ボタンを押して別のテキストボックスに入れたい:
4D 1A 2B 3C label5.text
ありがとう!