Using VB.NET to develop a standalone .exe application for SOLIDWORKS , how to completely disable automatic cut list updates, especially in assembly mode where automatic cut list updates take a long time.
Currently, the following methods are used but are ineffective, and the lower-left still shows "Updating cut list . Disable automatic update cut list to increase performance":
Models = Swapp.ActiveDoc
Assem = Models
swExt = Models.Extension
swExt.SetUserPreferenceToggle(swUserPreferenceToggle_e.swWeldmentEnableAutomaticCutList, 0, False)
swExt.SetUserPreferenceToggle(swUserPreferenceToggle_e.swWeldmentEnableAutomaticUpdate, 0, False)
Assem.EnableAssemblyRebuild = False
