Hi forum,
Is there a way by which i can drag selected text in an access form textbox to a webpage. Or at least if there is a way to make the text "selected" when clicked on in the textbox so that i will simply have to press Ctrl + C.
Regards,
Imran
Hi forum,
Is there a way by which i can drag selected text in an access form textbox to a webpage. Or at least if there is a way to make the text "selected" when clicked on in the textbox so that i will simply have to press Ctrl + C.
Regards,
Imran
In textbox GotFocus or Click event, try:
Me.textboxname.SelStart = 0
Me.textboxname.SelLength = Len(Nz(Me.textboxname, ""))
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
It worked perfectly. Thank you very much