Hide component in the bar

  • Thread starter Thread starter João Santa Bárbara
  • Start date Start date
J

João Santa Bárbara

hi all, i have made one component, and i don´t want it do tobe show in the
bar where errorprovider appears ??
is it possible to hide the component ???

thks
JSB
 
--C#----------------------------------------------
using System.ComponentModel;

[DesignTimeVisible(false)]
public class myComponent : Component
....

--VB----------------------------------------------
Imports System.ComponentModel

<DesignTimeVisible(False)> _
Public Class MyComponent
Inherits Component
...
 
Back
Top