Enable Command Buttons

  • Thread starter Thread starter Pleasehelp
  • Start date Start date
P

Pleasehelp

I am building a form that is to provide command buttons
that will access other forms. These buttons are to be
enabled based upon the user's access. Basically, the
structure is:

A query that lists all the forms available to the user
A form with command buttons.

How do I enable the command buttons. Please help!
 
-----Original Message-----
I am building a form that is to provide command buttons
that will access other forms. These buttons are to be
enabled based upon the user's access. Basically, the
structure is:

A query that lists all the forms available to the user
A form with command buttons.

How do I enable the command buttons. Please help!
.
Hi,

if command button has name cmdDisplay then use:
cmdDisplay.enabled true

perhaps have this line in the OnClick event of the listbox

Luck
Jonathan
 
Back
Top