Xuân Thanh > 10-06-12, 06:47 PM
(10-06-12, 06:34 PM)uronmapu Đã viết: Bác có thể xem file của e và thử được ko?
File đây ạ: http://www.mediafire.com/?eudr6u97z7d937y
Em làm ko chạy ạ
E muốn nó hiện thị theo kiểu này ạ
uronmapu > 10-06-12, 06:59 PM
uronmapu > 10-06-12, 09:41 PM
=[lstItems].[ListIndex]+1
uronmapu > 12-06-12, 03:04 PM
Private Sub gotoNext_Click()
On Error GoTo Err_gotoNext_Click
With Me.lstItems
.SetFocus
If .ListIndex < .ListCount Then
.ListIndex = .ListIndex + 1
End If
End With
Exit_gotoNext_Click:
Exit Sub
Err_gotoNext_Click:
'MsgBox Err.Description
'MsgBox "End the Record"
Resume Exit_gotoNext_Click
End Sub
Private Sub gotoPrevious_Click()
On Error GoTo Err_gotoPrevious_Click
With Me.lstItems
.SetFocus
'End If
If .ListIndex < .ListCount Then
.ListIndex = .ListIndex - 1
End If
End With
Exit_gotoPrevious_Click:
Exit Sub
Err_gotoPrevious_Click:
'MsgBox Err.Description
'MsgBox "End the Record"
Resume Exit_gotoPrevious_Click
End Sub
uronmapu > 13-06-12, 08:51 AM
hugox03 > 06-03-13, 12:12 PM