Results 1 to 8 of 8

Thread: & or +? *RESOLVED*

Threaded View

  1. #1

    Thread Starter
    Frenzied Member agmorgan's Avatar
    Join Date
    Dec 2000
    Location
    Lurking
    Posts
    1,383

    & or +? *RESOLVED*

    Which is the standard/better way to add strings together?
    VB Code:
    1. MsgBox "DataSave.Param" + Format(n + 1) + "=s"
    or
    VB Code:
    1. MsgBox "DataSave.Param" & Format(n + 1) & "=s"
    Is there any difference between using '&' or '+'?
    Is either considered bad practice?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width