continued another line

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jose

    #1

    continued another line

    Please i have a select very longer and need continue in another line. Which
    is the separator line in vb 2003

    Thanks you


  • Chris Dunaway

    #2
    Re: continued another line

    underscore character (_)

    Dim s As String = "Select * From Table " & _
    "Where Field1 = 'value' " & _
    "Order By Field2"

    Comment

    • Jose

      #3
      Re: continued another line

      Thanks Chris.
      "Chris Dunaway" <dunawayc@gmail .com> escribió en el mensaje
      news:1148071494 .946474.137230@ u72g2000cwu.goo glegroups.com.. .[color=blue]
      > underscore character (_)
      >
      > Dim s As String = "Select * From Table " & _
      > "Where Field1 = 'value' " & _
      > "Order By Field2"
      >[/color]


      Comment

      • Snozz

        #4
        Re: continued another line

        Is there a good resource that summarizes the nuances of VB.NET that a
        C# programmer might be unfamilier with? The VB syntax sometimes
        appears ambiguous to me.

        Comment

        Working...