cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

How to get session id of a model using VB API

mdutta
1-Visitor

How to get session id of a model using VB API

How to get session id of a model using VB API

3 REPLIES 3

Hi Mohit,

     You can get session ID by

Public AConnection As IpfcAsyncConnection

Public BSession As IpfcBaseSession

Public SessionID As String

If Not AConnection Is Nothing Then

      AConnection = CConnection.GetActiveConnection.GetConnectionId

Else

AConnection = New CCpfcAsyncConnection).Connect(Nothing, Nothing, Nothing, Nothing)

End If

SessionID = AConnection.GetConnectionId

You can access only one CREO connection via vb api, after got connection from creo you can use more than one creo session, VB API Stores the connection ID in Memory, It can only access previous CREO which already connected

Parthiban Kannan

href="https://www.linkedin.com/in/parthiban-kannan/" target="_blank"

Hi Parthiban,

                 Thanx for your reply. but I want to get session ID of each component which is added in the model tree. using VB API

Thanx

Mohit

Hi Mohit,

    I think you're expecting Model Relation ID (i.e → ID of the components which placed in Assembly).

Parthiban Kannan

href="https://www.linkedin.com/in/parthiban-kannan/" target="_blank"
Announcements


Top Tags