' ******************************************************************************
' swxJRNL.swj - journal recorded on 04/12/00 by hlundin
' ******************************************************************************

Dim swApp As Object
Dim Part As Object
Dim Gtol As Object
Dim FeatureData As Object
Dim Feature As Object
Dim Component As Object
Sub main()
Set swApp = CreateObject ("SldWorks.Application")
Set Part = swApp.OpenDoc ("H:\Vault\Single_Shutter\End.Clamp_V2.SLDDRW", 3)
Set Part = swApp.ActivateDoc ("End.Clamp_V2 - Sheet1")
swApp.ActiveDoc.ActiveView.FrameLeft = 0
swApp.ActiveDoc.ActiveView.FrameTop = 0
swApp.ActiveDoc.ActiveView.FrameState = 1
swApp.ActiveDoc.ActiveView.FrameState = 1
Set Part = Nothing
swApp.CloseDoc "End.Clamp_V2 - Sheet1"
swApp.ExitApp
End Sub
