Page 1 of 1 1
Topic Options
#108042 - 2003-11-17 02:57 PM Sample code for new COM project
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Below is a test script that work with the new DLL I working on providing. It will provide a Perl object and provide access to all the methods supported by the object.

Well it looks like PostPrep needs to be updated.

break on
$iRC=SETOPTION('WrapAtEOL','on')
$HABObject = createobject("HBullock.AdminObjects")
if vartypename($HABObject1) <> "Object"
? "@serror"
endif

; ChangeNotify test code 
; Valid Filters (string containing any of the following flags separated by whitespace): 
; ATTRIBUTES Any attribute change 
; DIR_NAME Any directory name change 
; FILE_NAME Any file name change (creating/deleting/renaming) 
; LAST_WRITE Any change to a file's last write time 
; SECURITY Any security descriptor change 
; SIZE Any change in a file's size 

;$ChangeNotify1 = $HABObject.ChangeNotify ("c:\data\scripts", 1, "FILE_NAME") 
;$ChangeNotify2 = $HABObject.ChangeNotify ("c:\data\scripts", 1, "SIZE") 
; 
; 
;$loop = 1 
;while ($loop) 
; do 
; $i = 1+ $i 
; $result1 = $ChangeNotify1.wait(200) ; milliseconds 
; $result2 = $ChangeNotify2.wait(200) ; milliseconds 
; ? "Timeout: " + $i 
; If $i>50 $loop=0 endif 
; until $result1 <> 0 or $result2 <> 0 or $i>50 
; 
; if $result1 
; ? "FILE_NAME: Something changed" 
; $rc = $ChangeNotify1.reset 
; ;Do Something about it... 
; endif 
; if $result2 
; ? "SIZE: Something changed" 
; $rc = $ChangeNotify2.reset 
; ;Do Something about it... 
; endif 
;loop 

$Zip1 = $HABObject.Zip("C:\Data\Download\BBchecker.zip")
$num = $Zip1.numberOfMembers
? @serror
? "Num of files in archive: " + $num
?
; Output list of files in the archive 
; Note the use of the "List" method to make the array. This is case sensative. 
$files = $Zip1.List.memberNames
$x=1
for each $member in $files
? ""+ $x + ": " + $member
$x = $x + 1
next


; Get a file from the archive as an object 
?
$file = "view.kix"
$member = $Zip1.memberNamed( $file )
? "compressionMethod = " + $member.compressionMethod
? "lastModFileDateTime = " + $member.lastModFileDateTime
? "crc32string = " + $member.crc32String
? "uncompressedSize = " + $member.uncompressedSize
? "compressedSize = " + $member.compressedSize

