VB Code:
  1. Combo0.Enabled = True
  2.     Combo13.Enabled = True
  3.     Combo0.RowSource = "01;02;03;04;05;06;07;08;09;10;11;12;"
  4.     Combo0.SetFocus
  5.     Combo0.Text = Format(Now, "mm")
  6.     Combo13.RowSource = Year(Now) - 1 & ";" & Year(Now) & ";" & Year(Now) + 1 & ";"
  7.     Combo13.SetFocus
  8.     Combo13.Text = Year(Now)
  9.     Display_Report.SetFocus
  10.     Combo0.Enabled = False
  11.     Combo13.Enabled = False

There has to be a better way to do this. I want the form to start up with values in the combo boxes but I don't want them to be enables unless the user clicks a different option button.

I had to do the setfocus enable/disable routine just to get it to work... unless there is a better way?!