I don't want to use form's icon on main form. Bur can not set to null.

Is tehere any suggestion?

gburhan

Re: How can I get rid of form Icon? by Tim

Tim
Mon Dec 15 14:16:37 CST 2003

Play around with the FormBorderStyle property.

--
Tim Wilson
.Net Compact Framework MVP

"burhan" <ghn@hotmail.com> wrote in message
news:O7h1Cc0wDHA.1968@TK2MSFTNGP09.phx.gbl...
> I don't want to use form's icon on main form. Bur can not set to null.
>
> Is tehere any suggestion?
>
> gburhan
>
>



Re: How can I get rid of form Icon? by hirf-spam-me-here

hirf-spam-me-here
Mon Dec 15 14:20:09 CST 2003

* "burhan" <ghn@hotmail.com> scripsit:
> I don't want to use form's icon on main form. Bur can not set to null.

Set the form's 'ControlBox' property to 'False' or use a dialog form
('FormBorderStyle' property). Then set the 'Icon' property to 'Nothing'

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>

Re: How can I get rid of form Icon? by burhan

burhan
Mon Dec 15 14:54:39 CST 2003

In basic WindowsApplication, when I set FormBorderStyle property to
FixedDialog(C#) its ok, but

My Application's main form as mdiparent and other forms-want to avoid icon-
are mdiclient.
So, when i set it as before not working properly.

waiting your suggestions.

"Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
news:brl53n$4il5a$2@ID-208219.news.uni-berlin.de...
> * "burhan" <ghn@hotmail.com> scripsit:
> > I don't want to use form's icon on main form. Bur can not set to null.
>
> Set the form's 'ControlBox' property to 'False' or use a dialog form
> ('FormBorderStyle' property). Then set the 'Icon' property to 'Nothing'
>
> --
> Herfried K. Wagner [MVP]
> <http://www.mvps.org/dotnet>



Re: How can I get rid of form Icon? by burhan

burhan
Tue Dec 16 02:29:31 CST 2003

this is the point what i mean,

In your example, open several documents and maximize them. You'll see app
icon left side of Menu.

can have any suggestion?
thanks

gburhan



"Tim Wilson [MVP]" <Tim_Wilson@[DieSpamDie]Rogers.com> wrote in message
news:OXOTCP1wDHA.2136@TK2MSFTNGP10.phx.gbl...
> If I'm understanding you correctly then it should still work fine. See the
> attached zip file for a solution.
>
> --
> Tim Wilson
> .Net Compact Framework MVP
>
> "burhan" <ghn@hotmail.com> wrote in message
> news:eoTn%2310wDHA.2568@TK2MSFTNGP09.phx.gbl...
> > In basic WindowsApplication, when I set FormBorderStyle property to
> > FixedDialog(C#) its ok, but
> >
> > My Application's main form as mdiparent and other forms-want to avoid
> icon-
> > are mdiclient.
> > So, when i set it as before not working properly.
> >
> > waiting your suggestions.
> >
> > "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
> > news:brl53n$4il5a$2@ID-208219.news.uni-berlin.de...
> > > * "burhan" <ghn@hotmail.com> scripsit:
> > > > I don't want to use form's icon on main form. Bur can not set to
null.
> > >
> > > Set the form's 'ControlBox' property to 'False' or use a dialog form
> > > ('FormBorderStyle' property). Then set the 'Icon' property to
'Nothing'
> > >
> > > --
> > > Herfried K. Wagner [MVP]
> > > <http://www.mvps.org/dotnet>
> >
> >
>
>
>



Re: How can I get rid of form Icon? by Tim

Tim
Tue Dec 16 07:32:33 CST 2003

Ok, so you are looking to remove an MDI child windows icon when it's merged
with the MainMenu of the MDI parent. I looked around and couldn't find a way
to completely remove the icon after the merge (that's not to say that you
can't do this it's just that I didn't find a way). But you could create a
blank icon and use that. So create an icon using VS.Net and erase all it's
content (for both 16x16 and 32x32), and then assign this icon to all the MDI
children.

--
Tim Wilson
.Net Compact Framework MVP

"burhan" <ghn@hotmail.com> wrote in message
news:OvcCS66wDHA.1576@TK2MSFTNGP11.phx.gbl...
> this is the point what i mean,
>
> In your example, open several documents and maximize them. You'll see app
> icon left side of Menu.
>
> can have any suggestion?
> thanks
>
> gburhan
>
>
>
> "Tim Wilson [MVP]" <Tim_Wilson@[DieSpamDie]Rogers.com> wrote in message
> news:OXOTCP1wDHA.2136@TK2MSFTNGP10.phx.gbl...
> > If I'm understanding you correctly then it should still work fine. See
the
> > attached zip file for a solution.
> >
> > --
> > Tim Wilson
> > .Net Compact Framework MVP
> >
> > "burhan" <ghn@hotmail.com> wrote in message
> > news:eoTn%2310wDHA.2568@TK2MSFTNGP09.phx.gbl...
> > > In basic WindowsApplication, when I set FormBorderStyle property to
> > > FixedDialog(C#) its ok, but
> > >
> > > My Application's main form as mdiparent and other forms-want to avoid
> > icon-
> > > are mdiclient.
> > > So, when i set it as before not working properly.
> > >
> > > waiting your suggestions.
> > >
> > > "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in message
> > > news:brl53n$4il5a$2@ID-208219.news.uni-berlin.de...
> > > > * "burhan" <ghn@hotmail.com> scripsit:
> > > > > I don't want to use form's icon on main form. Bur can not set to
> null.
> > > >
> > > > Set the form's 'ControlBox' property to 'False' or use a dialog form
> > > > ('FormBorderStyle' property). Then set the 'Icon' property to
> 'Nothing'
> > > >
> > > > --
> > > > Herfried K. Wagner [MVP]
> > > > <http://www.mvps.org/dotnet>
> > >
> > >
> >
> >
> >
>
>



Re: How can I get rid of form Icon? by burhan

burhan
Tue Dec 16 14:19:28 CST 2003

thanks for your guidance,

burhan


"Tim Wilson [MVP]" <Tim_Wilson@[DieSpamDie]Rogers.com> wrote in message
news:OZ6hfj9wDHA.2316@TK2MSFTNGP10.phx.gbl...
> Ok, so you are looking to remove an MDI child windows icon when it's
merged
> with the MainMenu of the MDI parent. I looked around and couldn't find a
way
> to completely remove the icon after the merge (that's not to say that you
> can't do this it's just that I didn't find a way). But you could create a
> blank icon and use that. So create an icon using VS.Net and erase all it's
> content (for both 16x16 and 32x32), and then assign this icon to all the
MDI
> children.
>
> --
> Tim Wilson
> .Net Compact Framework MVP
>
> "burhan" <ghn@hotmail.com> wrote in message
> news:OvcCS66wDHA.1576@TK2MSFTNGP11.phx.gbl...
> > this is the point what i mean,
> >
> > In your example, open several documents and maximize them. You'll see
app
> > icon left side of Menu.
> >
> > can have any suggestion?
> > thanks
> >
> > gburhan
> >
> >
> >
> > "Tim Wilson [MVP]" <Tim_Wilson@[DieSpamDie]Rogers.com> wrote in message
> > news:OXOTCP1wDHA.2136@TK2MSFTNGP10.phx.gbl...
> > > If I'm understanding you correctly then it should still work fine. See
> the
> > > attached zip file for a solution.
> > >
> > > --
> > > Tim Wilson
> > > .Net Compact Framework MVP
> > >
> > > "burhan" <ghn@hotmail.com> wrote in message
> > > news:eoTn%2310wDHA.2568@TK2MSFTNGP09.phx.gbl...
> > > > In basic WindowsApplication, when I set FormBorderStyle property to
> > > > FixedDialog(C#) its ok, but
> > > >
> > > > My Application's main form as mdiparent and other forms-want to
avoid
> > > icon-
> > > > are mdiclient.
> > > > So, when i set it as before not working properly.
> > > >
> > > > waiting your suggestions.
> > > >
> > > > "Herfried K. Wagner [MVP]" <hirf-spam-me-here@gmx.at> wrote in
message
> > > > news:brl53n$4il5a$2@ID-208219.news.uni-berlin.de...
> > > > > * "burhan" <ghn@hotmail.com> scripsit:
> > > > > > I don't want to use form's icon on main form. Bur can not set to
> > null.
> > > > >
> > > > > Set the form's 'ControlBox' property to 'False' or use a dialog
form
> > > > > ('FormBorderStyle' property). Then set the 'Icon' property to
> > 'Nothing'
> > > > >
> > > > > --
> > > > > Herfried K. Wagner [MVP]
> > > > > <http://www.mvps.org/dotnet>
> > > >
> > > >
> > >
> > >
> > >
> >
> >
>
>



Re: How can I get rid of form Icon? by burhan

burhan
Wed Dec 24 01:25:19 CST 2003

Any suggestion?
still wait

burhan





Re: How can I get rid of form Icon? by Vijayakrishna

Vijayakrishna
Fri Jan 02 01:24:09 CST 2004

Set the FormBorderStyle to 'FixedDialog', if you do not need resizing of the
form.

Thanks,
VijayaKrishna P.