I want to show the data line by line inside the msgbox.For that, can i show the details in a new line?. If it is possible, Kindly reply me anyone.
MsgBox help?
Collapse
X
-
Tags: None
-
Originally posted by sreekandanI want to show the data line by line inside the msgbox.For that, can i show the details in a new line?. If it is possible, Kindly reply me anyone.
dear use this code
msgbox "hai this is line 1" & vbcrlf & " This is line Two"
and watch the result -
Originally posted by vijaydiwakardear use this code
msgbox "hai this is line 1" & vbcrlf & " This is line Two"
and watch the result
msgbox "hai this is line 1" & vbcr & " This is line Two"Comment
-
Originally posted by hariharanmcawe can also use
msgbox "hai this is line 1" & vbcr & " This is line Two"
thanksComment
-
Originally posted by hariharanmcawe can also use
msgbox "hai this is line 1" & vbcr & " This is line Two"Comment
-
Originally posted by sreekandanThen can I change the Font size and color inside the msgbox?Comment
-
-
Originally posted by sreekandanok
thanks
That is in the following code
Code:If Text2.Text <> Format(Text2.Text, "MM/DD/YYYY") Then MsgBox "Date Should be the format of MM/DD/YYYY "
Comment
-
Originally posted by sreekandanNow I have another one doubt.
That is in the following code
Code:If Text2.Text <> Format(Text2.Text, "MM/DD/YYYY") Then MsgBox "Date Should be the format of MM/DD/YYYY "
Use DateTime Picker to solve thisComment
-
-
-
Originally posted by sreekandanBut I want the codings for that
then
to get date
DTPicker.Value or format(DTPicker .Value,"MM/dd/yyyy")Comment
-
Originally posted by hariharanmcaUse MS Windows Common Controls-2 6.0 (SP3) to get DTPicker in toolbox
then
to get date
DTPicker.Value or format(DTPicker .Value,"MM/dd/yyyy")
I got it.Comment
-
Originally posted by hariharanmcaUse MS Windows Common Controls-2 6.0 (SP3) to get DTPicker in toolbox
then
to get date
DTPicker.Value or format(DTPicker .Value,"MM/dd/yyyy")
With the examples plz?Comment
Comment