|
分類:[C#]
テキストボックスまたはナンバーアップダウンコントロールからの入力を カウンターのカウント数セットするとき private void timer3_Tick(object sender, EventArgs e) { String con = textBox1.Text; if (counter >= (con)) { // Exit loop code. timer1.Enabled = false; counter = 0; } else { // Run your procedure here. // Increment counter. counter = counter + 1; textBox3.Text = "" + counter.ToString(); } とすると演算子">="を"int"と"string"型のオペラントに適用することはできません。となり、 String con = textBox1.Text; if (counter = (con)) に変えると 型"string"を型"int"に暗黙的に変換できません。 となります。 どうすれば解決できますか?
自分で作った文字列置き換えのコードでは問題なくできるんだけど・・・ if (checkBox35.CheckState == CheckState.Checked) { String Str = textBox89.Text; String Str1 = textBox88.Text; string strData = (richTextBox1.Text);
richTextBox1.Text = (strData.Replace((Str), (Str1))); }
|