You might want to check for some text in the combobox first.
Code:
Private Sub ComboBox1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.Click
    If ComboBox1.Text.Length > 0 Then
        System.Diagnostics.Process.Start(ComboBox1.Text)
    End If
End Sub