forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Window Spy

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Bug Reports
View previous topic :: View next topic  
Author Message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Fri Sep 20, 2002 9:49 pm    Post subject: Window Spy Reply with quote

If you "spy" on Windows Explorer, you will get error 10 (Command Nested too Deeply) on line 192.
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Fri Sep 20, 2002 9:57 pm    Post subject: Reply with quote

It works fine in Windows 95...

What OS are you using?
Have you tried rebooting and checking it again?

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Fri Sep 20, 2002 10:01 pm    Post subject: Reply with quote

I have an exceptionally large amount of buttons and extra controls on Windows Explorer...I have had this problem before (since I got VDS) when there are too many controls on the window I am Spying on. I will see if I can get in example in a minute. Smile
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Fri Sep 20, 2002 10:12 pm    Post subject: Reply with quote

OK...this is wierd too: Window Spy will not tell what elements are on this dialog. It only tells the class name and title. Script generates 999 TEXT elements. Wink

Code:
Title Error!
REM ==== Important: Please wait until the code generates 999 elements. May take up to 10 seconds. ====
  DIALOG CREATE,Window Spy Error!,-1,0,240,160,CLASS ERRORBOX
  %%count = 0
  repeat
  DIALOG ADD,TEXT,TEXT%%count,%%count,%%count,%%count,%%count,Text
  %%count = @succ(%%count)
  until @equal(%%count,999)
  DIALOG SHOW
:Evloop
  wait event
  goto @event()
:Close
  exit

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Fri Sep 20, 2002 10:22 pm    Post subject: Reply with quote

Strange.... 8O

I'd still like to know what OS you have. Wink

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Fri Sep 20, 2002 10:44 pm    Post subject: Reply with quote

Sorry, I got too caught up in writing the example.

I have Windows XP Home Edition...

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Tommy
Admin Team


Joined: 16 Nov 2002
Posts: 746
Location: The Netherlands

PostPosted: Fri Sep 20, 2002 10:51 pm    Post subject: Reply with quote

I think this will happen if too many group boxes/panels are stacked on eachother on the
dialog which is being spied on.
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Fri Sep 20, 2002 10:57 pm    Post subject: Reply with quote

Tommy, I modified FF's example so the elements
don't overlap, and Window Spy still shows only the
HANDLE, CLASS and TITLE of the main window...

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Sat Sep 21, 2002 11:40 am    Post subject: Reply with quote

Hmmm... Now Window Spy works on this dialog... Confused

I did, though, have to repeat the "spy" process a couple of times for it to work.

Code:
Title test
  DIALOG CREATE,New Dialog,-1,0,556,310
  DIALOG ADD,STYLE,STYLE1,,,,,
  DIALOG ADD,BITBTN,BITBTN1,5,18
  DIALOG ADD,BUTTON,BUTTON1,12,105,,,BUTTON1
  DIALOG ADD,SPIN,SPIN1,14,193
  DIALOG ADD,EDIT,EDIT1,50,16,,,EDIT1
  DIALOG ADD,LIST,LIST1,46,220,102,48
  DIALOG ADD,COMBO,COMBO1,84,9,,,COMBO1
  DIALOG ADD,RADIO,RADIO1,110,8,80,71,RADIO1,Value 1|Value 2|Value 3,Value 1
  DIALOG ADD,CHECK,CHECK1,13,342,,,CHECK1
  DIALOG ADD,PROGRESS,PROGRESS1,66,345,,,0
  DIALOG ADD,TRACKBAR,TRACKBAR1,121,118,,,0
  DIALOG ADD,GROUP,GROUP1,110,342,,,GROUP1
  DIALOG ADD,TAB,TAB1,156,125,112,36,Tab 1|Tab 2|Tab 3
  DIALOG ADD,MENU,MENU1
  DIALOG ADD,TEXT,TEXT1,167,286,,,TEXT1
  DIALOG ADD,STATUS,STATUS1,STATUS1
  DIALOG ADD,BITMAP,BITMAP1,203,15,0,0
  DIALOG ADD,SHAPE,SHAPE1,222,70,,,WHITE,BLACK,,SQUARE
  DIALOG ADD,PIECHART,PIECHART1,221,139,,,0
  DIALOG ADD,LEVEL,LEVEL1,218,210,24,66,0
  DIALOG ADD,SCOPE,SCOPE1,224,244,66,40,0
  DIALOG ADD,GRADIENT,GRADIENT1,188,324,,,BLACK,BLUE,,BOTTOMTOTOP
  DIALOG ADD,CALENDAR,CALENDAR1,180,406,131,69,21/09/2002
  DIALOG ADD,ANIICON,ANIICON1,247,321
  DIALOG ADD,TIME,TIME1,256,384
  DIALOG SHOW
:Evloop
  wait event
  goto @event()
:BITBTN1BUTTON
  info Replace this line with code to process the BITBTN1BUTTON event
  goto evloop
:BUTTON1BUTTON
  info Replace this line with code to process the BUTTON1BUTTON event
  goto evloop
:Tab 1CLICK
:Tab 2CLICK
:Tab 3CLICK
  info Replace this line with code to process the Tab event
  goto evloop
:Close
  info Replace this line with code to be executed before the dialog closes
  exit

_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Sun Nov 10, 2002 1:27 pm    Post subject: Reply with quote

Here is a screen shot of what the error looks like (taken when trying to "spy" Windows Explorer)


_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Bug Reports All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group