Solid Edge Framework Type Library
DeleteProject Method
Specifies the Name of the new project which user wants to delete.
Description
Deletes the existing project given by user
Syntax
Visual Basic
Public Sub DeleteProject( _
   ByVal bstrProjectName As String _
) 
Parameters
bstrProjectName
Specifies the Name of the new project which user wants to delete.
Example
Private Sub Command1_Click()
    On Error Resume Next
    Dim objApplication As SolidEdgeFramework.Application
    Dim objSolidEdgeInsightXT  As SolidEdgeFramework.SolidEdgeInsightXT
    
    Set objApplication = GetObject(, "SolidEdge.Application")
    Set objSolidEdgeInsightXT = objApplication.SolidEdgeInsightXT

    Dim ProjectName As String
    ProjectName = "TEST"
    Call objSolidEdgeInsightXT.DeleteProject(ProjectName)

    Set objSolidEdgeInsightXT = Nothing
    Set objApplication = Nothing
End Sub
See Also

SolidEdgeInsightXT Object  | SolidEdgeInsightXT Members  | Solid Edge ST4 - What's New