Page 1 of 1

Transparent form - show in taskbar

Posted: Mon Aug 09, 2010 1:13 am
by dxmedia
Hi,

Sorry for bugging you with all my questions, but I have a little problem.

I am developing an application relying on transparent flash forms, but at some point I need a transparent form that does not show in the task bar.

I tried the ShowInTaskbar=false property, but it does not seem to work.

Do you have any suggestion ?

Thank you very much in advance.

Posted: Tue Aug 10, 2010 7:45 pm
by Softanics
Hello,

Could you please send me a sample to support (at) f-in-box.com ?

Thank you in advance!

Posted: Mon Aug 30, 2010 6:38 pm
by ricovox
Here's some code for you. Simple as you can get, but guess what?

THE TASKBAR ICON IS STILL THERE!

"ShowInTaskbar = false" just does not work! I've tried it everywhere.
In OnLoad, OnShown etc etc.

Dll Versions:
f_in_box.dll 3,3,3,7
f_in_box__lib.dll 3.1.5.6

Code: Select all

   static class Program {
      class FBoxForm : f_in_box__lib.f_in_box__form {
         public FBoxForm() {
            this.ShowInTaskbar = false;
         }
      }
      [STAThread]
      static void Main() {
         FBoxForm f = new FBoxForm();
         f.Visible = true;
         f.ShowInTaskbar = false;
         Application.Run(f);
      }
   }