Vb.net 从手动填写的组合框中选择当前月份

Vb.net 从手动填写的组合框中选择当前月份,vb.net,Vb.net,如上图所示,我手动填充了组合框。虽然应该从该组合框中选择加载当前月份的表单,但这是如何实现的 Me.drpmonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.drpmonth.FormattingEnabled = True Me.drpmonth.Items.AddRange(New Object() {"JAN", "FEB", "MAR", "APR", "MAY

如上图所示,我手动填充了组合框。虽然应该从该组合框中选择加载当前月份的表单,但这是如何实现的

 Me.drpmonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
        Me.drpmonth.FormattingEnabled = True
        Me.drpmonth.Items.AddRange(New Object() {"JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"})
        Me.drpmonth.Location = New System.Drawing.Point(886, 28)
        Me.drpmonth.Name = "drpmonth"
        Me.drpmonth.Size = New System.Drawing.Size(100, 21)
        Me.drpmonth.TabIndex = 9
 Me.drpmonth.SelectedIndex = DateTime.Now.Month.ToString() - 1