Page 1 of 1 1
Topic Options
#9680 - 2001-06-19 02:11 PM Not exiting after script completes
Anonymous
Unregistered


Hi,

My script is running fine, the box 'please wait while you logon script excecutes' will not go away after the DOS type box has finished, i've added the QUIT command to the bottom of the script but that doesnt work either, any ideas?

Thanks!

Top
#9681 - 2001-06-20 05:23 AM Re: Not exiting after script completes
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear,

Welcome to the board.

Which kixtart version you are running?
What windows version gives problems?
Runs the script correct from a DOS box?
Please put some code on the board.
Greetings.

------------------
Site map:

_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#9682 - 2001-06-20 10:26 AM Re: Not exiting after script completes
Rogier Pelzer Offline
Fresh Scripter

Registered: 2000-02-04
Posts: 41
Loc: The Netherlands
Add a Cookie1 before the exit command, and i'll guess that the problem is gone !

Cheers,

rogier

Top
#9683 - 2001-06-20 11:30 AM Re: Not exiting after script completes
Anonymous
Unregistered


I'm using kix95.363, i have the same problem on both Win95 & 98 (inc. SE). I tried adding the COOKIE1 line at the end of the script and it actually stops the script from exiting at all, so I'm left with the DOS type box up, which i think if a step back?

Would it be an idea for me to post my script up here?

break off
SETCONSOLE("MAXIMIZE")
SETCONSOLE("FOREGROUND")
SETCONSOLE("ALWAYSONTOP")
COLOR m+/n

;SOME USER INFORMATION

;run "\\aglnt01\auditing\Agent32.exe -P \\aglnt01\auditing\auditor.prf"
;USE * /DELETE

CLS

? "PLEASE WAIT, DO NOT TOUCH THE KEYBOARD OR MOUSE!"
?
? "User Name: "

use u: \\Droicon1\USERS\@userid

?
? "Account Comment: " @comment
?
? "Here's the date and time for your convienance:"
? @DAY", " @DATE", " @TIME
?
? "Privilages are:"
?
? "Logged on by: " @LSERVER
?

BIG
@USERID"-" @PRIV
SMALL
?
COLOR g+/n

CLS

;USER SPECIFIC COMMANDS

IF @USERID = "TEMPUSER"
use p: \\droicon1\production
? "User identified as @USERID, mapping to your specific user requirements"
?
ENDIF

IF @USERID = "RW"
?
sleep 1
BIG
"how's ya?"
SMALL
sleep 2
CLS
ENDIF

IF @USERID = "pjk"
? "User identified as @USERID"
run "C:\Progra~1\Intern~1\IEXPLORE.EXE http://10.10.20.9/exchange"
SMALL
ENDIF

IF @USERID = "DJB"
? "User identified as @USERID"
?
ENDIF

IF @USERID = "JC"
?
sleep 1
BIG
"whats that smell?"
SMALL
sleep 2
CLS
ENDIF

IF @USERID = "GL"
use E: \\aglnt01\bacs2
? "User identified as @USERID, mapping to your specific user requirements"
?
ENDIF

;GROUP SPECIFIC COMMANDS

IF INGROUP ("DOMAIN ADMINS")
? "hey your in the DOMAIN ADMIN group!"
?
ENDIF

IF INGROUP ("DOMAIN USERS")
? "Member of DOMAIN USERS group."
?
ENDIF

;DROICON

IF INGROUP ("DROICON")
use h: \\droicon1\droicon
? "Member of DROICON group, mapping h: to DROICON shared drive" ;just confirms the group membership
?
ENDIF

IF INGROUP ("DCCPURCASING")
? "Droicon Plc Purcasing department."
?
use p: \\droicon1\csb
ENDIF

;DIAL-A-UNIT

IF INGROUP ("Dial-A-Unit")
use k: \\droicon1\DialUnit
? "Member of DIAL-A-UNIT group, mapping k: to DIAL-A-UNIT shared drive" ;just confirms the group membership
?
ENDIF

