Re: [Lazarus] VK_* problem.

2016-10-29 Thread Larry Dalton via Lazarus
Thanks! Sent from my iPhone > On Oct 29, 2016, at 10:18, silvioprog via Lazarus > wrote: > >> On Sat, Oct 29, 2016 at 11:59 AM, Balázs Székely via Lazarus >> wrote: >> KeyInput.Down(VK_SHIFT); >> KeyInput.Press(VK_L); >> KeyInput.Up(VK_SHIFT); >> //... > > > It allows you to send s

Re: [Lazarus] VK_* problem.

2016-10-29 Thread silvioprog via Lazarus
On Sat, Oct 29, 2016 at 11:59 AM, Balázs Székely via Lazarus < lazarus@lists.lazarus-ide.org> wrote: > KeyInput.Down(VK_SHIFT); > KeyInput.Press(VK_L); > KeyInput.Up(VK_SHIFT); > //... It allows you to send string too, eg: KeyInput.Press('hello WORLD'); -- Silvio Clécio -- __

Re: [Lazarus] VK_* problem.

2016-10-29 Thread Balázs Székely via Lazarus
KeyInput.Down(VK_SHIFT); KeyInput.Press(VK_L); KeyInput.Up(VK_SHIFT); //... -- View this message in context: http://free-pascal-lazarus.989080.n3.nabble.com/Lazarus-VK-problem-tp4050119p4050121.html Sent from the Free Pascal - Lazarus mailing list archive at Nabble.com. -- ___

Re: [Lazarus] VK_* problem.

2016-10-29 Thread Larry Dalton via Lazarus
I need to correct the previous email. The line 'The resulting string is 'al'' should not be there. On Sat, Oct 29, 2016 at 9:24 AM, Larry Dalton wrote: > I have an application that requires MouseAndKeyInput.lpk. I am using > lazarus_1.6-0_amd64.deb, fpc-src_3.0.0-151205_amd64.deb, on Linux > Cin

[Lazarus] VK_* problem.

2016-10-29 Thread Larry Dalton via Lazarus
I have an application that requires MouseAndKeyInput.lpk. I am using lazarus_1.6-0_amd64.deb, fpc-src_3.0.0-151205_amd64.deb, on Linux Cinnamon. I also am using it on Windows 7, and Windows 10. I need to print strings at a certain position on a webpage. I can't get it to print uppercase letters. He