You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Venkatesh S. <Ven...@ln...> - 2011-03-31 04:42:31
|
Hi Developers,
Iam using WATSUP for automation of a MFC application.
MFC has a top level window, within which there is a dock window, and with dock window there are 4 dock bars, within which other controls are there.
Please tell me how do i access the dock window and the dock bars.
I have used,
a. findTopWindows to get the top window control.
b. dumpWindow is giving the handles of the
[[2688192,
'',
'TkChild',
[[1049892, [[1377566, '', 'Static'], [3671270, '', 'Static']]],
[1705298, [[1443106, '', 'TkChild'], [1377562, '', 'ScrollBar']]]]],
[[]],
[[]]]
c. how should i use these handles in order to get control of the dock window and dock bars.
d. In the 'Show window' tool, it is recognising the controls, but some controls are unnamed, so what is the way to recognize unnamed controls ?
Regards
*****************************
Venkatesh Sanganal
Asst Manager(Design),
Spectrum Infotech Pvt Ltd,
(Larsen & Toubro Ltd )
145/2, Komarla Solitaire,
Old Madras Rd, CV Raman nagar,
Nagavarapalya, Blr-560093
Phone: 91.80.67745144
Email:ven...@Ln... Mobile : 9448349200
******************************
Larsen & Toubro Limited
www.larsentoubro.com
This Email may contain confidential or privileged information for the intended recipient (s) If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system.
|
|
From: Venkatesh S. <Ven...@ln...> - 2011-03-30 08:30:24
|
Hi all,
Iam using WATSUP for automation of a MFC application.
MFC has a top level window, within which there is a dock window, and with dock window there are 4 dock bars, within which other controls are there.
Please tell me how do i access the dock window and the dock bars.
I have used,
a. findTopWindows to get the top window control.
b. dumpWindow is giving the handles of the
[[2688192,
'',
'TkChild',
[[1049892, [[1377566, '', 'Static'], [3671270, '', 'Static']]],
[1705298, [[1443106, '', 'TkChild'], [1377562, '', 'ScrollBar']]]]],
[[]],
[[]]]
c. how shuold i use these handles in order to get control of the dock window and dock bars.
Thanks in Advance,
Regards
*****************************
Venkatesh Sanganal
Asst Manager(Design),
Spectrum Infotech Pvt Ltd,
(Larsen & Toubro Ltd )
145/2, Komarla Solitaire,
Old Madras Rd, CV Raman nagar,
Nagavarapalya, Blr-560093
Phone: 91.80.67745144
Email:ven...@Ln... Mobile : 9448349200
******************************
Larsen & Toubro Limited
www.larsentoubro.com
This Email may contain confidential or privileged information for the intended recipient (s) If you are not the intended recipient, please do not use or disseminate the information, notify the sender and delete it from your system.
|
|
From: Kun H. <kun...@uq...> - 2009-06-21 09:18:55
|
Hi there, I just came across this project last week. I downloaded the 0.4.3 source code from http://www.tizmoi.net/downloads/watsup-0.4.3.zip Some of the examples works very well. But some did not. Especially, the wxWidget related code is broken. Then I try to get the source from sourceforge CVS repository, but getting a message saying annonymous access is not allowed: $ cvs -d:pserver:ano...@wa...:/cvsroot/watsup login (Logging in to ano...@wa...) CVS password: cvs login: authorization failed: server watsup.cvs.sourceforge.net rejected access to /cvsroot/watsup for user anonymous I wonder if there is any way that I can get the source from the CVS? I am not posting to the users' list, because I am thinking of fixing the broken part, at least the wxWidget part. If there is no anonymous access to CVS, can I please get the most updated source, so at least I can send the patch back later? Best regards, Kun |
|
From: Tim C. <ti...@ti...> - 2008-01-08 19:01:12
|
There has not been much interest in developing the toolset further. It works as is, and the original developers now have time commitments elsewhere, I'm afraid Tim Nick Seow wrote: > (Sending to the user list as well, since the devel list seems to be > inactive... Is this project maintained?) > > Hi, > > I was trying to set items in a ListBox today, but the current > selectListBoxItem() function seems to be incorrect (at least, on the > version of Windows XP I'm using... do the meaning of these Windows > messages change between versions?) > > It does: > win32gui.SendMessage(hwnd, win32con.LB_SETCURSEL, item, 0) > _sendNotifyMessage(hwnd, win32con.LBN_SELCHANGE) > > Whereas via trial and error it seems that the following works: > > win32gui.SendMessage(hwnd, win32con.LB_SETCURSEL, onOrOff, item) > > Where "item" is the index of the listbox item you want to change, and > onOrOff is 1 or 0. > > Is this a known issue? Any chance of it being fixed? > > Thanks, > > Nick > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace > _______________________________________________ > Watsup-users mailing list > Wat...@li... > https://lists.sourceforge.net/lists/listinfo/watsup-users > > |
|
From: Nick S. <nic...@gm...> - 2008-01-08 04:35:39
|
Oh, You still need to watsup.winGuiAuto._sendNotifyMessage(hwnd, win32con.LBN_SELCHANGE) to finish "clicking" on the listbox item. Nick On Jan 8, 2008 3:04 PM, Nick Seow <nic...@gm...> wrote: > (Sending to the user list as well, since the devel list seems to be > inactive... Is this project maintained?) > > Hi, > > I was trying to set items in a ListBox today, but the current > selectListBoxItem() function seems to be incorrect (at least, on the > version of Windows XP I'm using... do the meaning of these Windows > messages change between versions?) > > It does: > win32gui.SendMessage(hwnd, win32con.LB_SETCURSEL, item, 0) > _sendNotifyMessage(hwnd, win32con.LBN_SELCHANGE) > > Whereas via trial and error it seems that the following works: > > win32gui.SendMessage(hwnd, win32con.LB_SETCURSEL, onOrOff, item) > > Where "item" is the index of the listbox item you want to change, and > onOrOff is 1 or 0. > > Is this a known issue? Any chance of it being fixed? > > Thanks, > > Nick > |
|
From: Nick S. <nic...@gm...> - 2008-01-08 04:04:30
|
(Sending to the user list as well, since the devel list seems to be
inactive... Is this project maintained?)
Hi,
I was trying to set items in a ListBox today, but the current
selectListBoxItem() function seems to be incorrect (at least, on the
version of Windows XP I'm using... do the meaning of these Windows
messages change between versions?)
It does:
win32gui.SendMessage(hwnd, win32con.LB_SETCURSEL, item, 0)
_sendNotifyMessage(hwnd, win32con.LBN_SELCHANGE)
Whereas via trial and error it seems that the following works:
win32gui.SendMessage(hwnd, win32con.LB_SETCURSEL, onOrOff, item)
Where "item" is the index of the listbox item you want to change, and
onOrOff is 1 or 0.
Is this a known issue? Any chance of it being fixed?
Thanks,
Nick
|
|
From: Simon B. <sim...@gm...> - 2005-03-22 09:13:42
|
http://www.pythonware.com/daily/index.htm#111142613789246962 ;-) -- Cheers, Simon B, si...@br..., http://www.brunningonline.net/simon/blog/ |