If I have a group of websites what is the easiest way for me to post them so they're hyperlinks

Code:
http://www.aaaa.com
http://www.bbbb.com
http://www.cccc.com
http://www.dddd.com
http://www.eeee.com
http://www.ffff.com
http://www.gggg.com
Adding a combobox is awesome, but the links dont hyperlink

I could add link labels, crikey way to much work

In vb6 I would have something like

Code:
Private Sub Combo1_Change()
ShellExecute Me.hWnd, "open", Combo1.Text, "", "", SW_SHOW Or SW_NORMAL
End Sub
Private Sub Form_Load()
Combo1.AddItem "http://www.aaaa.com"
End Sub
Private Sub Combo1_DblClick()
ShellExecute Me.hWnd, "open", Combo1.Text, "", "", SW_SHOW Or SW_NORMAL
End Sub

How can I take what I've done in VB6 to work with me in VS?

Thank you