trav2t > 01-08-13, 01:47 AM
Dim rs As Recordset
Set rs= CurrentDb.OpenRecordset("tblName", dbOpenDynaset)
If IsNull(rs) Then
MsgBox "Table không có dữ liệu.", vbInformation, "Thong bao!"
Else
MsgBox "Table đã có dữ liệu.", vbInformation, "Thong bao!"
End If
Xuân Thanh > 01-08-13, 06:50 AM
Dim rs As Recordset
Set rs= CurrentDb.OpenRecordset("tblName", dbOpenTable)
If rs.Recordcound > 0 Then
MsgBox "Table da có dữ liệu.", vbInformation, "Thong bao!"
Else
MsgBox "Table khong có dữ liệu.", vbInformation, "Thong bao!"
End If
trav2t > 01-08-13, 11:00 AM
(01-08-13, 06:50 AM)Xuân Thanh Đã viết:Mã PHP:Dim rs As Recordset
Set rs= CurrentDb.OpenRecordset("tblName", dbOpenTable)
If rs.Recordcound > 0 Then
MsgBox "Table da có dữ liệu.", vbInformation, "Thong bao!"
Else
MsgBox "Table khong có dữ liệu.", vbInformation, "Thong bao!"
End If