I have created a user control using .Net framework 3.5 and I have impoted into my saleslogix in the follwoing way:
'Including Script - System:FX NetExtension Helper - ExtensionControl
option explicit
Dim extControl
Sub AXFormOpen(Sender)
Set extControl = new ExtensionControl extControl.Load "HLC.SalesLogix.Controls", "HLC.SalesLogix.Controls.Manage.Agent.UITest", Panel2.HWND, true Form.Caption ="UI Test Form" End Sub
Sub AXFormDestroy(Sender) ' release all unmanaged resources on Form's destruction Set extControl = nothing End Sub
Sub AXFormCreate(Sender)
End Sub
It is working fine when I loged-in as myself on my machine and any credentials on saleslogix but when I logged in with a different loged -in on the same machine and then on saleslogix the form is loading but the user control is not loading up?
Iis something to do with the windows login but I couldn't figure out what? Have anybody come across this issue? any advice very grately appreciated.
|