IF INGROUP ("PRODUCTION")
use p: \\droicon1\Production
? "your in the PRODUCTION group, you must be hard, i'm scared" ;just confirms the group membership
?
ENDIF

;GAMMA

IF INGROUP ("GAMMA")
use i: \\droicon1\GAMMA
? "Member of GAMMA group, mapping h: to GAMMA shared drive" ;just confirms the group membership
?
ENDIF

;ADROIT

IF INGROUP ("ADROIT")
use j: \\droicon1\ADROIT
? "Member of ADROIT group, mapping h: to ADROIT shared drive" ;just confirms the group membership
?
ENDIF

IF INGROUP ("ACCOUNTS")
use F: \\aglnt01\bacs1
use M: \\aglnt01\Accounts
? "Member of ACCOUNTS group, mapping M: to Accounts shared drive" ;just confirms the group membership
? "Member of ACCOUNTS group, mapping F: to BACS1 shared drive" ;just confirms the group membership
?
ENDIF

?
?
? "Finished script, thanks for your time."
COOKIE1

Top
#9684 - 2001-06-20 08:38 PM Re: Not exiting after script completes
Anonymous
Unregistered


I have a suggestion...

Instead of putting COOKIE1 at the end of your code, put the word EXIT. Yes, it's simple... but it should work for you.

------------------
Cheers,
Travis

Top
#9685 - 2001-06-21 05:27 AM Re: Not exiting after script completes
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear,

