How to open form like PowerPoint Presentation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know how to open a form in .Net 2.0 similar to when you use
PowerPoint and put it in presentation mode. Basically, it takes up the
entire screen including the tool bar at the bottom.

Thanks
 
Simple..

Set the FormBorderStyle to None and WindowState to Maximize
and show the form..
 
using windows state maximize may not solve the problem.

try this

private void Form_Load(object sender, EventArgs e)
{
this.Location = new Point(0, 0);
this.FormBorderStyle = FormBorderStyle.None;
this.Size = Screen.PrimaryScreen.Bounds.Size;
this.TopMost = true;
}

________________________
(e-mail address removed)
http://www.openwinforms.com/
OpenWinForms - open source windows forms and controls
Google group - http://groups.google.com/group/open-winforms
 

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