Transparent form - show in taskbar

.NET Edition of the F-IN-BOX
dxmedia
Posts: 5
Joined: Sun Jul 11, 2010 3:26 pm

Transparent form - show in taskbar

Postby dxmedia » Mon Aug 09, 2010 1:13 am

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.

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Tue Aug 10, 2010 7:45 pm

Hello,

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

Thank you in advance!
Best regards, Artem A. Razin,
F-IN-BOX support
Ask your question here: http://www.f-in-box.com/support.html

ricovox
Posts: 5
Joined: Mon Aug 30, 2010 6:23 pm

Postby ricovox » Mon Aug 30, 2010 6:38 pm

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);
      }
   }


Return to “.NET Edition”

Who is online

Users browsing this forum: No registered users and 5 guests