What is the effect of having a semicolon at the end of a line of code?
I've seen this in some code I've taken over:
Printer.Print "Customer: " & strCustomerName & " (" & strCustomerCode & ")";
|
A
(My emphasis) I can't find a reference for |
|||||||||||||
|
|
The general format for the Print method is:
where object refers to one of the objects mentioned above (Form, PictureBox, Debug window, Printer) and expressionlist refers to a list of one or more numeric or string expressions to print. Items in the expression list may be separated with semicolons (;) or commas (,). A semicolon or comma in the expression list determines where the next output begins:
Items in the expression list of a
If
|
|||
|
&just combines the strings (with coercion if necessary), no need for semicolons in there. ThenPrintsees a single string (followed by the "no CRLF" thingy). – T.J. Crowder Feb 15 '12 at 21:56