OK ban. Cho mình tiện hỏi chút nữa ( vì không liên quan đến chủ đề này)
Mình đọc bài của bạn theo đường link bên dưới=> Đã làm OK phần đẩy dữ liệu vào Listview.
Bạn hướng dẫn mình cách nạp Item từ Listview vào sheet với nhé.
Cảm ơn Bạn
http://www.giaiphapexcel.com/forum/...ế-nào-đưa-dữ-liệu-từ-TextBox-xuống-ListBox-Sh!
Code của mình phần đẩy textbox vao listview OK. còn nhập từ listview vào sheet thì báo lỗi
Sub gan()
Dim tem As ListItem
Dim dong, it As Integer
dong = Sheet3.Range("A65536").End(xlUp).Row
it = Me.ListView1.ListItems.Count
Set tem = Me.ListView1.ListItems.Add(, , Str(dong + it))
tem.SubItems(1) = Me.Ngay
tem.SubItems(2) = Me.TenNVL
tem.SubItems(3) = Me.SLnhap
tem.SubItems(4) = Me.SLxuat
tem.SubItems(5) = Me.diengiai
Me.TenNVL = ""
Me.SLxuat = ""
Me.SLnhap = ""
Me.diengiai = ""
Me.TenNVL.SetFocus
End Sub
Sub Nhap()
Dim dong, i As Integer
dong = Sheet3.Range("A65536").End(xlUp).Row + 1
For i = 0 To Me.ListView.ListCount - 1
Me.ListView.ListIndex = i
Sheet3.Cells(dong, 1) = n - 1
Sheet3.Cells(dong, 2) = Me.ListView.List(, 1)
Sheet3.Cells(dong, 3) = Me.ListView.List(, 2)
Next
End Sub