dcl3500 Posted November 12, 2003 Posted November 12, 2003 Hi all, Ok trying to do a form, FormBorderStyle = None. Then I want to put a bump border around it. Easy stuff in VB6, really got me lost here in .Net though. Appreciate any hints in that direction. Quote Don "When you're in jail, a good friend will be trying to bail you out. A BEST friend will be in the cell next to you saying, 'Damn, that was fun.'" - Anon.
*Experts* Volte Posted November 13, 2003 *Experts* Posted November 13, 2003 Hey Don, good to see you again. You'll find what you need in the ControlPaint class. Put this in the form's Paint event: ControlPaint.DrawBorder3D(e.Graphics, Me.DisplayRectangle, Border3DStyle.Etched)There are other bump styles, just check out the Border3DStyle enum. Quote
dcl3500 Posted November 13, 2003 Author Posted November 13, 2003 Heh, thanks Volte, spent several hours yesterday without finding that one. Of course found several other things, totally unrelated, that were pretty useful and interesting. Quote Don "When you're in jail, a good friend will be trying to bail you out. A BEST friend will be in the cell next to you saying, 'Damn, that was fun.'" - Anon.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.