continued another line

  • Thread starter Thread starter Jose
  • Start date Start date
J

Jose

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

Thanks you
 
underscore character (_)

Dim s As String = "Select * From Table " & _
"Where Field1 = 'value' " & _
"Order By Field2"
 
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.
 
Back
Top