Page 2 of 3 <123>
Topic Options
#90097 - 2002-12-02 10:48 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
think this can be handled as expected ... or not ?
_________________________



Top
#90098 - 2002-12-02 10:50 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
for reasons of being forms conform you can always make a costum subform !

(I had this exercised with a splash screen , one can mark to never show again)
_________________________



Top
#90099 - 2002-12-02 10:51 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
this can be handled as not expected.
expected behaviour would be similarity.

anyway, if this is expected, my message would be request to change it.

and meanwhile I turn back to using kixtarts function.
_________________________
!

download KiXnet

Top
#90100 - 2002-12-02 11:03 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
and the msgbox holds your script execution untill it'S answered , no ?
_________________________



Top
#90101 - 2002-12-02 11:15 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
as it's in own process, no
_________________________
!

download KiXnet

Top
#90102 - 2002-12-05 02:45 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
shawn, you got anything to say? [Frown]
_________________________
!

download KiXnet

Top
#90103 - 2002-12-05 03:04 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Can you give me the Readers Digest version of what the problem is ... i've downloaded a couple of these sample scripts, but can you bring me up-to-speed ?
Top
#90104 - 2002-12-05 03:10 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
simply, install new checker and see how it should go [Wink]

the current status is that I handled the removing of "active" element borders around button by sending a tab-character to form with sendkeys.

with kixforms functions, I could remove the focus but the black border remained.

so, seems that the setfocus does not "activate" the control and this causes that there is still left the borders around the old focused control.

kind of mark of users last action.
_________________________
!

download KiXnet

Top
#90105 - 2002-12-05 03:26 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Removed the focus with TabStop = False ?
Top
#90106 - 2002-12-05 03:27 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11623
Loc: CA
[Cool]
Top
#90107 - 2002-12-05 03:28 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
the tabstop does not with it if user clicks the control with his mouse.
_________________________
!

download KiXnet

Top
#90108 - 2002-12-05 03:31 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11623
Loc: CA
Lonkero,

Sorry but I'm not sure what you're trying to explain. Can you try explaining another way?

Top
#90109 - 2002-12-05 03:32 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Heres the definition of TabStop :


Gets or sets a boolean indicating whether the user can give the focus to this control using the TAB key. The default is True.


TabStop just disables the user from navigating to the button via the TAB key ... the mouse is not effected by this property.

Top
#90110 - 2002-12-05 03:33 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
[Mad]
well, at least jochen understood me.
should I hire an interpreter? [Big Grin]
_________________________
!

download KiXnet

Top
#90111 - 2002-12-05 03:36 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
shawn, yes yes.
but the issue is, that still after I use $anotherControl.setfocus the control stays "active"
active by means of the black border around it.

you can see it with those test scripts.

btw, someone else should also try them and maybe even understand. [Razz]
_________________________
!

download KiXnet

Top
#90112 - 2002-12-05 03:36 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11623
Loc: CA
Only if he speaks ebonics or spanish...

LOL

No, just sometimes difficult to get your idea across in writing let alone tranlating the meaning into another language.

Top
#90113 - 2002-12-05 03:39 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Yeah, i think i see behavior now. You click a button and the highlite border turns on - then if you SetFocus in code to another control, the highlite border stays on the old control, yeah ?
Top
#90114 - 2002-12-05 03:41 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Les Offline
KiX Master
*****

Registered: 2001-06-11
Posts: 12734
Loc: fortfrances.on.ca

YES!



[ 05. December 2002, 03:42: Message edited by: LLigetfa ]
_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.

Top
#90115 - 2002-12-05 03:41 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
shawn, I wonder what in my words was so different that it takes for everyone hour or 2 to understand? [Frown]
should I move to canada and learn how you ppl think so could write better [Wink]

anyway, you got it.
_________________________
!

download KiXnet

Top
#90116 - 2002-12-05 03:46 AM Re: tabstop/setfocus/enabled - kixforms button weirdness
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Let me test this with vb6 ... right back ...
Top
Page 2 of 3 <123>


Moderator:  Shawn, ShaneEP, Ruud van Velsen, Arend_, Jochen, Radimus, Glenn Barnas, Allen, Mart 
Hop to:
Shout Box

Who's Online
0 registered and 515 anonymous users online.
Newest Members
gespanntleuchten, DaveatAdvanced, Paulo_Alves, UsTaaa, xxJJxx
17864 Registered Users

Generated in 0.071 seconds in which 0.025 seconds were spent on a total of 12 queries. Zlib compression enabled.

Search the board with:
superb Board Search
or try with google:
Google
Web kixtart.org