Hi gang,

If you've ever wanted to turn OFF the snap-to-grid and turn ON snap-to-shape via code, here's how:
[VBA]'turn SnapToGrid off
ActivePresentation.SnapToGrid = msoFalse


'turn SnapToShape on
Dim oCmd As CommandBarButton
'Retrive the menu command for Snap to Shape
Set oCmd = CommandBars.FindControl(Id:=1402)
' If it's off then activate it
If oCmd.State <> msoButtonDown Then
oCmd.Execute
End If
[/VBA]

As I was researching this for myself, this site helped:
http://www.eggheadcafe.com/software/...oint-snap.aspx