Click here to Skip to main content
15,889,808 members
Please Sign up or sign in to vote.
1.00/5 (6 votes)
See more:
i want to move up the hand when i click on it and turn right or left the head when i click on head.

please help me and change my source code.



download application - C# Vs2008:http://s1.picofile.com/file/7670109244/Move_Hand.rar.html

download link: http://www.freeuploadsite.com/do.php?id=5033

File size: 38.82 KB
Posted
Comments
[no name] 25-Feb-13 11:00am    
In addition to Griff's answer, your question title and narrative have absolutely nothing to do with each other.

Ah - no.

I am not going to download unknown code from a total stranger, much less edit it to do something badly specified.

If you want people to modify yuour code for your, that is called "employing someone" and that you have to pay for. I suggest you take this to vWorker (or whatever they are called this week) and let them bid on it. Be aware that you will get what you pay for: pay peanuts, get monkeys.

If on the other hand you want us to help you to do it yourself, then ask a specific question, and provide us with enough information in the question to actually answer it. We are are not interested in your whole project, or in wading through who-knows-how-much code to find the relevant bits.

Help us, to help you.
 
Share this answer
 
Comments
JayantaChatterjee 25-Feb-13 10:42am    
My 5
private void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = this.CreateGraphics();
Pen blackPen = new Pen(Color.Black, 5);

Point point1 = new Point(161, 141);
Point point2 = new Point(161, 320);
Point point3 = new Point(161, 141);
Point point4 = new Point(91, 221);
Point point5 = new Point(231, 221);
Point point6 = new Point(231, 431);
Point point7 = new Point(91, 431);
g.DrawLine(blackPen, point1, point2);
g.DrawLine(blackPen, point3, point4);
g.DrawLine(blackPen, point3, point5);
g.DrawLine(blackPen, point2, point6);
g.DrawLine(blackPen, point2, point7);
}

private void button1_Click(object sender, EventArgs e)
{
Graphics g = this.CreateGraphics();
Pen blackPen = new Pen(Color.Black, 5);
Point point1 = new Point(161, 141);
Point point2 = new Point(161, 320);
Point point3 = new Point(161, 141);
Point point4 = new Point(91, 221);
Point point5 = new Point(231, 221);
Point point6 = new Point(231, 431);
Point point7 = new Point(91, 431);

g.DrawLine(blackPen, point1, point2);
g.DrawLine(blackPen, point3, point4);
g.DrawLine(blackPen, point3, point5);
g.DrawLine(blackPen, point2, point6);
g.DrawLine(blackPen, point2, point7);

g.DrawEllipse(blackPen,140,80,40,60);

}
 
Share this answer
 
Comments
boogac 25-Feb-13 11:00am    
you need to ask clearly and be spesific, not just with codes (and as a solution of course)..no one can guess what it does you need to tell what this codes do
[no name] 25-Feb-13 11:02am    
How, exactly, does your code answer his question of how to move a hand when he clicks on it and how to move a head when he clicks on it?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900