Page 2 of 2

Re: sendgadgetcommand

Posted: Sat Oct 15, 2011 4:16 pm
by ts-soft
t57042 wrote:What if the receiver is not a PB program?
You can only use the interface by the receiver. There is no standard way for all applications.

Re: sendgadgetcommand

Posted: Sat Oct 15, 2011 6:57 pm
by Little John
netmaestro wrote:This sample sends buttonclicks that are happening in a way visible to the user. To send "silent" clicks, remove the delay from SendVisibleClick or simpy send the #BM_CLICK message.
This is a nice instructive example!
On my system (Win XP Pro SP 3 x86) I have to replace

Code: Select all

calc = FindWindow_("CalcFrame", 0)
with

Code: Select all

calc = FindWindow_("SciCalc", 0)
and then it works fine.
Than you!

Regards, Little John

Re: sendgadgetcommand

Posted: Sat Oct 15, 2011 7:33 pm
by RASHAD
Fri Oct 14, 2011 7:58 pm
Sat Oct 15, 2011 6:57 pm

23 hour late

Re: sendgadgetcommand

Posted: Mon Oct 17, 2011 10:30 am
by t57042
Thanks everybody, works nicely on XP ans W7

Richard