Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cut/Copy/Paste
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00003437
Message ID:
00003458
Views:
33
>How do you activate the Cut/Copy/Paste functions in a TextBox control?

You can set up the standard edit menu of Foxpro's with the following code or do it visually:
DEFINE BAR _med_undo OF _medit PROMPT "\ KEY CTRL+Z, "Ctrl+Z" ;
MESSAGE "Undoes the last command or action"
DEFINE BAR _med_redo OF _medit PROMPT "Re\ KEY CTRL+R, "Ctrl+R" ;
MESSAGE "Repeats the last command or action"
DEFINE BAR _med_sp100 OF _medit PROMPT "\-"
DEFINE BAR _med_cut OF _medit PROMPT "Cu\ KEY CTRL+X, "Ctrl+X" ;
MESSAGE "Removes the selection and places it onto the Clipboard"
DEFINE BAR _med_copy OF _medit PROMPT "\ KEY CTRL+C, "Ctrl+C" ;
MESSAGE "Copies the selection onto the Clipboard"
DEFINE BAR _med_paste OF _medit PROMPT "\ KEY CTRL+V, "Ctrl+V" ;
MESSAGE "Pastes the contents of the Clipboard"
DEFINE BAR _med_clear OF _medit PROMPT "Cle\ MESSAGE "Removes the selection and does not place it onto the Clipboard"
Previous
Reply
Map
View

Click here to load this message in the networking platform