Solid Edge Framework Type Library
GetTALLogFileName Method
Returns the current TALLog filepath in the current session.
Description
Writes the given string into the Developer TALLog of SEEC
Syntax
Visual Basic
Public Sub GetTALLogFileName( _
   ByRef bstrLogFileName As String _
) 
Parameters
bstrLogFileName
Returns the current TALLog filepath in the current session.
Example
Option Explicit

Sub Example()
    Dim objApplication As SolidEdgeFramework.Application
    Dim objTCE As SolidEdgeFramework.SolidEdgeTCE
    Dim strTALLogFilePath As String

    Set objApplication = GetObject(, "SolidEdge.Application")
    Set objTCE = objApplication.SolidEdgeTCE

    Call objTCE.GetTALLogFileName(strTALLogFilePath)

    If Not objApplication Is Nothing Then
        Call objApplication.Quit
    End If
    
    Set objTCE = Nothing
    Set objApplication = Nothing
End Sub
See Also

SolidEdgeTCE Object  | SolidEdgeTCE Members  | Solid Edge ST - What's New