Hola hice un control que hereda de la clase UserControl y me gustariasaber si alguiente tiene idea de como meterle licencia.....
imports System
imports System.Windows.Forms
imports System.Drawing
imports System.ComponentModel
<LicenseProviderAttribute(GetType(LicFileLicenseProvider))> _
Public Class LicensedControl : Inherits System.Windows.Forms.UserControl
Private license As License = Nothing
Public Sub New()
MyBase.New
license = LicenseManager.Validate(GetType(LicensedControl), Me)
End Sub
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If license Is Nothing
license.Dispose()
license = Nothing
End If
MyBase.Dispose(disposing)
End Sub
Overrides Protected Sub OnPaint(e As PaintEventArgs)
' Paint the Text property on the control
e.Graphics.DrawString(Me.Text, Font, New SolidBrush(ForeColor), ClientRectangle.x, ClientRectangle.y)
End Sub
End Class ' LicensedControl
Ya intenté con el codigo anterior y cuando lo quiero añadir a un formulario me dice que no tengo licencia :S... y yo no quiero el cotrol asi de seguro jaja.....
Alguna idea de que me falta agregar Archivos.lic??? no se alguien sabe como se hace :S.....