CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: DataMiser

Search: Search took 0.06 seconds.

  1. Replies
    7
    Views
    9,327

    Re: Asp.net vb.net Problem

    Basically it forces a more strict method of coding and can help to eliminate runtime errors by alerting you to them when you are still in the IDE. There are options in the IDE for Option Explicit and...
  2. Replies
    7
    Views
    9,327

    Re: Asp.net vb.net Problem

    Actually it is & in all versions of VB after VB3 including all versions of VB.Net

    + will work in all of them as well but you should always use & as of VB4 and later

    You should also be using...
  3. Replies
    7
    Views
    9,327

    Re: Asp.net vb.net Problem

    Actually it is & in all versions of VB after VB3 including all versions of VB.Net

    + will work in all of them as well but you should always use & as of VB4 and later
  4. Replies
    7
    Views
    9,327

    Re: Asp.net vb.net Problem

    When concatenating strings you should use & rather than +
    When concatenating numeric vars into your string you should use the .ToString method which is the source of the error in your picture.
    ...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured