Skip to content

Commit 1f22663

Browse files
authored
Merge pull request #733 from telerik/DinkoK-patch-25
Update add-license-key-openedge.md
2 parents 9242640 + 9a6efd0 commit 1f22663

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed
Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,57 @@
11
---
22
title: Set Your License Key in OpenEdge Project
3-
description: Learn how to add your Telerik UI for .NET WinForms license OpenEdge environment.
3+
description: Learn how to add your Telerik UI for WinForms license OpenEdge environment.
44
type: how-to
55
page_title: Set Your License Key in OpenEdge Project
66
slug: add-license-as-snippet-ci-cd
7-
tags: licensing , winforms,wf, cd, cd, code, snippet, openedge
7+
tags: licensing, winforms, wf, cd, cd, code, snippet, openedge
88
res_type: kb
99
---
1010

1111
## Environment
1212

1313
| Product | Version
1414
| ---- | ---- |
15-
| Telerik UI for .NET WinForms | 2025 Q1 or later |
15+
| Telerik UI for WinForms | 2025 Q1 or later |
1616

1717
## Description
1818

19-
I work in an OpenEdge environment and need to activate my Telerik UI for .NET WinForms license key. My projects, however, do not use NuGet packages. How can I activate the Telerik UI for .NET WinForms without using the `Telerik.Licensing` package?
19+
I work in an OpenEdge environment and need to activate my Telerik UI for WinForms license key. My projects, however, do not use NuGet packages. How can I activate the Telerik UI for WinForms without using the `Telerik.Licensing` package?
2020

2121
## Solution
2222

2323
The following tutorial will demonstrate how to set up your license key in the OpenEdge environment.
2424

25-
1. Go to the [Setting Up Your Telerik UI for .NET WinForms License Key](https://docs.telerik.com/devtools/winforms/licensing/license-key#downloading-the-license-key) and follow the first two sections of the article.
25+
1. Go to the [Setting Up Your Telerik UI for WinForms License Key](https://docs.telerik.com/devtools/winforms/licensing/license-key#downloading-the-license-key) and follow the first two sections of the article.
2626
1. Downloading the License Key
27-
1. Activating the Telerik UI for .NET WinForms Components
27+
1. Activating the Telerik UI for WinForms Components
2828

2929
1. Go to the [License Keys page](https://www.telerik.com/account/your-licenses/license-keys) in your Telerik account.
3030

31-
1. On the Telerik UI for .NET WinForms row, click the **View key** link in the **SCRIPT KEY** column. Copy only the string in the first Telerik.Licensing.EvidenceAttribute("key").
31+
1. On the Telerik UI for WinForms row, click the **View key** link in the **SCRIPT KEY** column. Copy only the string in the first Telerik.Licensing.EvidenceAttribute("key").
3232

3333
![copy-license-key](images/add-license-key-openedge.png)
3434

3535
1. Now we need to register the copied license key above.
3636

37-
````ABL
37+
````ABL
3838
39-
CONSTRUCTOR PUBLIC Form1 ( ):
40-
// ActivePerpetual script key
41-
Telerik.Licensing.TelerikLicensing:Register("Your License Key").
42-
43-
InitializeComponent().
39+
CONSTRUCTOR PUBLIC Form1 ( ):
40+
// ActivePerpetual script key
41+
Telerik.Licensing.TelerikLicensing:Register("Your License Key").
42+
43+
InitializeComponent().
44+
45+
THIS-OBJECT:ComponentsCollection:Add(THIS-OBJECT:components).
46+
CATCH e AS Progress.Lang.Error:
47+
UNDO, THROW e.
48+
END CATCH.
49+
50+
END CONSTRUCTOR.
4451
45-
THIS-OBJECT:ComponentsCollection:Add(THIS-OBJECT:components).
46-
CATCH e AS Progress.Lang.Error:
47-
UNDO, THROW e.
48-
END CATCH.
52+
````
4953

50-
END CONSTRUCTOR.
51-
````
52-
>important The license key needs to be registered before initializing our controls. In the above scenario, the license key is registered before the InitializeComponent() method is executed.
54+
>important The license key needs to be registered before initializing our controls. In the above scenario, the license key is registered before the InitializeComponent() method is executed.
5355
5456
1. Add a reference to the `Telerik.Licensing.Runtime.dll`.
5557

@@ -60,5 +62,5 @@ The following tutorial will demonstrate how to set up your license key in the Op
6062

6163
* [Setting Up Your License Key]({%slug license-key%})
6264
* [License Activation Errors and Warnings]({%slug license-errors-warnings%})
63-
* [Frequently Asked Questions about Your Telerik UI for .NET WinForms License Key]({%slug licensing-faq%})
65+
* [Frequently Asked Questions about Your Telerik UI for WinForms License Key]({%slug licensing-faq%})
6466
* [Adding the License Key to CI Services]({%slug add-license-to-ci-cd%})

0 commit comments

Comments
 (0)