Is it possible to use a combo box to display a list of commands in ms access? If yes how.
Thnks in advance
Thnks in advance
Select Case me.listboxname
case "Save"
' do save stuff here'
case "Print"
' do print stuff here
case "Undo"
' do undo stuff here
end select
Comment