Remove vertical scrollbar from spreadsheet in VBA code?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a spreadsheet that is placed on an Outlook custom form and I would like to add/remove the vertical scrollbar in the VBA code. Can anyone provide any syntax on how to do this? Thanks in advance.
 
I don't know if this will work with an Outlook form but the standard syntax
is:

ActiveWindow.DisplayVerticalScrollBar = False

--

Vasant

Paul said:
I have a spreadsheet that is placed on an Outlook custom form and I would
like to add/remove the vertical scrollbar in the VBA code. Can anyone
provide any syntax on how to do this? Thanks in advance.
 
ActiveWindow.DisplayVerticalScrollBar = False

--
Regards,
Tom Ogilvy

Paul said:
I have a spreadsheet that is placed on an Outlook custom form and I would
like to add/remove the vertical scrollbar in the VBA code. Can anyone
provide any syntax on how to do this? Thanks in advance.
 
Back
Top