Solid Edge Framework Type Library
GetProjectsForLoggedInUSer Method
Description
Returns the projects for given user.
Syntax
Visual Basic
Public Sub GetProjectsForLoggedInUSer( _
   ByRef pvarListOfUserProjects As Variant, _
   ByRef pvarListOfUserProjectUIDs As Variant _
) 
Parameters
pvarListOfUserProjects
pvarListOfUserProjectUIDs
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 pListofProjects As Variant
    Dim pListOfUserProjectUIDs As Variant
    Call objSolidEdgeInsightXT.GetProjectsForLoggedInUSer(pListofProjects, pListOfUserProjectUIDs)

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

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