Does anyone know of any method available to establish the location of the 
cursor in a RichEdit object?

Although it is possible to create fully functional "Copy" & "Cut" methods for 
manipulating text by combining the RichEdit->Selection() method with the 
Win32::Clipboard, it doesn't appear that there is a work-around for "Pasting" 
text at the cursor.

So far I have been stuck with only being able to "append" text as follows:

sub Paste_Click {

        $Clip = Win32::Clipboard();
        my $pastey = $Clip->Get();

        $Win->Editor->Text($Win->Editor->Text . $pastey);
}

Is there a solution to be found in any other modules?

Also are there any Win::GUI methods & events that are undocumented for the 
objects? For instance, are there Mouse events, such as MouseOver?

I thank you for giving my questions consideration.

- Bone Digger

------------------------------------------------------------
This e-mail has been sent to  you courtesy of OperaMail,  as a  free  service  from
Opera  Software,  makers  of the award-winning Web Browser, Opera. Visit us at
http://www.opera.com/ or our portal at: http://www.myopera.com/ Your free e-mail 
account is waiting at: http://www.operamail.com/
------------------------------------------------------------


Reply via email to