Forum
Please
Log In
to post a new message or reply to an existing one. If you are not registered, please
register.
NOTE: Some forums may be read-only if you are not currently subscribed to
our technical support services.
Subject |
Author |
Date |
|
Qusai ALHejazi
|
Feb 28, 2012 - 10:17 PM
|
I am running Elegant Ribbon 3.1 and am having this Message at run time "You are using an evalution copy of the Elegant Ribbon." how can i fix that ? I am developing in Vb.net 2005.
|
|
Johnny Jörgensen
|
Mar 7, 2012 - 1:38 AM
|
Quite a strange question, because if you had a license for it, ytou would also have that information?!?!?! Anyhow here’s the info: To disable the background window indicating that an evaluation copy of Elegant Ribbon is used, just specify the license key in your code before the first use of the ribbon:
[C#]
[STAThread]
private static void Main()
{
Elegant.Ui.RibbonLicenser.LicenseKey =
"XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX";
Application.Run(new MainForm());
}
[VB.NET]
Imports Elegant.Ui
Public Class MainForm
Shared Sub New()
Elegant.Ui.RibbonLicenser.LicenseKey =
"XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX"
End Sub
End Class You will of course have to replace the X’s with your own license code.
|
|