Page 1 of 1

Control-A to select all in DBRichViewEdit text

Posted: Mon Feb 28, 2011 4:23 am
by agent86
I am creating my own Auto Text procedure...

I can't seem to select all the text in a DBRichViewEdit using Control-A. Works fine if I highlight and Control-C and Control-V to paste it into the RichViewEdit.

I want to select all text and move it and the formatiing to a RichViewEdit using:

Control-A select all
Control-C cut highlighted text
Control-V paste hightlighted text.

Just can't seem to make Control-A work.

Posted: Mon Feb 28, 2011 4:43 pm
by Sergey Tkachenko
Ctrl+C and Ctrl+V are processed by the control itself. But Ctrl+A does not.
Create a command with Ctrl+A shortcut (or use OnKeyDown) and call DBRichViewEdit.SelectAll.

Thank you...

Posted: Tue Mar 01, 2011 3:07 am
by agent86
I just "activated" the RVE actionlist item, Select All. Works great.