Zero_Truths Posted June 16, 2005 Posted June 16, 2005 I was wondering if there was a different way for creating multiple lines of text in MsgBoxes besides the underscore [ _ ] Im unabnle to get it to work Any Ideas? ---------------------------------------------------------------------------------------------GAMING TERMSStock Item: It Was Shipped Once Before, And It Can Be Done Again, Possibly.Unprecedented Performance: Nothing Has Ever Ran This Slow Before.Years Of Development: We Finally Got This Shit To Work.Stunning Graphics: We Used MS Paint.The Best Sequel Ever: The 1st one Sucked. This One Sucks Even More.100+ Hours Gameplay: If You Don't Die From Boredom, Sucker.Superb Control: Your Wrist Will Break After The 3rd Try.Amazing Gameplay: One Guy Played This For 10 Minures, Nonstop!Excellent Story: We Ripped An Old Pron Movie Script.Online Gameplay: If We Are Not Using Our Internet To Download Pron and MP3s.Best Game Of The Year: A Homeless Guy Made This Statement After We Gave Him $25.In-Depth Characters: They Have Big BoobsALL JOKES FROM LITTLEGAMERS.COM
Hentie Posted June 16, 2005 Posted June 16, 2005 I was wondering if there was a different way for creating multiple lines of text in MsgBoxes besides the underscore [ _ ]<{POST_SNAPBACK}>You can use an underscore? I usuallly use Msgbox (0, 'Title', 'First line of text' & CHR(13) & 'Second line of text' & CHR(13) & 'Third line of text')
Valuater Posted June 16, 2005 Posted June 16, 2005 (edited) @CRLF (0, 'Title', 'First line of text' & @CRLF & 'Second line of text' ) Edited June 16, 2005 by Valuater
blindwig Posted June 16, 2005 Posted June 16, 2005 I was wondering if there was a different way for creating multiple lines of text in MsgBoxes besides the underscore [ _ ]Im unabnle to get it to workAny Ideas?<{POST_SNAPBACK}>Use the @CRLF, or I think @LF also works My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
Zero_Truths Posted June 16, 2005 Author Posted June 16, 2005 Funny Nothing in the help file ever said anything about using @CRLF/@CR/@LF in a MsgBox Yet it said to use an underscore... Bug ---------------------------------------------------------------------------------------------GAMING TERMSStock Item: It Was Shipped Once Before, And It Can Be Done Again, Possibly.Unprecedented Performance: Nothing Has Ever Ran This Slow Before.Years Of Development: We Finally Got This Shit To Work.Stunning Graphics: We Used MS Paint.The Best Sequel Ever: The 1st one Sucked. This One Sucks Even More.100+ Hours Gameplay: If You Don't Die From Boredom, Sucker.Superb Control: Your Wrist Will Break After The 3rd Try.Amazing Gameplay: One Guy Played This For 10 Minures, Nonstop!Excellent Story: We Ripped An Old Pron Movie Script.Online Gameplay: If We Are Not Using Our Internet To Download Pron and MP3s.Best Game Of The Year: A Homeless Guy Made This Statement After We Gave Him $25.In-Depth Characters: They Have Big BoobsALL JOKES FROM LITTLEGAMERS.COM
blindwig Posted June 16, 2005 Posted June 16, 2005 FunnyNothing in the help file ever said anything about using @CRLF/@CR/@LF in a MsgBoxYet it said to use an underscore...Bug<{POST_SNAPBACK}>Underscore is for bridging a command across lines:msgbox( _ 0, _ 'title', _ 'text')it has nothing to do with the program's output. My UDF Threads:Pseudo-Hash: Binary Trees, Flat TablesFiles: Filter by Attribute, Tree List, Recursive Find, Recursive Folders Size, exported to XMLArrays: Nested, Pull Common Elements, Display 2dSystem: Expand Environment Strings, List Drives, List USB DrivesMisc: Multi-Layer Progress Bars, Binary FlagsStrings: Find Char(s) in String, Find String in SetOther UDF Threads I Participated:Base64 Conversions
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now