javaxp
Automotive
- Jul 14, 2014
- 43
Hi,
I'm trying to write a journal to fullfill the Date on a titleblock selected cell. So, the user selects first a cell, and running the journal, the selected cell is filled with the current Date.
My trouble is to get the Table instead of the TableSection.
By now this is my current code:
I will apreciate any help.
Javier
NX 12.0.2.9 MP14
I'm trying to write a journal to fullfill the Date on a titleblock selected cell. So, the user selects first a cell, and running the journal, the selected cell is filled with the current Date.
My trouble is to get the Table instead of the TableSection.
By now this is my current code:
Code:
Imports System
Imports NXOpen
Imports NXOpen.UF
Module blank_all_tabular_notes
Dim theSession As Session = Session.GetSession()
Dim workPart As Part = theSession.Parts.Work
Dim theUI As UI = UI.GetUI()
Public lw As ListingWindow = theSession.ListingWindow
Public Sub Main(ByVal args As String())
lw.Open()
Dim numsel As Integer = theUI.SelectionManager.GetNumSelectedObjects()
Dim selobj As NXObject
Dim myTable As Annotations.TableSection
Dim myCell As DisplayableObject
Dim regDate As Date = Date.Now()
Dim strDate As String = regDate.ToString("dd\/MM\/yyyy")
Dim j As Integer
For j = 0 To numsel - 1
selobj = theUI.SelectionManager.GetSelectedObject(j)
If selobj.GetType.ToString = "NXOpen.Annotations.TableSection" Then
myTable = selobj
End If
If selobj.GetType.ToString = "NXOpen.DisplayableObject" Then
myCell = selobj
End If
lw.WriteFullline(strDate)
Next
myTable.EditCellText(myCell, todaysdate)
End Sub
Public Function GetUnloadOption(ByVal arg As String) As Integer
Return Session.LibraryUnloadOption.Immediately
End Function
End Module
I will apreciate any help.
Javier
NX 12.0.2.9 MP14