We look at your code and we have some suggestions:


  • we doesn't know which username you are using, but the
    statement RUN "C:\Progra~1\Intern~1\IEXPLORE.EXE ht tp://10.10.20.9/exchange"
    may be prevent the completion of your script.
  • the suggestion of EXIT as last statement is a good idea.
  • the IF INGROUP ("DOMAIN ADMINS") we have changed to
    IF (ingroup("DOMAIN ADMINS") <> 0).
    The last situation will be positive for any kind of group.
  • we have add some debug code to your script. On the file
    c:\kixtart.log you can exactly see which statements were
    executed and what was the time of execution.
    code:

    CLS
    AT (1,1) " "
    IF RedirectOutput("c:\kixtart.log")
    ENDIF
    ?"- 1-"+@time+"- " BREAK OFF
    ?"- 2-"+@time+"- " SetConsole("MAXIMIZE")
    ?"- 3-"+@time+"- " SetConsole("FOREGROUND")
    ?"- 4-"+@time+"- " SetConsole("ALWAYSONTOP")
    ?"- 5-"+@time+"- " COLOR m+/n
    ?"- 6-"+@time+"- "
    ?"- 7-"+@time+"- " ;SOME USER INFORMATION
    ?"- 8-"+@time+"- "
    ?"- 9-"+@time+"- " ;run "\\aglnt01\auditing\Agent32.exe -P \\aglnt01\auditing\auditor.prf"
    ?"- 10-"+@time+"- " ;USE * /DELETE
    ?"- 11-"+@time+"- "
    ?"- 12-"+@time+"- " CLS
    ?"- 13-"+@time+"- "
    ?"- 14-"+@time+"- " ? "PLEASE WAIT, DO NOT TOUCH THE KEYBOARD OR MOUSE!"
    ?"- 15-"+@time+"- " ?
    ?"- 16-"+@time+"- " ? "User Name: "
    ?"- 17-"+@time+"- "
    ?"- 18-"+@time+"- " USE u: \\droicon1\users\@userid
    ?"- 19-"+@time+"- "
    ?"- 20-"+@time+"- " ?
    ?"- 21-"+@time+"- " ? "Account Comment: " @comment
    ?"- 22-"+@time+"- " ?
    ?"- 23-"+@time+"- " ? "Here's the date and time for your convienance:"
    ?"- 24-"+@time+"- " ? @day", " @date", " @time
    ?"- 25-"+@time+"- " ?
    ?"- 26-"+@time+"- " ? "Privilages are:"
    ?"- 27-"+@time+"- " ?
    ?"- 28-"+@time+"- " ? "Logged on by: " @lserver
    ?"- 29-"+@time+"- " ?
    ?"- 30-"+@time+"- "
    ?"- 31-"+@time+"- " BIG
    ?"- 32-"+@time+"- " @userid"-" @priv
    ?"- 33-"+@time+"- " SMALL
    ?"- 34-"+@time+"- " ?
    ?"- 35-"+@time+"- " COLOR g+/n
    ?"- 36-"+@time+"- "
    ?"- 37-"+@time+"- " CLS
    ?"- 38-"+@time+"- "
    ?"- 39-"+@time+"- " ;USER SPECIFIC COMMANDS
    ?"- 40-"+@time+"- "
    ?"- 41-"+@time+"- " IF @userid = "TEMPUSER"
    ?"- 42-"+@time+"- " USE p: \\droicon1\production
    ?"- 43-"+@time+"- " ? "User identified as @USERID, mapping to your specific user requirements"
    ?"- 44-"+@time+"- " ?
    ?"- 45-"+@time+"- " ENDIF
    ?"- 46-"+@time+"- "
    ?"- 47-"+@time+"- " IF @userid = "RW"
    ?"- 48-"+@time+"- " ?
    ?"- 49-"+@time+"- " SLEEP 1
    ?"- 50-"+@time+"- " BIG
    ?"- 51-"+@time+"- " "how's ya?"
    ?"- 52-"+@time+"- " SMALL
    ?"- 53-"+@time+"- " SLEEP 2
    ?"- 54-"+@time+"- " CLS
    ?"- 55-"+@time+"- " ENDIF
    ?"- 56-"+@time+"- "
    ?"- 57-"+@time+"- " IF @userid = "pjk"
    ?"- 58-"+@time+"- " ? "User identified as @USERID"
    ?"- 59-"+@time+"- " RUN "C:\Progra~1\Intern~1\IEXPLORE.EXE http://10.10.20.9/exchange"
    ?"- 60-"+@time+"- " SMALL
    ?"- 61-"+@time+"- " ENDIF
    ?"- 62-"+@time+"- "
    ?"- 63-"+@time+"- " IF @userid = "DJB"
    ?"- 64-"+@time+"- " ? "User identified as @USERID"
    ?"- 65-"+@time+"- " ?
    ?"- 66-"+@time+"- " ENDIF
    ?"- 67-"+@time+"- "
    ?"- 68-"+@time+"- " IF @userid = "JC"
    ?"- 69-"+@time+"- " ?
    ?"- 70-"+@time+"- " SLEEP 1
    ?"- 71-"+@time+"- " BIG
    ?"- 72-"+@time+"- " "whats that smell?"
    ?"- 73-"+@time+"- " SMALL
    ?"- 74-"+@time+"- " SLEEP 2
    ?"- 75-"+@time+"- " CLS
    ?"- 76-"+@time+"- " ENDIF
    ?"- 77-"+@time+"- "
    ?"- 78-"+@time+"- " IF @userid = "GL"
    ?"- 79-"+@time+"- " USE e: \\aglnt01\bacs2
    ?"- 80-"+@time+"- " ? "User identified as @USERID, mapping to your specific user requirements"
    ?"- 81-"+@time+"- " ?
    ?"- 82-"+@time+"- " ENDIF
    ?"- 83-"+@time+"- "
    ?"- 84-"+@time+"- " ;GROUP SPECIFIC COMMANDS
    ?"- 85-"+@time+"- "
    ?"- 86-"+@time+"- " IF Ingroup ("DOMAIN ADMINS")
    ?"- 87-"+@time+"- " ? "hey your in the DOMAIN ADMIN group!"
    ?"- 88-"+@time+"- " ?
    ?"- 89-"+@time+"- " ENDIF
    ?"- 90-"+@time+"- "
    ?"- 91-"+@time+"- " IF Ingroup ("DOMAIN USERS")
    ?"- 92-"+@time+"- " ? "Member of DOMAIN USERS group."
    ?"- 93-"+@time+"- " ?
    ?"- 94-"+@time+"- " ENDIF
    ?"- 95-"+@time+"- "
    ?"- 96-"+@time+"- " ;DROICON
    ?"- 97-"+@time+"- "
    ?"- 98-"+@time+"- " IF Ingroup ("DROICON")
    ?"- 99-"+@time+"- " USE h: \\droicon1\droicon
    ?"- 100-"+@time+"- " ? "Member of DROICON group, mapping h: to DROICON shared drive" ;just confirms the group membership
    ?"- 101-"+@time+"- " ?
    ?"- 102-"+@time+"- " ENDIF
    ?"- 103-"+@time+"- "
    ?"- 104-"+@time+"- " IF Ingroup ("DCCPURCASING")
    ?"- 105-"+@time+"- " ? "Droicon Plc Purcasing department."
    ?"- 106-"+@time+"- " ?
    ?"- 107-"+@time+"- " USE p: \\droicon1\csb
    ?"- 108-"+@time+"- " ENDIF
    ?"- 109-"+@time+"- "
    ?"- 110-"+@time+"- " ;DIAL-A-UNIT
    ?"- 111-"+@time+"- "
    ?"- 112-"+@time+"- " IF Ingroup ("Dial-A-Unit")
    ?"- 113-"+@time+"- " USE k: \\droicon1\dialunit
    ?"- 114-"+@time+"- " ? "Member of DIAL-A-UNIT group, mapping k: to DIAL-A-UNIT shared drive" ;just confirms the group membership
    ?"- 115-"+@time+"- " ?
    ?"- 116-"+@time+"- " ENDIF
    ?"- 117-"+@time+"- "
    ?"- 118-"+@time+"- " IF Ingroup ("PRODUCTION")
    ?"- 119-"+@time+"- " USE p: \\droicon1\production
    ?"- 120-"+@time+"- " ? "your in the PRODUCTION group, you must be hard, i'm scared" ;just confirms the group membership
    ?"- 121-"+@time+"- " ?
    ?"- 122-"+@time+"- " ENDIF
    ?"- 123-"+@time+"- "
    ?"- 124-"+@time+"- " ;GAMMA
    ?"- 125-"+@time+"- "
    ?"- 126-"+@time+"- " IF Ingroup ("GAMMA")
    ?"- 127-"+@time+"- " USE i: \\droicon1\gamma
    ?"- 128-"+@time+"- " ? "Member of GAMMA group, mapping h: to GAMMA shared drive" ;just confirms the group membership
    ?"- 129-"+@time+"- " ?
    ?"- 130-"+@time+"- " ENDIF
    ?"- 131-"+@time+"- "
    ?"- 132-"+@time+"- " ;ADROIT
    ?"- 133-"+@time+"- "
    ?"- 134-"+@time+"- " IF Ingroup ("ADROIT")
    ?"- 135-"+@time+"- " USE j: \\droicon1\adroit
    ?"- 136-"+@time+"- " ? "Member of ADROIT group, mapping h: to ADROIT shared drive" ;just confirms the group membership
    ?"- 137-"+@time+"- " ?
    ?"- 138-"+@time+"- " ENDIF
    ?"- 139-"+@time+"- "
    ?"- 140-"+@time+"- " IF Ingroup ("ACCOUNTS")
    ?"- 141-"+@time+"- " USE f: \\aglnt01\bacs1
    ?"- 142-"+@time+"- " USE m: \\aglnt01\accounts
    ?"- 143-"+@time+"- " ? "Member of ACCOUNTS group, mapping M: to Accounts shared drive" ;just confirms the group membership
    ?"- 144-"+@time+"- " ? "Member of ACCOUNTS group, mapping F: to BACS1 shared drive" ;just confirms the group membership
    ?"- 145-"+@time+"- " ?
    ?"- 146-"+@time+"- " ENDIF
    ?"- 147-"+@time+"- "
    ?"- 148-"+@time+"- " ?
    ?"- 149-"+@time+"- " ?
    ?"- 150-"+@time+"- " ? "Finished script, thanks for your time."
    ?"- 151-"+@time+"- " IF RedirectOutput("")
    ?"- 152-"+@time+"- " ENDIF
    ?"- 153-"+@time+"- " IF MessageBox("script completed", "kixtart", 0, 30)
    ?"- 154-"+@time+"- " ENDIF
    ?"- 155-"+@time+"- " EXIT


    so you see: we have add a messagebox function at the end. so you
    see that the script has reach the second last statement.

