Hello, I added the following code to the xls and stepped into it after init, but it does not load a layout and does not give an error message. I do not have entitlemants since I am not hitting your servers - all I want to do is open a chart THANKS. Ken
Dim WithEvents esignal As IESignal.Hooks
Dim sLastSymbol As String
Dim sLastInterval As String
Dim lHistoryHandle As Long
Dim lLastHistoryCount As Long
Dim bStarted As Boolean
Private Sub zOpnLay()
Stop
Dim sPath As String, bPrompt As Long
'I want to load this layout
'I tried with a blank screen and also a different layout already open
'Does this load it but not "show" it????
sPath = "C:\Program Files\eSignal\00-Z-BLANK.LAY"
bPrompt = 1 'what are these codes ??????????????????
esignal.LoadLayoutOrPage sPath, bPrompt
Stop
End Sub
Private Sub esignal_OnLoadingLayoutOrPage(ByVal sSym As String)
Stop 'this fires and shows symbol ok if I manually load it
Debug.Print sSym
End Sub
Dim WithEvents esignal As IESignal.Hooks
Dim sLastSymbol As String
Dim sLastInterval As String
Dim lHistoryHandle As Long
Dim lLastHistoryCount As Long
Dim bStarted As Boolean
Private Sub zOpnLay()
Stop
Dim sPath As String, bPrompt As Long
'I want to load this layout
'I tried with a blank screen and also a different layout already open
'Does this load it but not "show" it????
sPath = "C:\Program Files\eSignal\00-Z-BLANK.LAY"
bPrompt = 1 'what are these codes ??????????????????
esignal.LoadLayoutOrPage sPath, bPrompt
Stop
End Sub
Private Sub esignal_OnLoadingLayoutOrPage(ByVal sSym As String)
Stop 'this fires and shows symbol ok if I manually load it
Debug.Print sSym
End Sub
Comment