License Setting |
Post Reply |
Author | |
cybeh
Groupie Joined: 27 December 2005 Location: Malaysia Status: Offline Points: 76 |
Post Options
Thanks(0)
Posted: 26 September 2007 at 1:55am |
Hi,
I need to create TaskDialog dynamically in my DLL which I will not place any OCX (As I am having code below in the module file, and not form). Set TD = CreateObject("Codejock.TaskDialog.11.2.0") And I do aware of I need to get some global lic. My question is, how could I do that under a modCodejockLic? So that I do not need to set the license all the time? Beside that, I could only find the example something like this Set GS = CreateObject("Codejock.CalendarGlobalSettings.11.1.3") GS.License = "Calendar Control Copyright (c) 2003-2007 Codejock Software" + vbCrLf + "PRODUCT-ID: Codejock.Calendar.ActiveX.v11.1" + vbCrLf + "VALIDATE-CODE: XXX-XXX-XXX-XXX" Set pDatePicker = CreateObject("Codejock.DatePicker." + GS.Version) How could I change that for TaskDialog? Thanks in advance. |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Hi,
Yes, you need add license strings.
Something like:
Set GS = CreateObject("Codejock.SuiteControlsGlobalSettings.11.2.0")
GS.License = "Suite Controls Copyright (c) 2003-2007 Codejock Software " + vbCrLf + "PRODUCT-ID: Codejock.Controls.ActiveX.v11.2" + vbCrLf + "VALIDATE-CODE: XXX-XXX-XXX-XXX" |
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Bernie
Senior Member Joined: 05 July 2007 Location: Taiwan Status: Offline Points: 109 |
Post Options
Thanks(0)
|
I'd like to ask a question not relating to the original one.
Is it required every time to asign the correct value of .License when I create and distribute a STAND-ALONE .EXE program in the client machine?
|
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Hi,
If you use vb6 - you don't need add anything, vb6 will automatically insert license to exe (if you use controls in form) . In .NET you need manually change it each time :(
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |