hi im trying 2 move a picturebox in VC++ with my arrow keys i know its keydown event i want to use and well i cant seem to get it working ive tried alot all i can think of that is

this is pretty much what i have its basically what ive been playing with

private:
void pictureBox1_KeyDown( Object^ /*sender*/, System::Windows::Forms::KeyEventArgs^ e ) {

switch(e->KeyCode)
{

case Keys::Right :
pictureBox1->Left += 100;


}
}
and when i press right key it dont work im lost for ideas thats just 1 of like 20things ive tried
help plz ^^