Home All Groups Group Topic Archive Search About

continued another line

Author
19 May 2006 8:17 PM
Jose
Please i have a select very longer and need continue in another line. Which
is the separator line in vb 2003

Thanks you

Author
19 May 2006 8:44 PM
Chris Dunaway
underscore character  (_)

Dim s As String = "Select * From Table " & _
                           "Where Field1 = 'value' " & _
                           "Order By Field2"
Author
19 May 2006 10:25 PM
Jose
Thanks Chris.
Show quoteHide quote
"Chris Dunaway" <dunaw***@gmail.com> escribió en el mensaje
news:1148071494.946474.137230@u72g2000cwu.googlegroups.com...
> underscore character  (_)
>
> Dim s As String = "Select * From Table " & _
>                           "Where Field1 = 'value' " & _
>                           "Order By Field2"
>
Author
20 May 2006 1:43 AM
Snozz
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.