Hi, I'm using VB6 and I want to dynamically add Codejock Xtreme Calendar ActiveX to one of SSTab control tabs.
Here's my code.
Then in Form_Load()
It works for standard controls, but not for ActiveX. I've also tried adding license:
I would be grateful for any help
Here's my code.
Code:
Dim WithEvents CalendarControl1 As CalendarControl
Then in Form_Load()
Code:
Set CalendarControl1 = Controls.Add("CalendarControl", "CalendarControl1", SSTab1)
CalendarControl1.Visible = True
It works for standard controls, but not for ActiveX. I've also tried adding license:
Code:
Licenses.Add
CalendarGlobalSettings.License
I would be grateful for any help