Bryce
(KiX Supporter)
2002-07-11 07:35 AM
Kixforms and win9x

Shawn I am getting some feed back from win9x users that kixforms is not working, as in buttons and events are not firing. NT computers are working fine.

I am trying to get more information, but i do not have a win9x computer to test on.

Bryce


Bryce
(KiX Supporter)
2002-07-11 07:37 AM
Re: Kixforms and win9x

damn... i just RTFM.... win9x not supported.... [Frown]

LonkeroAdministrator
(KiX Master Guru)
2002-07-11 07:42 AM
Re: Kixforms and win9x

bryce, isn't that great?

my tools are not only ones not supporting those not-supporting-OS'es...


ShawnAdministrator
(KiX Supporter)
2002-07-11 02:05 PM
Re: Kixforms and win9x

Bryce,

Kixforms is like 99% there for Win9x - the event strings aren't being returned properly on 9x ... two options:

1) If urgent, I can dive into getting that 1% fixed on the current build.

2) Kixforms TNG (The Next Generation) will have 9x support ... but isn't available yet ...

-Shawn


Bryce
(KiX Supporter)
2002-07-11 04:55 PM
Re: Kixforms and win9x

Go ahead and work on TNG, from what you have said I should not have to hard of a time adapting to the new version.

Bryce

[ 11 July 2002, 16:55: Message edited by: Bryce ]


Bryce
(KiX Supporter)
2002-07-12 06:35 PM
Re: Kixforms and win9x

didn't want to start a whole other thread....

But I have a feature request shawn [Big Grin] , the ability to minimize to the Tray or the Task bar.

Bryce


ShawnAdministrator
(KiX Supporter)
2002-07-12 06:39 PM
Re: Kixforms and win9x

Hi bud - get yourself the latest build (20) and try this script:

code:
break on

$form = createobject("kixtart.form")
$form.text = "Shawn"
$form.width = 300
$form.height = 300
$form.fontname = "verdana"
$form.fontsize = 12

$minimize = $form.commandbutton("Minimize",10,10)
$minimize.center
$minimize.onclick = "$$form.show(2)"

$form.center
$form.show
while $form.visible
$=execute($form.doevents)
loop

exit 1

note: show(2) 2=minimize

-Shawn

[ 12 July 2002, 19:05: Message edited by: Shawn ]


LonkeroAdministrator
(KiX Master Guru)
2002-07-12 06:44 PM
Re: Kixforms and win9x

bryce is little late...
wasn't this implemented allready at the beginning of the week? or even last week [Razz]


Bryce
(KiX Supporter)
2002-07-12 07:14 PM
Re: Kixforms and win9x

hmmm I got build 20, ran your sample and still it will only minimize to the taskbar when I click on the commandbutton $minimize, I am guessing that .show(2) will place it on the Tray?

Bryce


LonkeroAdministrator
(KiX Master Guru)
2002-07-12 07:17 PM
Re: Kixforms and win9x

bryce,
from on build 18 it has been possible using these.

modes are:
HIDE 0
SHOWNORMAL 1
SHOWMINIMIZED 2
SHOWMAXIMIZED 3
SHOWNOACTIVATE 4
SHOW 5
MINIMIZE 6
SHOWMINNOACTIVE 7
SHOWNA 8
RESTORE 9
SHOWDEFAULT 10
FORCEMINIMIZE 11

more on http://81.17.37.55/board/ultimatebb.php?ubb=get_topic;f=13;t=000192


ShawnAdministrator
(KiX Supporter)
2002-07-12 07:21 PM
Re: Kixforms and win9x

show(2) is a new method to automatically (programatically) script a minimize. Running in the system tray is a whole new matter - completely different mechanism for doing that ... good idea though - not supported in current build ... hmmmm ... [Wink]

[ 12 July 2002, 19:22: Message edited by: Shawn ]