Originariamente inviato da jabjoint
Bastava gestire all' interno dell' evento Paint la scelta del combobox:

codice:
    Private Sub frm_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
 
        Select Case combo.Text.ToLower
            Case "sceltacombo1"
        end select

  end sub
Diciamo che solamente con la soluzione che hai postato non ridisegni un bel niente!
magari manca:

codice:
 Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
Me.Invalidate();
 End Sub