Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

** I just want to know how to convert this code to vb.net using the same details I hope you could help me guys

Set rs = New ADODB.Recordset
rs.Open "Select Location from tblDestination where Destination = '" & cbodestination.Text & "' Group by Location", conn, 3, 1
    Do While Not rs.EOF
        cbolocation.AddItem rs![Location]
        rs.MoveNext
    Loop
End Sub

**

share|improve this question
1  
What have you tried? You have to some some effort. – Ash Burlaczenko Mar 1 at 11:48
Have a look at stackoverflow.com/questions/1574484/… – MarkJ Mar 1 at 19:17

closed as not a real question by J. Steen, Ash Burlaczenko, C-Pound Guru, Deanna, Steven Doggart Mar 1 at 14:19

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Have you tried the Visual Studio converter?

Tools -> Upgrade code from VB6...
share|improve this answer
1  
I believe that feature was removed in visual studio 2010 (not sure if it is in express editions either) – Matt Wilko Mar 1 at 14:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.