; Extract file to a specified location. 
?
$rc = $member.extractToFileNamed( "C:\Data\Scripts\PerlCtrl\objects\" + $file )
if $rc = 0
? "Extraction was successful"
else
? "Extraction Failed: $rc @serror"
endif

?
$Zip2 = $HABObject.Zip()

$files = "C:\Data\Scripts\PerlCtrl\objects\Zip.html",
"C:\Data\Scripts\PerlCtrl\objects\HABobjects2.DLL",
"C:\data\scripts\[censored].kix"

for each $file in $files
$member = $Zip2.addFile( $file )
if $Zip2.writeToFileNamed( "C:\Data\Scripts\PerlCtrl\objects\Test.zip" ) = 0
? "Added: " + $file
endif
next

_________________________
Home page: http://www.kixhelp.com/hb/

Top
#108043 - 2003-11-17 02:59 PM Re: Sample code for new COM project
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Here the code again using code tags.

Code:
break on
$iRC=SETOPTION('WrapAtEOL','on')
$HABObject = createobject("HBullock.AdminObjects")
if vartypename($HABObject1) <> "Object"
? "@serror"
endif

; ChangeNotify test code
; Valid Filters (string containing any of the following flags separated by whitespace):
; ATTRIBUTES Any attribute change
; DIR_NAME Any directory name change
; FILE_NAME Any file name change (creating/deleting/renaming)
; LAST_WRITE Any change to a file's last write time
; SECURITY Any security descriptor change
; SIZE Any change in a file's size

;$ChangeNotify1 = $HABObject.ChangeNotify ("c:\data\scripts", 1, "FILE_NAME")
;$ChangeNotify2 = $HABObject.ChangeNotify ("c:\data\scripts", 1, "SIZE")
;
;
;$loop = 1
;while ($loop)
; do
; $i = 1+ $i
; $result1 = $ChangeNotify1.wait(200) ; milliseconds
; $result2 = $ChangeNotify2.wait(200) ; milliseconds
; ? "Timeout: " + $i
; If $i>50 $loop=0 endif
; until $result1 <> 0 or $result2 <> 0 or $i>50
;
; if $result1
; ? "FILE_NAME: Something changed"
; $rc = $ChangeNotify1.reset
; ;Do Something about it...
; endif
; if $result2
; ? "SIZE: Something changed"
; $rc = $ChangeNotify2.reset
; ;Do Something about it...
; endif
;loop

$Zip1 = $HABObject.Zip("C:\Data\Download\BBchecker.zip")
$num = $Zip1.numberOfMembers
? @serror
? "Num of files in archive: " + $num
?
; Output list of files in the archive
; Note the use of the "List" method to make the array. This is case sensative.
$files = $Zip1.List.memberNames
$x=1
for each $member in $files
? ""+ $x + ": " + $member
$x = $x + 1
next


; Get a file from the archive as an object
?
$file = "view.kix"
$member = $Zip1.memberNamed( $file )
? "compressionMethod = " + $member.compressionMethod
? "lastModFileDateTime = " + $member.lastModFileDateTime
? "crc32string = " + $member.crc32String
? "uncompressedSize = " + $member.uncompressedSize
? "compressedSize = " + $member.compressedSize

; Extract file to a specified location.
?
$rc = $member.extractToFileNamed( "C:\Data\Scripts\PerlCtrl\objects\" + $file )
if $rc = 0
? "Extraction was successful"
else
? "Extraction Failed: $rc @serror"
endif

?
$Zip2 = $HABObject.Zip()

$files = "C:\Data\Scripts\PerlCtrl\objects\Zip.html",
"C:\Data\Scripts\PerlCtrl\objects\HABobjects2.DLL",
"C:\data\scripts\[censored].kix"

for each $file in $files
$member = $Zip2.addFile( $file )
if $Zip2.writeToFileNamed( "C:\Data\Scripts\PerlCtrl\objects\Test.zip" ) = 0
? "Added: " + $file
endif
next


_________________________
Home page: http://www.kixhelp.com/hb/

Top
#108044 - 2003-11-17 06:54 PM Re: Sample code for new COM project
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Howard, I just turned on HTML in COM, might want to edit/re-post.
Top
#108045 - 2003-11-17 06:59 PM Re: Sample code for new COM project
Howard Bullock Offline
KiX Supporter
*****

Registered: 2000-09-15
Posts: 5809
Loc: Harrisburg, PA USA
Shawn that did not seem to make any difference.

break on&#13;
$iRC=SETOPTION('WrapAtEOL','on')&#13;
$HABObject = createobject("HBullock.AdminObjects")&#13;
if vartypename($HABObject1) &lt;&gt; "Object"&#13;
? "@serror"&#13;
endif&#13;
&#13;
; ChangeNotify test code &#13;
; Valid Filters (string containing any of the following flags separated by whitespace): &#13;
; ATTRIBUTES Any attribute change &#13;
; DIR_NAME Any directory name change &#13;
; FILE_NAME Any file name change (creating/deleting/renaming) &#13;
; LAST_WRITE Any change to a file's last write time &#13;
; SECURITY Any security descriptor change &#13;
; SIZE Any change in a file's size &#13;
&#13;
;$ChangeNotify1 = $HABObject.ChangeNotify ("c:\data\scripts", 1, "FILE_NAME") &#13;
;$ChangeNotify2 = $HABObject.ChangeNotify ("c:\data\scripts", 1, "SIZE") &#13;
; &#13;
; &#13;
;$loop = 1 &#13;
;while ($loop) &#13;
; do &#13;
; $i = 1+ $i &#13;
; $result1 = $ChangeNotify1.wait(200) ; milliseconds &#13;
; $result2 = $ChangeNotify2.wait(200) ; milliseconds &#13;
; ? "Timeout: " + $i &#13;
; If $i&gt;50 $loop=0 endif &#13;
; until $result1 &lt;&gt; 0 or $result2 &lt;&gt; 0 or $i&gt;50 &#13;
; &#13;
; if $result1 &#13;
; ? "FILE_NAME: Something changed" &#13;
; $rc = $ChangeNotify1.reset &#13;
; ;Do Something about it... &#13;
; endif &#13;
; if $result2 &#13;
; ? "SIZE: Something changed" &#13;
; $rc = $ChangeNotify2.reset &#13;
; ;Do Something about it... &#13;
; endif &#13;
;loop &#13;
&#13;
$Zip1 = $HABObject.Zip("C:\Data\Download\BBchecker.zip")&#13;
$num = $Zip1.numberOfMembers&#13;
? @serror&#13;
? "Num of files in archive: " + $num&#13;
?&#13;
; Output list of files in the archive &#13;
; Note the use of the "List" method to make the array. This is case sensative. &#13;
$files = $Zip1.List.memberNames&#13;
$x=1&#13;
for each $member in $files&#13;
? ""+ $x + ": " + $member&#13;
$x = $x + 1&#13;
next&#13;
&#13;
&#13;
; Get a file from the archive as an object &#13;
?&#13;
$file = "view.kix"&#13;
$member = $Zip1.memberNamed( $file )&#13;
? "compressionMethod = " + $member.compressionMethod&#13;
? "lastModFileDateTime = " + $member.lastModFileDateTime&#13;
? "crc32string = " + $member.crc32String&#13;
? "uncompressedSize = " + $member.uncompressedSize&#13;
? "compressedSize = " + $member.compressedSize&#13;
&#13;
; Extract file to a specified location. &#13;
?&#13;
$rc = $member.extractToFileNamed( "C:\Data\Scripts\PerlCtrl\objects\" + $file )&#13;
if $rc = 0&#13;
? "Extraction was successful"&#13;
else&#13;
? "Extraction Failed: $rc @serror"&#13;
endif&#13;
&#13;
?&#13;
$Zip2 = $HABObject.Zip()&#13;
&#13;
$files = "C:\Data\Scripts\PerlCtrl\objects\Zip.html",&#13;
"C:\Data\Scripts\PerlCtrl\objects\HABobjects2.DLL",&#13;
"C:\data\scripts\[censored].kix"&#13;
&#13;
for each $file in $files&#13;
$member = $Zip2.addFile( $file )&#13;
if $Zip2.writeToFileNamed( "C:\Data\Scripts\PerlCtrl\objects\Test.zip" ) = 0&#13;
? "Added: " + $file&#13;
endif&#13;
next&#13;
&#13;
_________________________
Home page: http://www.kixhelp.com/hb/

Top
#108046 - 2003-11-18 06:35 AM Re: Sample code for new COM project
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
weird.
it looks like the board screws html handling of IE...
heh, think I need to study css a little bit more if it really can do that
_________________________
!

download KiXnet

Top
#108047 - 2003-11-18 12:11 PM Re: Sample code for new COM project
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
wonder...
the code in http://www.kixtart.org/ubbthreads/showflat.php?Number=77075 uses similar engine if not same as yours...
do you use 1.0.3.2 or what version of checker?
_________________________
!

download KiXnet

Top
#108048 - 2003-11-18 12:13 PM Re: Sample code for new COM project
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
k, doing a test...
<table border cellpadding="10" style="background-color:black;border-color:red;border-style:inset;border-width:7;"><tr><td><pre><font face="Lucida Console" size=1 color=#EE82EE><font color=#40E0D0>function</font> <font color=#FF7F50>Uptime</font>()&#13;
<font color=#40E0D0>dim</font> <font color=#FF7F50>$</font>,<font color=#FF7F50>$!</font>,<font color=#FF7F50>$y</font>,<font color=#FF7F50>$m</font>,<font color=#FF7F50>$d</font>,<font color=#FF7F50>$t</font>&#13;
<font color=#40E0D0>For</font> <font color=#40E0D0>Each</font> <font color=#FF7F50>$</font> <font color=#40E0D0>in</font> <font color=#FF1493>GetObject</font>(<font color=#3CB371>"winmgmts:"</font>)<font color=#FF7F50>.InstancesOf</font>(<font color=#3CB371>"Win32_OperatingSystem"</font>)&#13;
<font color=#FF7F50>$!</font> = <font color=#FF1493>split</font>(<font color=#FF7F50>$.LastBootUpTime</font>,<font color=#3CB371>"."</font>)[<font color=#EE82EE>0</font>]&#13;
<font color=#FF7F50>$t</font>=<font color=#EE82EE>3600</font>*<font color=#FF1493>substr</font>(<font color=#FF7F50>$!</font>,<font color=#EE82EE>9</font>,<font color=#EE82EE>2</font>)+<font color=#EE82EE>60</font>*<font color=#FF1493>substr</font>(<font color=#FF7F50>$!</font>,<font color=#EE82EE>11</font>,<font color=#EE82EE>2</font>)+<font color=#FF1493>substr</font>(<font color=#FF7F50>$!</font>,<font color=#EE82EE>13</font>,<font color=#EE82EE>2</font>)&#13;
<font color=#FF7F50>$y</font>=<font color=#FF1493>left</font>(<font color=#FF7F50>$!</font>,<font color=#EE82EE>4</font>)&#13;
<font color=#FF7F50>$m</font>=<font color=#FF1493>substr</font>(<font color=#FF7F50>$!</font>,<font color=#EE82EE>5</font>,<font color=#EE82EE>2</font>)&#13;
<font color=#FF7F50>$d</font>=<font color=#FF1493>substr</font>(<font color=#FF7F50>$!</font>,<font color=#EE82EE>7</font>,<font color=#EE82EE>2</font>)&#13;
<font color=#FF7F50>$!</font>=<font color=#FF1493>split</font>(<font color=#FFFF00>@time</font>,<font color=#3CB371>":"</font>)&#13;
<font color=#FF7F50>$t</font>=<font color=#EE82EE>3600</font>*<font color=#FF7F50>$!</font>[<font color=#EE82EE>0</font>]+<font color=#EE82EE>60</font>*<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]+<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]-<font color=#FF7F50>$t</font>&#13;
<font color=#FF7F50>$!</font>=<font color=#FF1493>split</font>(<font color=#FFFF00>@date</font>,<font color=#3CB371>"/"</font>)&#13;
<font color=#40E0D0>if</font> <font color=#FF7F50>$t</font>&lt;<b ></b><font color=#EE82EE>0</font>&#13;
<font color=#FF7F50>$t</font>=<font color=#FF7F50>$t</font>+<font color=#EE82EE>86400</font>&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]=<font color=#EE82EE>0</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]-<font color=#EE82EE>1</font>&#13;
<font color=#40E0D0>endif</font>&#13;
<font color=#40E0D0>if</font> <font color=#FF7F50>$d</font>&gt;<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]&#13;
<font color=#40E0D0>select</font>&#13;
<font color=#40E0D0>case</font> <font color=#EE82EE>3</font>=<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]=<font color=#EE82EE>28</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]&#13;
<font color=#40E0D0>case</font> <font color=#FF1493>instr</font>(<font color=#3CB371>"2468911"</font>,<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>])&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]=<font color=#EE82EE>31</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]&#13;
<font color=#40E0D0>case</font> <font color=#3CB371>"Lonk"</font>&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]=<font color=#EE82EE>30</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]&#13;
<font color=#40E0D0>endselect</font>&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]=<font color=#EE82EE>0</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]-<font color=#EE82EE>1</font>&#13;
<font color=#40E0D0>endif</font>&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]=<font color=#EE82EE>0</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]-<font color=#FF7F50>$d</font>&#13;
<font color=#40E0D0>if</font> <font color=#FF7F50>$m</font>&gt;<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]=<font color=#EE82EE>12</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>0</font>]=<font color=#EE82EE>0</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>0</font>]-<font color=#EE82EE>1</font>&#13;
<font color=#40E0D0>endif</font>&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]=<font color=#EE82EE>0</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]-<font color=#FF7F50>$m</font>&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>0</font>]=<font color=#FF1493>right</font>(<font color=#3CB371>"000"</font>+(<font color=#EE82EE>0</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>0</font>]-<font color=#FF7F50>$y</font>),<font color=#EE82EE>4</font>)&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>]=<font color=#FF1493>right</font>(<font color=#3CB371>"0"</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>1</font>],<font color=#EE82EE>2</font>)&#13;
<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>]=<font color=#FF1493>right</font>(<font color=#3CB371>"0"</font>+<font color=#FF7F50>$!</font>[<font color=#EE82EE>2</font>],<font color=#EE82EE>2</font>)&#13;
<font color=#FF7F50>$Uptime</font>=<font color=#FF1493>join</font>(<font color=#FF7F50>$!</font>,<font color=#3CB371>"\"</font>)&#13;
<font color=#FF7F50>$!</font>=<font color=#FF7F50>$t</font>/<font color=#EE82EE>3600</font>&#13;
<font color=#FF7F50>$t</font>=<font color=#FF7F50>$t</font>-<font color=#EE82EE>3600</font>*<font color=#FF7F50>$!</font>&#13;
<font color=#FF7F50>$Uptime</font>=<font color=#FF7F50>$Uptime</font>+<font color=#3CB371>" "</font>+<font color=#FF7F50>$!</font>&#13;
<font color=#FF7F50>$!</font>=<font color=#FF7F50>$t</font>/<font color=#EE82EE>60</font>&#13;
<font color=#FF7F50>$t</font>=<font color=#FF7F50>$t</font>-<font color=#EE82EE>60</font>*<font color=#FF7F50>$!</font>&#13;
<font color=#FF7F50>$Uptime</font>=<font color=#FF7F50>$Uptime</font>+<font color=#3CB371>":"</font>+<font color=#FF7F50>$!</font>+<font color=#3CB371>":"</font>+<font color=#FF7F50>$t</font>&#13;
<font color=#40E0D0>Next</font>&#13;
<font color=#40E0D0>endfunction</font></font></pre></td></tr></table>
_________________________
!

download KiXnet

Top
#108049 - 2003-11-18 12:40 PM Re: Sample code for new COM project
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
yet another test with 'Make Post using HTML' ;)

Break On&#13;
&#13;
$Form = CreateObject("Kixtart.Form")&#13;
$Form.FontName = "Tahoma"&#13;
$Form.FontSize = 10&#13;
&#13;
$SmallIcon = $Form.ToolButton&#13;
$SmallIcon.Location = 10,10&#13;
$SmallIcon.Width = 23&#13;
$SmallIcon.Icon = 40&#13;
$SmallIcon.onclick = "$$ListView.View = 1"&#13;
$SmallIcon.FlatStyle = 1&#13;
&#13;
$LargeIcon = $Form.ToolButton&#13;
$LargeIcon.Location = $SmallIcon.Right + 5,10&#13;
$LargeIcon.Width = 23&#13;
$LargeIcon.Icon = 38&#13;
$LargeIcon.onclick = "$$ListView.View = 0"&#13;
$LargeIcon.FlatStyle = 1&#13;
&#13;
$ListIcon = $Form.ToolButton&#13;
$ListIcon.Location = $LargeIcon.Right + 5,10&#13;
$ListIcon.Width = 23&#13;
$ListIcon.Icon = 39&#13;
$ListIcon.onclick = "$$ListView.View = 2"&#13;
$ListIcon.FlatStyle = 1&#13;
&#13;
$DetailsIcon = $Form.ToolButton&#13;
$DetailsIcon.Location = $ListIcon.Right + 5,10&#13;
$DetailsIcon.Width = 23&#13;
$DetailsIcon.Icon = 41&#13;
$DetailsIcon.onclick = "$$ListView.View = 3"&#13;
$DetailsIcon.FlatStyle = 1&#13;
&#13;
$ListView = $Form.ListView&#13;
$ListView.Location = 10,$SmallIcon.Bottom + 10&#13;
$ListView.Right = $Form.ClientWidth - 10&#13;
$ListView.Bottom = $Form.ClientHeight - 50&#13;
$ListView.Columns.Count = 1&#13;
$ListView.SmallImageList = $Form.SmallImageList&#13;
$ListView.onclick = "ListView_Click"&#13;
$ListView.View = 0&#13;
&#13;
$LargeImageList = $Form.ImageList&#13;
$LargeImageList.ImageSize = 32,32&#13;
For $i = 0 To $Form.SmallImageList.Images.Count&#13;
$LargeImageList.Images.Add($Form.SmallImageList.Images($i))&#13;
Next&#13;
&#13;
$ListView.largeImageList = $LargeImageList&#13;
&#13;
Function ListView_Click&#13;
&#13;
$IconIndex = Val($ListView.FocusedItem.Text)&#13;
$Exit.Icon = $ListView.SmallImageList.Images($IconIndex)&#13;
&#13;
EndFunction&#13;
&#13;
For $i = 0 To $ListView.SmallImageList.Images.Count&#13;
$Item = $ListView.Items.Add($i,$i)&#13;
Next&#13;
&#13;
$Exit = $Form.ToolButton&#13;
$Exit.Center&#13;
$Exit.Top = $ListView.Bottom + 10&#13;
$Exit.Text = "Exit"&#13;
$Exit.Icon = 37&#13;
$Exit.onclick = "Quit()"&#13;
&#13;
$Form.Center&#13;
$Form.Show&#13;
While $Form.Visible&#13;
$=Execute($Form.DoEvents)&#13;
Loop&#13;
&#13;
Exit 1
_________________________



Top
#108050 - 2003-11-18 12:42 PM Re: Sample code for new COM project
Jochen Administrator Offline
KiX Supporter
*****

Registered: 2000-03-17
Posts: 6380
Loc: Stuttgart, Germany
Baah !
_________________________



Top
#108051 - 2003-11-18 12:53 PM Re: Sample code for new COM project
MCA Offline
KiX Supporter
*****

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

Indeed a lot of work should be done for everyone after such migration.
How is BBChecker doing it?
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
#108052 - 2003-11-18 12:57 PM Re: Sample code for new COM project
Wizard Offline
Hey THIS is FUN
*****

Registered: 2000-12-05
Posts: 264
Loc: Bristol, England
YEs, with BBCheck not working, everyone is now on a level playing field.!

Instead of the usuall ppl replying to topics within 5 seconds of being posted.!

It has become one of those utilities that you just can't do without - for me anyway.

Wiz
_________________________
Wizard
There's no place like 127.0.0.1

vb | kix | batch | html | cfm | js | english

Top
#108053 - 2003-11-18 04:05 PM Re: Sample code for new COM project
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
lol.
I haven't used it for about some months...
no real use

the boards PM section is working lot better than the old one so for that part checker ain't needed.

anyway, still for ppl not able to press F5 it is quite handy and maybe there will be new checker version.
and definitely if I find some neat thing inside the board code that allows it to be fast and yet more trustable...
_________________________
!

download KiXnet

Top
Page 1 of 1 1


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

Who's Online
1 registered (Allen) and 1198 anonymous users online.
Newest Members
M_Moore, BeeEm, min_seow, Audio, Hoschi
17883 Registered Users

Generated in 0.137 seconds in which 0.092 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