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.65K
~275 People Reached
Favorite Forums
Favorite Tags
1 Posted Topic
Re: draw line
origional code not working [code] Graphics graph = this.CreateGraphics(); Pen penCurrent = new Pen(Color.Red,3); graph.DrawLine(penCurrent,Start,End); [/code] working code [code] Graphics graph = this.CreateGraphics(); Pen penCurrent = new Pen(Color.Red, 3); graph.DrawLine(penCurrent, 0,0, 100,100); the computer does not know the definitions start and end it is possible to define them as points …
The End.
mahmudh