ledangvan > 27-07-15, 01:21 PM
ongke0711 > 27-07-15, 04:43 PM
maidinhdan > 27-07-15, 04:52 PM
ledangvan > 27-07-15, 05:05 PM
tranthanhan1962 > 27-07-15, 05:50 PM
Private Sub text1_AfterUpdate()
If Len(HDID.Value & "A") = 1 Then
HDID.Value = Format(Now(), "yyyyymmddhhmmss")
End If
End Sub
Private Sub text1_AfterUpdate()
If Len(HDID.Value & "A") = 1 Then
HDID.Value = "DV1" & Format(Now(), "yyyyymmddhhmmss")
End If
End Sub
Private Sub text1_AfterUpdate()
If Len(HDID.Value & "A") = 1 Then
HDID.Value = "DV2" & Format(Now(), "yyyyymmddhhmmss")
End If
End Sub
Private Sub text1_AfterUpdate()
If Len(HDID.Value & "A") = 1 Then
HDID.Value = Format(Now(), "yyyyymmddhhmmss") & "DV1"
End If
End Sub
Private Sub text1_AfterUpdate()
If Len(HDID.Value & "A") = 1 Then
HDID.Value = Format(Now(), "yyyyymmddhhmmss") & "DV2"
End If
End Sub
maidinhdan > 27-07-15, 05:54 PM
tranthanhan1962 > 27-07-15, 06:24 PM
ledangvan > 27-07-15, 06:48 PM