E endri81 Registered User. Local time Today, 05:54 Joined Jul 5, 2010 Messages 121 Jul 26, 2010 #1 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. 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?
JamesMcS Keyboard-Chair Interface Local time Today, 13:54 Joined Sep 7, 2009 Messages 1,819 Jul 26, 2010 #2 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.
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.
V vbaInet AWF VIP Local time Today, 13:54 Joined Jan 22, 2010 Messages 26,374 Jul 26, 2010 #3 And for the data entry part you would need Me.Dirty
JamesMcS Keyboard-Chair Interface Local time Today, 13:54 Joined Sep 7, 2009 Messages 1,819 Jul 26, 2010 #4 And, you could always try a validation rule in the text boxes, unless sometimes it's OK to leave them blank.
And, you could always try a validation rule in the text boxes, unless sometimes it's OK to leave them blank.