submenu

  • Thread starter Thread starter Adnan
  • Start date Start date
A

Adnan

Hi
How can I make Submenu in combo box ?
I would say some thing like this;
level1
sublevel
sublevel
level2
subleve
sublevel
 
Adnan,

Usually, this is done by creating a second combo box. The first combo box
selects the Level, then the RowSource for the second combo is based on the
value selected in Combo1. In the AfterUpdate event of combo1, you should
requery combo2 and set its value to NULL.

HTH
Dale
 
Back
Top