Please put the result of c:\kixtart.log on the board,
when you have still problems.
Greetings.


------------------
Site map:


[This message has been edited by MCA (edited 21 June 2001).]

_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#9686 - 2001-06-22 12:30 AM Re: Not exiting after script completes
Anonymous
Unregistered


I dont think the debugging will tell you much because the script box disapears after the script is finished, i'm left with a "Windows NT Logon Script" dialog box with the message: "Please wait while your logon script excecutes." and a cancel button.

- 1-10:26:12-
- 2-10:26:12- 0
- 3-10:26:12- 0
- 4-10:26:12- 0
- 5-10:26:12-
- 6-10:26:12-
- 7-10:26:12-
- 8-10:26:12-
- 9-10:26:12-
- 10-10:26:12-
- 11-10:26:12-
- 12-10:26:12-
- 13-10:26:12-
- 14-10:26:12-
PLEASE WAIT, DO NOT TOUCH THE KEYBOARD OR MOUSE!
- 15-10:26:12-

- 16-10:26:12-
User Name:
- 17-10:26:12-
- 18-10:26:12- TRAINEE3
- 19-10:26:12-
- 20-10:26:12-

- 21-10:26:12-
Account Comment: trainee3
- 22-10:26:13-

- 23-10:26:13-
Here's the date and time for your convienance:
- 24-10:26:13-
Thursday, 2001/06/21, 10:26:13
- 25-10:26:13-

