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 InsightXT
Syntax
Visual Basic
Public Sub GetTALLogFileName( _
   ByRef bstrLogFileName As String _
) 
Parameters
bstrLogFileName
Returns the current TALLog filepath in the current session.
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 strTALLogFilePath As String
    Call objSolidEdgeInsightXT.GetTALLogFileName(strTALLogFilePath)

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

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