I have put an info to the clipboard, is it possible to paste the info from clipboard with enter key to the textbox if i click the paste button? Thanks
PROCEDURE CmdCopy.click()
_cliptext = this.Parent.text1.value
ENDPROC
PROCEDURE CmdPaste.click()
this.parent.text40.value = _cliptext + CHR(13)
ENDPROC
PROCEDURE CmdCopy.click()
_cliptext = this.Parent.text1.value
ENDPROC
PROCEDURE CmdPaste.click()
this.parent.text40.value = _cliptext + CHR(13)
CODE....
CODE....
ENDPROC