TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ian
NA
3
0
passing variables
Nov 16 2005 11:15 AM
okay, I've got a program where I get the coordinates of where the mouse clicked in the code for the form:
protected
override
void
OnMouseDown(MouseEventArgs e)
{
int
x, y;
x = e.X;
y = e.Y;
base
.OnMouseDown (e);
}
and I want to pass the values of x and y to a separate class and method. How do I do that?
Reply
Answers (
2
)
Replace string with nothing
FileStream question