murray83
Games Collector
- Local time
- Today, 11:05
- Joined
- Mar 31, 2017
- Messages
- 828
i have the following code and have found to make it a new line you need to include
how ever i have placed this in my code ( as below ) and has the following error
thought was maybe missing a comma or such but no luck
thanks in advance
Code:
& vbNewLine &
how ever i have placed this in my code ( as below ) and has the following error
Code:
Private Sub Info_Button_Click()
MsgBox "Time - In the time column you just need to type the time as follows for example 1650, will then be changed by formatting in the cell to show 16:50" & vbNewLine & "Date - To filter by date; this is done by clicking on the button on top of sheet marked Filter Date. To clear the filter just press on button marked Clear Filter" & vbNewLine & "SKU - To filter by SKU; this is done by clicking on the button on top of sheet marked Filter SKU. To clear the filter just press on button marked Clear Filter" & vbNewLine & "Customer - To filter by Customer; this is done by clicking on the button on top of sheet marked Filter Customer. To clear the filter just press on button marked Clear Filter" & vbNewLine
, vbExit, "Information"
End Sub
thought was maybe missing a comma or such but no luck
thanks in advance