Re: [Jprogramming] Windows Clipboard

2014-11-13 Thread bill lam
Both J6 and J8 access clipboard using wd cmds, wd'clipcopy' and wd'clippaste' the wdclipread is a cover verb in J6, but J8 uses another cover verb. see the comment from Chris. Or you can just use wd cmds directly. On 14.11.2014, at 5:31, "Leigh J. Halliwell" wrote: > Dear J Forum: > > > >

Re: [Jprogramming] Windows Clipboard

2014-11-13 Thread chris burke
The J8 equivalents are clipread and clipwrite in the jqtide locale. You can define the following for your existing code: wdclipread=: clipread_jqtide_ wdclipwrite=: clipwrite_jqtide_ On Thu, Nov 13, 2014 at 1:31 PM, Leigh J. Halliwell wrote: > Dear J Forum: > > > > I've upgraded to J802

Re: [Jprogramming] Windows Clipboard

2014-11-13 Thread Kenneth Lettow
rote: > wdclippaste > wd@('clippaste'"_) ::(''"_) > > I don't know the other one, but > > wd 'clipcopy 1 2 3' > > puts '1 2 3' on clipboard. > > > - Original Message - > From: Leigh J. Halliwell > To

Re: [Jprogramming] Windows Clipboard

2014-11-13 Thread 'Pascal Jasmin' via Programming
wdclippaste wd@('clippaste'"_) ::(''"_) I don't know the other one, but wd 'clipcopy 1 2 3' puts '1 2 3' on clipboard. - Original Message - From: Leigh J. Halliwell To: programm...@jsoftware.com Cc: Sent: Thursday, No

[Jprogramming] Windows Clipboard

2014-11-13 Thread Leigh J. Halliwell
Dear J Forum: I've upgraded to J802, but now my scripts that invoked wdclipread and wdclipwrite can't find those verbs. Are they still available in some library, or does J8 use another method for passing data to and from the clipboard? Thanks for the help. Sincerely, Leigh Leigh J