Page 2 of 3 <123>
Topic Options
#88479 - 2002-10-07 02:55 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
mm...
for multiline box it would be better to be on...

are you making the richEdit to carry on with the name of textbox?

if not but you will give it fully own name, then I would go with normal textboxes both off.

if there is need for enter, there probably is also need for tab so I think you should make them both the same as default...
 
_________________________
!

download KiXnet

Top
#88480 - 2002-10-07 02:59 AM Re: Kixforms - Version 2.1 (Build 34) Released
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
RichEdit will be a seperate control ... dotnet calls the control a "RichTextBox" ... was talking to Rod about this the other day ... not sure I like the name "RichTextBox". wa u think ?
Top
#88481 - 2002-10-07 03:03 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
I'm not sure is it needed to call it a box at all...

RichEdit
RichText
+
+
RichTextEdit
TextEdit

dunno, this one is your call as can't think of easy self-explatonary name...
 
_________________________
!

download KiXnet

Top
#88482 - 2002-10-07 03:21 AM Re: Kixforms - Version 2.1 (Build 34) Released
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
I kinda like just RichEdit, fe

code:
$RichEdit = $Form.RichEdit



[ 07. October 2002, 03:22: Message edited by: Shawn ]

Top
#88483 - 2002-10-07 05:35 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
mmm...
form is not resize-able by default...
well, I enable it and except that the max/previous-state button would also be enabled...?
_________________________
!

download KiXnet

Top
#88484 - 2002-10-07 06:30 AM Re: Kixforms - Version 2.1 (Build 34) Released
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Hey Jooel - im just working on the ToolTip thingy and boy-o-boy did I ever make a mess of the original implementation. Not that that was bad or anything, was kinda easy actually - but tooltips are supposed to work totally differently then the way i coded it.

This is the way its shaping-up right now ...

code:
 
$ToolTip = $Form.ToolTip

$Button = $Form.Button
$TextBox = $Form.TextBox

$ToolTip.SetToolTip($Button,"The Button ToolTip")
$ToolTip.SetToolTip($TextBox,"The TextBox ToolTip")

Supposed to create a single tooltip control - then assign it to service tooltips for many controls ... actually I think this design might work-out quite nicely - with the new settings like width and maybe things like color - can standardize the tooltip for all controls at once.

Top
#88485 - 2002-10-07 06:42 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
mmm...
quess what this is starting to look like...

so, next job to the end of your stack: F1-popup-help [Razz]
_________________________
!

download KiXnet

Top
#88486 - 2002-10-07 08:34 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
couldn't find it...
is there on your task-list onResize-event?

ye know, can't let the placement of the elements change on the form...
_________________________
!

download KiXnet

Top
#88487 - 2002-10-07 08:51 AM Re: Kixforms - Version 2.1 (Build 34) Released
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
Shawn,

did you try to fix the 'child form radio button bug' in this release ?
Well it seems to freeze the form on click the radio buttons [Eek!]

What was the syntax for disabling Column headers again ?

talk to yer later

J.
_________________________



Top
#88488 - 2002-10-07 09:58 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
hi executive officer...

$list.view=1

seems to do something.
_________________________
!

download KiXnet

Top
#88489 - 2002-10-07 10:02 AM Re: Kixforms - Version 2.1 (Build 34) Released
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
well, yeah but the columns will be disabled too [Roll Eyes]
_________________________



Top
#88490 - 2002-10-07 10:04 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
so, is that bad thing? [Confused]
 
_________________________
!

download KiXnet

Top
#88491 - 2002-10-07 10:10 AM Re: Kixforms - Version 2.1 (Build 34) Released
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
don't think so , it's just one of the four views for Listview i think ... had a chat last week with Shawn and thought he was able to add
$list.ColumnHeaderStyle = NONE or something similar ...
_________________________



Top
#88492 - 2002-10-07 10:11 AM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
so, try if view=2 is ok for you.

did ran some test and making:
code:
$list.view=0
$list.onclick="$$list.view=$$list.view+1"

got some opportunities...

{edit}
can't find that obvious thing anywhere on the dll...

[ 07. October 2002, 10:13: Message edited by: Lonkero ]
_________________________
!

download KiXnet

Top
#88493 - 2002-10-07 10:59 AM Re: Kixforms - Version 2.1 (Build 34) Released
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
None of them , thanks anyway [Big Grin]

It's just not yet implemented ... ok ,the important Issue got lost focus : Child form RadioButton bug
_________________________



Top
#88494 - 2002-10-07 08:23 PM Re: Kixforms - Version 2.1 (Build 34) Released
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
hmmm - found a bug - this doesn't work when trying to retrieve the text value from the main item:

$value = $list.focuseditem.text

workaround with the alias:

$value = $list.focuseditem.subitems(0).text

Top
#88495 - 2002-10-09 11:05 PM Re: Kixforms - Version 2.1 (Build 34) Released
krabourn Offline
Hey THIS is FUN
*****

Registered: 2000-12-11
Posts: 244
Loc: San Antonio, Texas, USA
What is "Enabled rapid clicking of CommandButtons. Buttons no longer support the OnDoubleClick event."?

How do I write the code to simulate a double Click?

Thanks
_________________________
Kelly

Top
#88496 - 2002-10-09 11:19 PM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
if you really want to do a button for doubleclicking, you would catch the clicks and with timer check if the last one was pressed in defined timeframe, say .1 sec.

but, I can't personally think any use for doubleclickable buttons...
maybe I'm just simple...
_________________________
!

download KiXnet

Top
#88497 - 2002-10-10 12:00 AM Re: Kixforms - Version 2.1 (Build 34) Released
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
thats why i turned double click off - can't recall ever seeing a double click button ... the problem was when clicking the button really fast - some events came through as single click and some as double click ... and the button response was sort of awkward looking ...
Top
#88498 - 2002-10-10 02:38 PM Re: Kixforms - Version 2.1 (Build 34) Released
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
.right

what are the affected objects/controls?

tried making listbox aligned right, no go.

{edit}
nah, it seems to be readonly property...

[ 10. October 2002, 14:42: Message edited by: Lonkero ]
_________________________
!

download KiXnet

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 837 anonymous users online.
Newest Members
M_Moore, BeeEm, min_seow, Audio, Hoschi
17883 Registered Users

Generated in 0.075 seconds in which 0.03 seconds were spent on a total of 13 queries. Zlib compression enabled.

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