2 windows forms questions

  • Thread starter Thread starter leibnizster
  • Start date Start date
L

leibnizster

Hello,

1). If I have a main form, which creates a couple of other forms, they
all show up as running applications. (settings->system->memory->running
programs) How do I allow only the main form to be there?

2). How do i make a new application(windows form) to appear in
background at startup. I managed to hide its main body and taskbar, but
the menu is still there. (Don't ask me why I need to do this :) ).


Thanks
 
1) Directly you can not do this.. This is not supported
2)I think if you remove the Menu control then it will solve the
problem.

Bhavesh
 
I kind of need the menu :).
The application is executed at startup. So far I managed to do two
things.

1. the application starts in the background, but the standard menu is
replaced by the application menu
2. the application flashes for a under a second and then goes in
background (I used a timer that sends it in the background after a
little while)

Neither are satisfactory. Is this possible? I'm talking about NETCF2.0
on WM5 btw

Thanks
 
Hi
1) If You set Text property of Your form to "" the name of form will not be shown in running programs.
 
Back
Top