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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top