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.71K
1 Posted Topic
[code=c] Control last; Point lastp; private void textBox1_MouseDown(object sender, MouseEventArgs e) { ((Control)sender).Cursor = System.Windows.Forms.Cursors.NoMove2D; } private void textBox1_MouseUp(object sender, MouseEventArgs e) { last = (Control)sender; lastp = new Point(last.Location.X + e.Location.X, last.Location.Y + e.Location.Y); } private void panel1_MouseMove(object sender, MouseEventArgs e) { Panel p = ((Panel)sender); bool viz = …
The End.
fkomment