Re: ON KEY LABEL limitation

2018-04-25 Thread Gene Wirchenko
At 09:39 2018-04-25, Koen Piller wrote: Hi, All News2News topics involving VFP can now be found on GitHub. f.m. if you put following line in your startup.prg (Startup Program in File Locations) On Key Label Alt+D Do "D:\vfp9\debugger.prg" I use: on key label set step on and do

Re: ON KEY LABEL limitation

2018-04-25 Thread Koen Piller
Hi, All News2News topics involving VFP can now be found on GitHub. f.m. if you put following line in your startup.prg (Startup Program in File Locations) On Key Label Alt+D Do "D:\vfp9\debugger.prg" You have the debugger always under your keystrokes ALT+D in any situation. Rgds, Koen 2018-04-25 14

RE: ON KEY LABEL limitation

2018-04-25 Thread Paul Newton
Many thanks to EVERYBODY who has contributed to this thread - highly appreciated Paul Newton -Original Message- From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Thierry Nivelet Sent: 25 April 2018 14:25 To: profox@leafe.com Subject: Re: ON KEY LABEL limitation News2news is

Re: ON KEY LABEL limitation

2018-04-25 Thread Alan Bourke
Merci Thierry. -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/pro

RE: ON KEY LABEL limitation

2018-04-25 Thread Dave Crozier
e goods in the ordinary course of its business. Until such time > as the property in the goods passes to the buyer the seller shall be > entitled at any time > > -Original Message- > From: ProFox On Behalf Of Da

Re: ON KEY LABEL limitation

2018-04-25 Thread Thierry Nivelet
se of its business. > Until such time as the property in the goods passes to the buyer the seller > shall be entitled at any time > > -Original Message- > From: ProFox On Behalf Of Dave Crozier > Sent: 25 April 2

RE: ON KEY LABEL limitation

2018-04-25 Thread Dave Crozier
ge- From: ProFox On Behalf Of Dave Crozier Sent: 25 April 2018 14:07 To: ProFox Email List Subject: RE: ON KEY LABEL limitation Alan, It's been dead for a few months, more's the pity. Dave Crozier Software Developm

RE: ON KEY LABEL limitation

2018-04-25 Thread Dave Crozier
018 13:55 To: profoxt...@leafe.com Subject: Re: ON KEY LABEL limitation FWIW, you should also be able to use BindEvent() to trap Windows WM_INPUT messages. There was an example of this on the News2News site but that site sadly seems to be dead. -- Alan Bourke

Re: ON KEY LABEL limitation

2018-04-25 Thread Alan Bourke
FWIW, you should also be able to use BindEvent() to trap Windows WM_INPUT messages. There was an example of this on the News2News site but that site sadly seems to be dead. -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___ Post Messages to:

RE: ON KEY LABEL limitation

2018-04-25 Thread Paul Newton
Thanks Dave AND Alan -Original Message- From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Dave Crozier Sent: 25 April 2018 13:44 To: ProFox Email List Subject: RE: ON KEY LABEL limitation Keypress Event: PROCEDURE Object.KeyPress LPARAMETERS nKeyCode, nShiftAltCtrl

RE: ON KEY LABEL limitation

2018-04-25 Thread Dave Crozier
passes to the buyer the seller shall be entitled at any time -Original Message- From: ProFox On Behalf Of Paul Newton Sent: 25 April 2018 13:22 To: profox@leafe.com Subject: ON KEY LABEL limitation Hi all I would like an application to be able to trap a keypress with more than one &quo

Re: ON KEY LABEL limitation

2018-04-25 Thread Alan Bourke
You can trap three keys with KeyPress(), and _Screen has KeyPreview() and KeyPress() so maybe you could emulate ON KEY LABEL that way. -- Alan Bourke alanpbourke (at) fastmail (dot) fm ___ Post Messages to: ProFox@leafe.com Subscription Maintenanc

ON KEY LABEL limitation

2018-04-25 Thread Paul Newton
Hi all I would like an application to be able to trap a keypress with more than one "modifier", for example CTRL+ALT+S. Obviously I can't do this with ON KEY LABEL but I wondered if there might be another way ... any ideas much appreciated Many thanks Paul Newton ___