Reading all the replies just backs up what I do. I give them away to family members or sell them at criminally low prices. It's the only way I've really gotten anything to move...
I know, I mean you can't buy a DLC on Xbox for a game on Game Pass and play said DLC on a PC even if the game itself is available on PC through Game Pass. So, you must buy DLCs twice to play on both Xbox and PC.
Question
James Rose
Hey gang,
I'm in need of the ability to draw a box around a picture control (frame it) and my code works fine
Dim penGray As New System.Drawing.Pen(System.Drawing.Color.DarkGray)
Dim grpLine As System.Drawing.Graphics
grpLine = Me.CreateGraphics()
grpLine.DrawLine(penGray, Me.FrameX1, Me.FrameY1, Me.FrameX2, Me.FrameY1)
grpLine.DrawLine(penGray, Me.FrameX1, Me.FrameY1, Me.FrameX1, Me.FrameY2)
grpLine.DrawLine(penGray, Me.FrameX2, Me.FrameY1, Me.FrameX2, Me.FrameY2)
grpLine.DrawLine(penGray, Me.FrameX1, Me.FrameY2, Me.FrameX2, Me.FrameY2)
'The me.FrameX... are properties... not a real issue.
The problem is, I want to draw these lines not on the Form but on a Flow Control Panel.
Any ideas?
Thanks,
James
Link to comment
https://www.neowin.net/forum/topic/597823-vbnet-draw-line-on-flow-control-panel/Share on other sites
2 answers to this question
Recommended Posts