J Jose May 19, 2006 #1 Please i have a select very longer and need continue in another line. Which is the separator line in vb 2003 Thanks you
Please i have a select very longer and need continue in another line. Which is the separator line in vb 2003 Thanks you
C Chris Dunaway May 19, 2006 #2 underscore character (_) Dim s As String = "Select * From Table " & _ "Where Field1 = 'value' " & _ "Order By Field2"
underscore character (_) Dim s As String = "Select * From Table " & _ "Where Field1 = 'value' " & _ "Order By Field2"
S Snozz May 20, 2006 #4 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.
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.