frmAbout.ShowDialog(? Lines

  • Thread starter Thread starter Pete
  • Start date Start date
P

Pete

With frmAbout.ShowDialog(), how do you get rid of the 3 small 45 degree
lines at the bottom right corner of the resulting modal box?
Pete :-)
 
* "Pete said:
With frmAbout.ShowDialog(), how do you get rid of the 3 small 45 degree
lines at the bottom right corner of the resulting modal box?

Set the form's 'SizeGripStyle' property to 'Hide' or 'Auto'. 'Auto' is
the default value.
 
Thanks guys....

Your comments also got me digging deeper into VS2003 Help, and also set
FormBorderStyle to FixedDialogue, and got exactly what I wanted.

Now if <only> there was a setting for:

TeenagerCarryTheGarbageOutNow = True and
TeenagerDoYourHomeworkNow = True

<vbg>
 
Back
Top