Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# message box carriage return

MessageBox.Show("Total Monies Taken is €" + TotalMoniesTaken + Environment.NewLine + 
                    "Total Number of Bookings = " + TotalGuests + Environment.NewLine + 
                    "Total Lunch Bookings = " + TotalLunchBookings + Environment.NewLine + 
                    "Total Early Bookings = " + TotalEarlyBookings + Environment.NewLine + 
                    "Total Late Bookings = " + TotalLateBookings + Environment.NewLine + 
                    "Total Corner Tables = " + TotalCornerTables + Environment.NewLine +
                    "Total Waiters = " + TotalWaiters);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #message #box #carriage #return
ADD COMMENT
Topic
Name
4+5 =