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

  • Home
  • SEARCH
  • 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 9173505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:35:55+00:00 2026-06-17T16:35:55+00:00

I have created a borderless window that uses a wndProc() function that forces the

  • 0

I have created a borderless window that uses a wndProc() function that forces the WM_NCHITTEST case to return HTCAPTION;, which allows the user to drag the window, no matter where his cursor is located.
The problem is that I have set up a custom cursor, but with the abovementioned method, the cursor is always set back to IDC_ARROW.
How do I fix this?

EDIT: I’ve also tried using SetCursor() in the WM_NCHITTEST case, but it didn’t work.

  • 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-06-17T16:35:56+00:00Added an answer on June 17, 2026 at 4:35 pm

    You can use the WM_SETCURSOR message to override the cursor. The LOWORD of lParam indicates the hit test code, the one that you altered with the WM_NCHITTEST handler. This worked well:

    static HCURSOR CustomCursor;
    
    LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
    {
        switch (message)
        {
        case WM_NCHITTEST: {
            LRESULT result = DefWindowProc(hWnd, message, wParam, lParam);
            if (result == HTCLIENT) result = HTCAPTION;             
            return result;
        }
        case WM_SETCURSOR: 
            if (LOWORD(lParam) == HTCAPTION) {
                SetCursor(CustomCursor);
                return TRUE;
            }
            return DefWindowProc(hWnd, message, wParam, lParam);
        // etc...
    }
    

    Initialize CustomCursor in your window init. Say:

    CustomCursor = LoadCursor(hInstance, MAKEINTRESOURCE(IDC_SIZEALL));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a function that shows/hides different messages according to a combination of
I have created a borderless (and scrollbox-less) console application, but I have found that
So I'm using Visual C++, and I have created a draggable, borderless window. Anyway,
I have created a borderless window style wherein I draw the chrome (Borders, TitleBar,
I have created a function that loops a folder and retrieves each image file
have created a map that I'm trying to have function similar to 'My Maps'.
I have overloaded NSWindow and have created a custom window of my own (Borderless
I have a swing program which creates a fullscreen borderless window -- I am
I have created a method which takes generate random numbers with the condition that
I have created some JQuery that will expand a div 'popup' on hover and

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.