Transparent text box.

  • Thread starter Thread starter zebik
  • Start date Start date
Z

zebik

Hi. Does anyone know how to create one effect.
When I choose a text in combobox, a richtextbox gets a new text loaded
to it. But it is not transparent. VB.NET 2005 desn't allow me to do it.
Is any other way to have transparent textbox?

Thnks.
 
I had some issues with transparency of controls in the past.... found that
the following was needed in the constructor for the form. It's been quite
some time since this particular issue was solved, ... I don't really recall
all of the details, but maybe it will give a push in the right direction.

SetStyle(ControlStyles.SupportsTransparentBackColor, True)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top