anhtuan1066
Thành viên gạo cội
- Tham gia
- 10/3/07
- Bài viết
- 5,802
- Được thích
- 6,912
Tôi có 1 đoạn code như sau:
Xin hỏi làm sao rút gọn dc nó, đại khái giống như:
Xin cảm ơn!
ANH TUẤN
Mã:
Sheet1.TextBox1.Text = Cells(1,1).Value
Sheet1.TextBox2.Text = Cells(2,1).Value
Sheet1.TextBox3.Text = Cells(3,1).Value
Sheet1.TextBox4.Text = Cells(4,1).Value
Sheet1.TextBox5.Text = Cells(5,1).Value
Sheet1.TextBox6.Text = Cells(6,1).Value
Sheet1.TextBox7.Text = Cells(7,1).Value
Sheet1.TextBox8.Text = Cells(8,1).Value
Mã:
Sheet1.TextBox(i) = Cells(i,1).Value
ANH TUẤN