View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Desert Piranha Desert Piranha is offline
external usenet poster
 
Posts: 1
Default Force linked spreadsheet to open in fullsized window?


Patricia D Wrote:
I have one spreadsheet which contains a link to another spreadsheet.
Click
on the (icon) link and the linked spreadsheet opens in a small window.

Is there any way that I can force this second (linked) spreadsheet to
open
in a full size window?
--
Patricia DHi Patricia,


You can try this. Put it in the "Worksheet Module" of the "second
(linked) spreadsheet"

Private Sub Worksheet_Activate()
Application.DisplayFullScreen = True
End Sub

Private Sub Worksheet_Deactivate()
Application.DisplayFullScreen = False
End Sub


--
Desert Piranha


------------------------------------------------------------------------
Desert Piranha's Profile: http://www.excelforum.com/member.php...o&userid=28934
View this thread: http://www.excelforum.com/showthread...hreadid=562315