Scroll Button

endri81

Registered User.
Local time
Today, 05:54
Joined
Jul 5, 2010
Messages
121
Hi.
My client wants the scroll bar to be inactive during entering the data in the form to prevent moving through data unattended.
How can this be done?
 
Hi - to get rid of the scrollbars, try
Code:
me.scrollbars=frmscrollbarsnone
and
Code:
me.scrollbars = frmscrollbarsvertical
to switch them back on. You might have to substitute something else for "Me", depending on where you're putting the code.
 
And for the data entry part you would need Me.Dirty
 
And, you could always try a validation rule in the text boxes, unless sometimes it's OK to leave them blank.
 

Users who are viewing this thread

Back
Top Bottom