multi select

  • Thread starter Thread starter Grid
  • Start date Start date
G

Grid

I wld like to be able to change the option to and from "simple" via VBA is
there a way? I get the old "Value cannot be asigned" message.
Grid
 
From Access 2007 Help for the MultiSelect property:

"This property can be set only in form Design view"
 
Grid said:
I wld like to be able to change the option to and from "simple" via VBA is
there a way? I get the old "Value cannot be asigned" message.
Grid

One way to achieve this is to have two listboxes of the same size, in the
same location, with one set to 'Simple' and one set to 'Extended'. If you
want simple selection, set the simple box's Visible property to true and the
extended box's Visible to False. Vice versa if you want extended.
 
Back
Top