Hey guys,
I am probably missing just one little tidbit to make this work, but here is what I am doing, and what is happening when I do it:
1. I have a "FrontEndCallbacks.seq" located in "C:\Program Files\National Instruments\TestStand 4.0\Components\User\Callbacks\FrontEnd", in which I have placed a sequence called "Startup".
2. The "Startup" sequence creates an instance of a .Net class called "TitleBar", and then calls the "Startup" method inside that object, which looks like this:
Public Sub Startup(ByRef seqContext as SequenceContext)
Public Sub Startup(ByRef seqContext As SequenceContext)
Try
'Show the titlebar form
Me.Show()
'Keep a ref to the TS engine
tsEngine = seqContext.Engine
Catch ex As COMException
End Try
End Sub