mattias1975
Programmer
How do i get the possition of the mouse arrow in
borland c++?
borland c++?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
void __fastcall TForm1::FormMouseMove(TObject *Sender, TShiftState Shift, int X, int Y)
{
Label1->Caption = X;
Label2->Caption = Y;
}