Powerpoints "auto adjust" when new objects are inserted

  • Thread starter Thread starter TFriis
  • Start date Start date
T

TFriis

Sometimes when I insert a new object (ie. a chart from excel)
powerpoint automatically moves previous objects and resizes them - is
it possible to disable this function?
 
Ok found a way to disable this...

http://office.microsoft.com/en-us/powerpoint/HP030844231033.aspx

Now my question is; is this possible to do in VBA?

No before any of you out there starts to wonder to much, I found a
solution by googling this usergroup :D

Sub OptionCheck()
If Application.AutoCorrect.DisplayAutoLayoutOptions = False Then
MsgBox "The option is turned OFF."
ElseIf Application.AutoCorrect.DisplayAutoLayoutOptions Then
MsgBox "That #!%&#! option is turned ON and off it goes!"
Application.AutoCorrect.DisplayAutoLayoutOptions = False
End If
End Sub
 
Back
Top