WebGadget No TAB works

Just starting out? Need help? Post your questions and find answers here.
ABBKlaus
Addict
Addict
Posts: 1143
Joined: Sat Apr 10, 2004 1:20 pm
Location: Germany

Post by ABBKlaus »

Code: Select all

If Event = #WM_KEYUP ; #WM_KEYDOWN
User avatar
thyphoon
Enthusiast
Enthusiast
Posts: 345
Joined: Sat Dec 25, 2004 2:37 pm

Post by thyphoon »

ABBKlaus wrote:

Code: Select all

If Event = #WM_KEYUP ; #WM_KEYDOWN
Thanks but width #WM_KEYUP the TAB function don't works.
you can't go to the next Field when you press TAB
Another idea ?
Best regards
gnozal
PureBasic Expert
PureBasic Expert
Posts: 4229
Joined: Sat Apr 26, 2003 8:27 am
Location: Strasbourg / France
Contact:

Post by gnozal »

Code: Select all

If Event = #WM_KEYDOWN  And EventwParam() = #VK_TAB
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
User avatar
thyphoon
Enthusiast
Enthusiast
Posts: 345
Joined: Sat Dec 25, 2004 2:37 pm

Post by thyphoon »

gnozal wrote:

Code: Select all

If Event = #WM_KEYDOWN  And EventwParam() = #VK_TAB
Big Thanks Gnozal It's work great now ! :D
Sparkie
PureBatMan Forever
PureBatMan Forever
Posts: 2307
Joined: Tue Feb 10, 2004 3:07 am
Location: Ohio, USA

Post by Sparkie »

Thanks for the bug info guys. I fixed and updated the original code for PB 4.xx :)
What goes around comes around.

PB 5.21 LTS (x86) - Windows 8.1
User avatar
thyphoon
Enthusiast
Enthusiast
Posts: 345
Joined: Sat Dec 25, 2004 2:37 pm

Post by thyphoon »

Sparkie wrote:Thanks for the bug info guys. I fixed and updated the original code for PB 4.xx :)
Thanks for your code. :D
Post Reply