On Aug 10, 2006, at 2:11 AM, dazz wrote:

heyøp

is there's a way to trigger the Edit Menu by code. like I want to do Copy/Paste/Select All, by code


You can write code to do all of those functions if that helps. For editfields:

//Select All:

EditField1.SelStart = 0
EditField1.SelLen = Len(EditField1.Text)

//Copy:

dim c as new Clipboard
c.Text = EditField1.SelText
c.Close

//Paste:

dim c as new Clipboard
EditField1.SelText = c.Text
c.Close

Best,

Jack_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to