Log in

View Full Version : Ctrl+c



Shuttleu
11-25-2008, 09:57 PM
How would i go about making scar press CTRL+C to make it copy something?
or isnt there a way?

~shut

Nava2
11-25-2008, 10:01 PM
What are you trying to copy, in a form or?

NCDS
11-25-2008, 10:02 PM
isnt there a list of the different key codes somewhere in SRL help? Im pretty sure ive seen something like that before.

Shuttleu
11-25-2008, 10:12 PM
What are you trying to copy, in a form or?

im trying to make a macro for a excel piece of work (i am paid by how much i do)
or if it cant be done then i will have to do a right click then click on copy -_-'

~shut

mastaraymond
11-25-2008, 10:30 PM
im trying to make a macro for a excel piece of work (i am paid by how much i do)
or if it cant be done then i will have to do a right click then click on copy -_-'

~shut

program Hoi;
begin
KeyDown(VK_CONTROL);
KeyDown(GetKeyCode('c'));
KeyUp(GetKeyCode('c'));
KeyUp(VK_Control);
end.

Shuttleu
11-25-2008, 10:52 PM
program Hoi;
begin
KeyDown(VK_CONTROL);
KeyDown(GetKeyCode('c'));
KeyUp(GetKeyCode('c'));
KeyUp(VK_Control);
end.
tyvm rep++

~shut