Show date in messagebox

hendrikbez

Registered User.
Local time
Today, 02:45
Joined
Oct 30, 2014
Messages
28
I have a messagebox and want to know if it is possible that the messagebox give me a date as 15/01/2015 and not 15/01/2015. Using dailog box as messagebox
Code:
Private Sub Save_Click()
Dialog.Box "Tape #                : " & Me.Tape & vbCrLf & "Sticker #             : " & Me.Container1 & vbCrLf & "Book #                : " & Me.Book & vbCrLf & "Date send Out    : " & Me.DateSendOut & vbCrLf & "Date to be back  : " & Me.DateToBeBack & vbCrLf & "OS                       : " & Me.System, , "Saving............."
 End Sub
 
So you want date as 15/01/2015 or as 15/01/2015? :D
 
I have a messagebox and want to know if it is possible that the messagebox give me a date as 15/01/2015 and not 15/01/2015.
Sorry I fail to see the difference between 15/01/2015 and 15/01/2015
 
I want it to be 15/01/2015 or it will be better if it can show 15 Januarie 2015.
 
Thank you I did read it, but I still do not understand to get it to work. Here are my code, I have tried tow ways, but no luck..

Code:
Private Sub Save_Click()
Dim LValue As String
LValue = Format(Date, "dd/mm/yyyy")
LValue = Format(DateSendOut, "dd/mm/yyyy")
Dialog.Box "Tape #                : " & Me.Tape & vbCrLf & "Sticker #             : " & Me.Container1 & vbCrLf & "Book #                : " & Me.Book & vbCrLf & "Date send Out    : " & Me.DateSendOut & vbCrLf & "Date to be back  : " & Me.DateToBeBack & vbCrLf & "OS                       : " & Me.System, , "Saving............."
end sub
 

Users who are viewing this thread

Back
Top Bottom