Link to home
Start Free TrialLog in
Avatar of MAVERICK
MAVERICKFlag for United States of America

asked on

RTF cursor Pos

How do u position your cursor in a RTF box
Rather like the LOCATE statement in GWbasic.
I have an app wich needs to scan a RTF box, change the color of certain parts.
Avatar of Dalin
Dalin

MAVERICK,
See if this helps you:

Put this code in the general declare area:

Type RECT
        Left As Long
        Top As Long
        Right As Long
        Bottom As Long
End Type

Private Declare Function GetWindowRect Lib "user32" (ByVal hwnd As Long, lpRect As RECT) As Long

Private Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long


Put the code in where You need to place the mouse pointer to the control:

    Dim MousePos As RECT
    Call GetWindowRect(YourControlNAme.hwnd, MousePos)
    Call SetCursorPos(MousePos.Left, MousePos.Top)

If you have any problems, please let me know.
Regards
Dalin
hmmm...

Maverick, I'm not sure I understand the question but if you're trying to set the curser position in a RichTextBox - you can do this using the SelStart property.  For example, the example below moves the curser to the middle of the text.  To see it work, create a new project, add a CommandButton and a RichTextBox.  Add the following code to the CommandButton and run.  Type some text into the RichTextBox and then click the command button...

Private Sub Command1_Click()
 RichTextBox1.SelStart = Len(RichTextBox1.Text) \ 2
 RichTextBox1.SetFocus
End Sub
Avatar of MAVERICK

ASKER

The dalin exaple comes up with the error "ambiguous name detected: RECT"

Can u email me a working example?

BTW mr Mick ur example worked except I really need to set both the line and the column
thanxs for both
ASKER CERTIFIED SOLUTION
Avatar of marti
marti

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
MAVERICK,
 You must have somewhere had another variable or something named RECT.
Try to use Find RECT.
I just tested it again and no error.
Regards
Dalin



I checked for RECT variables in the code and found none!
just incase the problem is something else, could u email the complete project to
tomcat203@geocities.com.

Marti... ur example didn't set the co-ordinates properly!
can u email the example project!


sorry to be pedantic but.............

Maverick, marti's answer will not work because s/he's assuming that there is a vbCrLf at the end of each line and when a line wraps, there's no vbCrLf character.

Considering that you stated you wish to "change the color of certain parts" and considering that any search of the text contained in a MultiLine control would return the character offset and not the line and column...

How is it that you can't use my original suggestion?… and how can you use a Col & Row values to manipulate data in the control when this isn’t the way windows locates characters in MultiLine controls?

mrmick, you can always search in variable set to:
sText=RichTextBox1.Text & vbCrLf

MAVERICK I'll send you the working sample.
marti, the problem is that lines wrap in a Text/RichText box.  When they do... there's no vbCrLf appended to the text to indicate where a line breaks; therefore, counting lines on this basis doesn't work.  You are, in a sense, counting paragraphs.  Try typing until the text automatically wraps to the next line (don't use the enter key)... and then try positioning the cursor past that line.  The problem with this method will become obvious.
Sounds quite strange but RichTextBox doesn't seem to have wordwrap
Thanks both for the answers!

I have devised a method to solve the problem based on a variation of both answers which works properly!!!!

Incase u wonder why I accepted the answer which was not EXACTLY what I wanted is the suggestion solved the problem anyway!
thanxs both of u

BTW Ancient Mariner had a suggestion for the project which relied upon the Row/Col method!