Nov 5, 2013 #1 Briandr MIS Jul 11, 2003 177 US Hi, How can I get a second line return using VbCrLf? varRestart = oShell.Popup ("Test." & VbCrLf & "Test2", 3600, sTitle, vbExclamation+vbYesNo+vbSystemModal) Thanks
Hi, How can I get a second line return using VbCrLf? varRestart = oShell.Popup ("Test." & VbCrLf & "Test2", 3600, sTitle, vbExclamation+vbYesNo+vbSystemModal) Thanks
Nov 5, 2013 #2 guitarzan Programmer Apr 22, 2003 2,236 US did you want this: varRestart = oShell.Popup ("Test." & VbCrLf [highlight #FCE94F]& VbCrLf[/highlight] & "Test2", 3600, sTitle, vbExclamation+vbYesNo+vbSystemModal) ?? or am I misunderstanding Upvote 0 Downvote
did you want this: varRestart = oShell.Popup ("Test." & VbCrLf [highlight #FCE94F]& VbCrLf[/highlight] & "Test2", 3600, sTitle, vbExclamation+vbYesNo+vbSystemModal) ?? or am I misunderstanding
Nov 5, 2013 Thread starter #3 Briandr MIS Jul 11, 2003 177 US The first line return does not leave a empty line so I wanted the second one so there would be a space between them. I think what you have is right?? Upvote 0 Downvote
The first line return does not leave a empty line so I wanted the second one so there would be a space between them. I think what you have is right??
Nov 5, 2013 #4 ChrisHirst IS-IT--Management Nov 23, 2001 8,049 GB Just use VbCR or chr(13) to insert blank lines. The linefeed (Lf) is only needed in text files. Chris. Indifference will be the downfall of mankind, but who cares? Time flies like an arrow, however, fruit flies like a banana. Webmaster Forum Upvote 0 Downvote
Just use VbCR or chr(13) to insert blank lines. The linefeed (Lf) is only needed in text files. Chris. Indifference will be the downfall of mankind, but who cares? Time flies like an arrow, however, fruit flies like a banana. Webmaster Forum