Question : setting mouse essped delphi 7

how to change the mouse speed into a delphi 7 application? I mean, I want to inform the new speed value on running application.

Answer : setting mouse essped delphi 7

Hi again,

So sorry for my earlier comments, I wrote 'em without actually trying out some code for myself.

Anyway, finally gotten about starting Delphi and coding, and found that this works:
1:
2:
3:
4:
5:
6:
var
  Speed: Integer;
begin
  Speed := 15;
  SystemParametersInfo(SPI_SETMOUSESPEED, 1, Pointer(Speed), SPIF_SENDCHANGE or SPIF_UPDATEINIFILE);
end;
Random Solutions  
 
programming4us programming4us