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 1898264
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T06:44:39+00:00 2026-05-17T06:44:39+00:00

I am trying to use following code to retrieve character index by position in

  • 0

I am trying to use following code to retrieve character index by position in a RichTextBox. I know I can use GetCharIndexFromPosition method provided by RichTextBox Class, but I want to know what is wrong with following code:

SendMessage import is this:

[DllImport("User32.dll", EntryPoint = "SendMessage", CharSet= CharSet.Auto)]
public static extern IntPtr SendMessage(IntPtr hWnd, int msg, int wParam, ref POINTL lParam);

And then this call:

int returnVal = (int)WinUser.SendMessage(this._textBox.Handle, (int)WinUser.Message.EM_CHARFROMPOS, 0, ref p);

where p is the POINTL stucture instance containing the screen coordinates with upper-left corner of RichTextBox as origin.

The POINTL Structure is defined as

[StructLayout(LayoutKind.Sequential)]
public struct POINTL
{
    public long x;
    public long y;
}

The POINTL p has been initialized as:

WinUser.POINTL p;
p.x = 0;
p.y = 0;

NOW THE PROBLEM:

If p is initialized as given above the returnVal is 0

If p is anything else like {x = 10, y =10} or {x = 1 and y = 1} the returnVal is 1

In both the cases the function GetCharIndexFromPosition gives the correct index.

  • 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-17T06:44:40+00:00Added an answer on May 17, 2026 at 6:44 am

    Change long to int.
    (Win32 LONGs are 32-bit integers that correspond to .Net ints)

    .Net’s GetCharIndexFromPosition method is defined as

        public override int GetCharIndexFromPosition(Point pt) { 
            NativeMethods.POINT wpt = new NativeMethods.POINT(pt.X, pt.Y);
            int index = (int)UnsafeNativeMethods.SendMessage(new HandleRef(this, Handle), NativeMethods.EM_CHARFROMPOS, 0, wpt); 
    
            string t = this.Text;
            // EM_CHARFROMPOS will return an invalid number if the last character in the RichEdit
            // is a newline. 
            //
            if (index >= t.Length) { 
                index = Math.Max(t.Length - 1, 0); 
            }
            return index; 
        }
    

    The NativeMethods.POINT type is defined as

        [StructLayout(LayoutKind.Sequential)] 
        public class POINT {
            public int x; 
            public int y; 
    
            public POINT() { 
            }
    
            public POINT(int x, int y) {
                this.x = x; 
                this.y = y;
            } 
    
    #if DEBUG
            public override string ToString() { 
                return "{x=" + x + ", y=" + y + "}";
            }
    #endif
        } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use the following code but it's returning the wrong day of
I am trying to use the following code to write data into an excel
I am trying to use the following code, which I have not been able
I am trying to use the following code to export tables from access to
How do you concatenate bits in VHDL? I'm trying to use the following code:
I'm trying to use opengl in C#. I have following code which fails with
I am trying to use the following code to take screen shots from my
I'm trying to use SDL in C++ with Visual Studio 2008 Express. The following
Trying to use an excpetion class which could provide location reference for XML parsing,
Trying to use a guid as a resource id in a rest url but

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.