• Viernes 8 de Noviembre de 2024, 15:58

Autor Tema:  Controles De Usuario  (Leído 877 veces)

senzao18

  • Miembro HIPER activo
  • ****
  • Mensajes: 553
    • Ver Perfil
Controles De Usuario
« en: Miércoles 11 de Enero de 2006, 21:40 »
0
Hola hice un control que hereda de la clase UserControl y me gustariasaber si alguiente tiene idea de como meterle licencia.....

Código: Text
  1.  
  2. imports System
  3. imports System.Windows.Forms
  4. imports System.Drawing
  5. imports System.ComponentModel
  6.  
  7. <LicenseProviderAttribute(GetType(LicFileLicenseProvider))> _
  8. Public Class LicensedControl : Inherits System.Windows.Forms.UserControl
  9.    
  10. Private license As License = Nothing
  11.  
  12.     Public Sub New()
  13.         MyBase.New
  14.  
  15.         license = LicenseManager.Validate(GetType(LicensedControl), Me)
  16.     End Sub
  17.  
  18.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  19.         If license Is Nothing
  20.             license.Dispose()
  21.             license = Nothing
  22.         End If
  23.  
  24.         MyBase.Dispose(disposing)
  25.     End Sub
  26.  
  27.     Overrides Protected Sub OnPaint(e As PaintEventArgs)
  28.         ' Paint the Text property on the control
  29.          e.Graphics.DrawString(Me.Text, Font, New SolidBrush(ForeColor), ClientRectangle.x, ClientRectangle.y)
  30.     End Sub
  31. End Class ' LicensedControl
  32.  
  33.  
  34.  
  35.  

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.....
---------------------------------------
Erick Aragon Zepeda
Dessarrollo de Aplicaciones .NET
http]
Blog de Articulos
Mi Blog
NoSolocodigo -->