santst > 07-06-12, 10:39 AM
Trích dẫn:Private Sub Command41_Click()
If IsNull(Me.NGAYDD) Then
MsgBox " Xin nhap ngay dieu dong ", vbOKOnly, "Bao loi"
Cancel = True
Me.NGAYDD.SetFocus
Else
If Me.NGAYDD < Forms![dieudong]![nhantb1].Form![ngaynhan] Then
MsgBox " ngay dieu dong phai lon hon ngay nhan thiet bi" & vbCr & "ngay nhan thiet bi la : " & Forms![dieudong]![nhantb1].Form![ngaynhan], vbOKOnly, "Bao loi"
Cancel = True
Me.NGAYDD.SetFocus
else
If IsNull(Me.MANV) Then
MsgBox "Ban chua chon nguoi su dung thiet bi ", vbOKOnly, "Bao loi"
Cancel = True
Me.MANV.SetFocus
Else
If IsNull(Me.matb) Then
MsgBox "Ban chua chon thiet bi dieu dong ", vbOKOnly, "Bao loi"
Cancel = True
Me.matb.SetFocus
Else
If MsgBox ("Ban co muon luu thong tin? ", vbYesNo, "Thong bao") = vbYes Then
On Error GoTo Err_Command41_Click
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Exit_Command41_Click:
Exit Sub
Err_Command41_Click:
MsgBox Err.Description
Resume Exit_Command41_Click
Else
Cancel = True
End If
End If
End If
End If
end if
End Sub
Noname > 07-06-12, 02:45 PM
'3. nếu ngaydd notnull và >= ngaynhan thi kiểm tra matb co null ko,nếu null thì hiện thông báo...
If IsNull(Me.MANV) Then
MsgBox "Ban chua chon nguoi su dung thiet bi ", vbOKOnly, "Bao loi"
Cancel = True
Me.MANV.SetFocus
Else
'4. nếu matb notnull thì kiểm tra MANV, nếu null thì hiện thông báo....
If IsNull(Me.matb) Then
MsgBox "Ban chua chon thiet bi dieu dong ", vbOKOnly, "Bao loi"
Cancel = True
Me.matb.SetFocus
Else
If IsNull(Me.matb) or Me.matb="" Then
santst > 08-06-12, 08:26 AM
santst > 08-06-12, 09:33 AM