Hi there
I have an inputbox with one input line. Is it possible to have two input lines in one input box?
Right now I have two input boxes to write the two things I want to write. But it will be great only to have one input box with two input lines.
Code
Dim Message As String
Message = "Input year." _
& vbCrLf & vbCrLf
Dim Messagea As String
Messagea = "Input date" _
& vbCrLf & vbCrLf
' Titel.
Dim Title As String
Title = "Input"
Dim Default As Long
Default = Year(Now())
Dim Defaulta As String
Defaulta = "Date"
Dim nata As Long
aarstal = Application.InputBox _
(Message, Title, Default, Type:=1)
Dim natb As String
nata = Application.InputBox _
(Messagea, Title, Defaulta, Type:=3)
If aarstal = 0 Then End
Display More
Alring