Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 929075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T20:06:39+00:00 2026-05-15T20:06:39+00:00

I want my program to work sort of like Team Player . Multi mice,

  • 0

I want my program to work sort of like Team Player. Multi mice, multi cursor but only one focus. But the problem is I can’t hide the default cursor. I only want it to be invisible.
So far this works inside my application only.

ShowCursor(false);

and

Screen.Cursor:=crNone;

Is there a way to hide the cursor for the entire system (just until I close my application)?


EDIT:
This doesn’t work:

procedure myShowCursor(Show :boolean);
var cursor1, cursor2: HCursor;
begin
 cursor1 :=CopyIcon(Screen.Cursors[crDefault]);
 cursor2 := LoadCursorFromFile('blank\blank.cur');
 if Show then
  SetSystemCursor(cursor1, OCR_NORMAL)
 else
 SetSystemCursor(cursor2, OCR_NORMAL);
end;

This works: (but I can’t exactly use this)

procedure myShowCursor;
var cursor1, cursor2: HCursor;
begin
 cursor1 :=CopyIcon(Screen.Cursors[crDefault]);
 cursor2 := LoadCursorFromFile('blank\blank.cur');

 SetSystemCursor(cursor2, OCR_NORMAL);
 SetSystemCursor(cursor1, OCR_NORMAL)
end;

SOLVED: restored system cursors by SystemParametersInfo

procedure TForm1.myShowCursor(Show :boolean);
var cursor1: HCursor;
begin
 cursor1 := LoadCursorFromFile('blank\blank.cur');
 if Show then
  SystemParametersInfo(SPI_SETCURSORS,0,0,WM_SETTINGCHANGE or SPIF_UPDATEINIFILE )
 else
 SetSystemCursor(cursor1, OCR_NORMAL);
end;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T20:06:39+00:00Added an answer on May 15, 2026 at 8:06 pm

    first download a blank cursor, you can get it from many places,i downloaded it from
    http://pc.autons.net/stuff/blanks/blank.zip
    ,extact blank.zip then copy and paste blank.cur to a desired location(i am saving it to ‘c:\blank.cur’ for this example)
    then try this code:

    var cursor1, cursor2: HCursor;
    begin
     cursor1 := CopyIcon(Screen.Cursors[crDefault]);
     cursor2 := LoadCursorFromFile('c:\blank.cur');
     SetSystemCursor(cursor2, OCR_NORMAL);//to hide cursor
     Sleep(2000);
     SetSystemCursor(cursor1, OCR_NORMAL);//to show cursor again
    end;
    

    hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a program work and compile in both WIN\Linux . I
I want to write a little program which is able to work with Google
I don't know how to code this but i want program to skip or
I want a program that would help me create virtual devices on a virtual
I want to program a 3 second delay when the form is submitted. Right
I want a program that runs continually and monitors the time constantly. When it's
I want my program to get notification each time someone makes a post to
I want to program my computer to start automatically at several time intervals. From
I want my program to change its window's caption in response to various user
I want to program a board game (similar to checkers) for the iPhone. Would

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.