- 26-10:26:13-
Privilages are:
- 27-10:26:13-

- 28-10:26:13-
Logged on by: \\DROICON1
- 29-10:26:13-

- 30-10:26:13-
- 31-10:26:13-
- 32-10:26:13- TRAINEE3-GUEST
- 33-10:26:13-
- 34-10:26:13-

- 35-10:26:13-
- 36-10:26:14-
- 37-10:26:14-
- 38-10:26:14-
- 39-10:26:14-
- 40-10:26:14-
- 41-10:26:14-
- 46-10:26:14-
- 47-10:26:14-
- 56-10:26:14-
- 57-10:26:14-
- 62-10:26:14-
- 63-10:26:14-
- 67-10:26:14-
- 68-10:26:14-
- 77-10:26:14-
- 78-10:26:14-
- 83-10:26:14-
- 84-10:26:14-
- 85-10:26:14-
- 86-10:26:14-
- 90-10:26:14-
- 91-10:26:14-
- 95-10:26:14-
- 96-10:26:14-
- 97-10:26:14-
- 98-10:26:14-
- 103-10:26:14-
- 104-10:26:14-
- 109-10:26:14-
- 110-10:26:14-
- 111-10:26:14-
- 112-10:26:14-
- 117-10:26:14-
- 118-10:26:14-
- 123-10:26:14-
- 124-10:26:14-
- 125-10:26:14-
- 126-10:26:14-
- 131-10:26:14-
- 132-10:26:14-
- 133-10:26:14-
- 134-10:26:14-
- 139-10:26:14-
- 140-10:26:14-
- 147-10:26:14-
- 148-10:26:14-

- 149-10:26:14-

- 150-10:26:14-
Finished script, thanks for your time.
- 151-10:26:14-


Ive tried the suggestions you mentioned with no sucess.

Any ideas, your help so far has really been appreciated.

Kind Regards,
Paul Knott

Top
#9687 - 2001-06-22 12:52 AM Re: Not exiting after script completes
Anonymous
Unregistered


Try to put Exit at the bottom of the script.

Top
#9688 - 2001-06-21 05:09 PM Re: Not exiting after script completes
Rogier Pelzer Offline
Fresh Scripter

Registered: 2000-02-04
Posts: 41
Loc: The Netherlands
That's what i also was telling:

script bla bla
some more bla

and then add

Cookie1
Exit

