Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
yes it is possible [code] private void button1_Click(object sender, EventArgs e) { Graphics g = this.CreateGraphics(); Pen pe = new Pen(Color.Black); Point pt1 = new Point(125, 80); Point pt2 = new Point(125, 150); g.DrawLine(pe, pt1, pt2); } [/code] u do need to declare [code]using System.Drawing;[/code] at the top i hope …
The End.
mkbmain