-1
私はVB i want to check the cells and set the value to text box移動平均法VB
で移動平均を行うために試してみたが、結果はある all the text box has the same value
私の最初のチェック値(penjualan /ブラン)の作り方は、最初のテキストボックスにinputedさ 2番目のチェックボックス(penjualan/bulan)を2番目のテキストボックスに入力します。 ここに私のコードです
Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
If e.ColumnIndex = 5 Then
tb1.Text = DataGridView1.CurrentRow.Cells(3).Value
tb2.Text = DataGridView1.CurrentRow.Cells(3).Value
tb3.Text = DataGridView1.CurrentRow.Cells(3).Value
End If
End Sub
ありがとうございます。
[お問い合わせ]を読んで[ツアー]をご覧ください。あなたの質問に関係するすべての事実は疑問の余地があります。それを自分で解決する努力が必要です – Plutonix