That should do it !

Greets,
Rogier

Top
#9689 - 2001-06-22 05:34 AM Re: Not exiting after script completes
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear,

Another possibility is the way you are calling the script in your usermanager.
Put f.e. logon.bat in your logonscript field.
The batch file can have the contents:

code:

@echo off
%0\..\kix32.exe %0\..\your_script.kix
exit
@echo off


But possible you need another file (= LOGON.PIF), which will close that box.
Why?

During some tracing of "what activities of registry are there" and "which
file handling things are going on" we saw that the system is trying to
locate PIF files.
In our case we run the CLEANUP.BAT file without an existing PIF file.
The code is something like this:

code:

@echo off
deltree /y c:\temp\.
exit
@echo off



  • we start the BAT file by our windows explorer
    Result:
    commands were executed normally and the exit statement
    in that BAT file wasn't executed. The box remains open.
  • we start the BAT file from a DOS box by entering CLEANUP.BAT
    Result:
    commands were executed normally and the exit statement
    in that BAT file seems to be executed. The box was closed.

What was the differences between both: the DOS box was started by a PIF
file with the option Close on exit active.

What did we do: we try to change the properties of the file CLEANUP.BAT
and it was possible to set the option Close on exit active. After Apply
and OK a new file was created with the name CLEANUP.PIF.

After running the BAT file by our windows explorer the commands were
executed properly and the box was closed also. File tracing shows us
that the system tries to find the cleanup.pif file after
starting the cleanup.bat file. The PIF file just contains
the Close on exit setting.

Our advise is: try to create also a PIF file from your BAT file with
Close on exit set to active
and
place it in the same directory where your LOGON.BAT is
located.

Greetings.


------------------
Site map:

[This message has been edited by MCA (edited 22 June 2001).]

_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#9690 - 2002-09-03 07:32 PM Re: Not exiting after script completes
Olaf Offline
Lurker

Registered: 2002-09-03
Posts: 1
I'm having what may be a similar problem. I've got a script that runs flawlessly in most cases. The script won't exit on some machines some of the time. I have narrowed it down to the following consistencies:

slow machines (hardware or software-induced)
login AS SOON AS POSSIBLE

Under these conditions, it is more than common that the script will not exit properlly after execution. In my case, the script has finished completely. There are no errors because the script completed. It's as if the console called forgot that it was going to be exiting after KIX32 was run. If a user experiencing the problem logs off and back on again, they will not experience the problem. BREAK ON will not allow the user to close the window either. I think this could be a login script execution process thing. NT may be blocking the ability to do this.

As a result, you have to END TASK on the script to lose the window. I've also seen that the desktop loads prematurely in most (if not all) instances where the script hangs. Generally, I expect the script to have to run prior to being given a desktop. This may not be applicable in Win9x environments. There is a registry setting that can be changed on clients that this is happening, but I haven't seen 100% success from this either.

If I find that KiX 4.11 fixes the issue, I'll post a follow-up.
_________________________
Du är vad du talar!

Top
#9691 - 2002-09-03 07:44 PM Re: Not exiting after script completes
Sealeopard Offline
KiX Master
*****

Registered: 2001-04-25
Posts: 11164
Loc: Boston, MA, USA
I've seen this behavior only under Windows 9x and my solution is to put an EXIT 0 at the end of my script and a CLS EXIT at the end of my batch file.
_________________________
There are two types of vessels, submarines and targets.

Top
#9692 - 2002-09-03 07:49 PM Re: Not exiting after script completes
Jack Lothian Offline
MM club member
*****

Registered: 1999-10-22
Posts: 1169
Loc: Ottawa,Ontario, Canada
I seem to remember this issue being brought up in the Savill FAQ & the NT Reghack FAQ. I thought they suggested it was related to what directory the script started up in.
_________________________
Jack

Top
#9693 - 2002-12-01 06:20 AM Re: Not exiting after script completes
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear Olaf,

Welcome to the board. Is your problem solved?
greetings.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
Page 1 of 1 1


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

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

Generated in 0.062 seconds in which 0.024 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