' ******************************************************************************
' swxJRNL.swj - journal recorded on 10/21/02 by sib
' ******************************************************************************

Dim swApp As Object
Dim Part As Object
Dim boolstatus As Boolean
Dim longstatus As Long
Dim Annotation As Object
Dim Gtol As Object
Dim DatumTag As Object
Dim FeatureData As Object
Dim Feature As Object
Dim Component As Object
Sub main()
Set swApp = CreateObject ("SldWorks.Application")
' MSGBOX
' Automatic solving and undo are turned off for the active sketch or sheet because it is very large.  You can turn back on the automatic solving if desired.  Dragging sketch items is disabled while automatic solving is off.

swApp.LoadFile2 "Z:\Multibeam\reson documents\11665.dwg", "2 3"
Set Part = swApp.ActiveDoc
swApp.ActiveDoc.ActiveView.FrameWidth = 1440
swApp.ActiveDoc.ActiveView.FrameHeight = 908
swApp.ActiveDoc.ActiveView.FrameWidth = 1504
swApp.ActiveDoc.ActiveView.FrameHeight = 1032
swApp.ActiveDoc.ActiveView.FrameWidth = 1507
swApp.ActiveDoc.ActiveView.FrameHeight = 1040
Set Part = Nothing
swApp.CloseDoc "Draw2 - Sheet1"
swApp.ExitApp
End Sub
