Page 2 of 7 <12345>Last »
Topic Options
#86379 - 2002-07-04 02:56 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
shawn, yes they come trough but I need my loop to sleep.
that's why I need separate looping of doevents.

on the old builds when the event-design was different this kind sleepy was lots easier to produce...

anyway, I think this is somekind windows thingy.
It looks for apps that are not responding or something. it sends some control stuff or then just refresh to all open windows.
have you code for those thingies if they even exists?

cheers,
_________________________
!

download KiXnet

Top
#86380 - 2002-07-04 02:57 PM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
I have an NT box at work - might try re-creating the problem here ... guess I'll need a WinHTTP component install package. Do you have one on your site ? Should I just install your BBChecker first (with WinHTTP), then start BBChecker II ?
Top
#86381 - 2002-07-04 03:17 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
don't quite follow...
anyway, all you need is the winhttp5.dll and kixforms.dll
register them

then you have the script (and taskbar udf)
which are ready to run.
_________________________
!

download KiXnet

Top
#86382 - 2002-07-04 03:39 PM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
sorry, i mean, where do I get WinHTTP ? If memory serves, you included it in your BBChecker I install package. Do you have WinHTTP on your web site, so that I can download ?
Top
#86383 - 2002-07-04 04:34 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
actually...
I have not yet done any bbchecker code (before this one) which uses winHTTP.
it was BBCodeparser.
it's on the site allright but I could post it to you too...
_________________________
!

download KiXnet

Top
#86384 - 2002-07-04 04:38 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
actually...
as you don't need anything but the winhttp5.dll but it's probably faster for you to download the whole package from US...

and when read from the BBChecker version 1.5 Readme, it really had winhttp allright.
winhttp is at http://msdn.microsoft.com/downloads/default.asp?URL=/code/sample.asp?url=/MSDN-FILES/027/001/655/msdncompositedoc.xml

cheers,
_________________________
!

download KiXnet

Top
#86385 - 2002-07-04 06:04 PM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Jooel, can you make the FORMS version of BBCHECKER2 available on your web server (couldn't find it), or mail it to me at shawn.tassie@cgi.ca. Would prefer the web server downloadable thingy though [Wink]
Top
#86386 - 2002-07-04 07:02 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
too late.
out of windows world in my home at linux-paradise.

so can't put it online before tomorrow... say after 10 hours.

but it's somewhat the same version I did post to you last.
_________________________
!

download KiXnet

Top
#86387 - 2002-07-04 07:51 PM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Actually, with your permission, may I port BBChecker2 to Kixforms-TNG ? (The Next Generation) ... almost done that ...

I started-off porting loginscreen.exe (the interface, not the code) to C++/COM, then realized that it was too crude and limiting (imho) ... So basically now porting Kixforms to Kixforms2. Its implemented as an ActiveX Server (Kixforms2.exe) NOT a DLL, and is multi-threaded. This eliminates a big problem with GUI/COM DLL's - the REFRESH problem. So basically, with KIXFORMS2, one can issue a SLEEP 100000, and the GUI will still active and alive and real fresh-like ...

Made some small interface changes - basically taking the lessons I (we) have learned over the years, and rolling them into a fresh component. Working on the EVENT STRATEGY again - the plan is to recycle the DoEvents() type thing again ... unless you have anymore thoughts on that ...

Some other changes are as follows:

1) To create a multi-line textbox (remember the old TEXTBOX/EDITBOX thingy), one can now say this:

$TextBox = $Form.AddTextBox(10,10,100,100,"hi",1)

where the last parm is a boolean for MULTILINE (true/false). The method name has changed from .TextBox to .AddTextBox ...

2) Have already provided support for the ProgressBar control.

3) The component itself is smaller and more compact then the original.

4) Was planning on embedding much more HELP information in the component itself. So that if one uses Brian's TypeLibViewer, all the details (props,methods,etc) will be there.

5) Although not done (yet), will be adding the LISTVIEW control, which is your MULTICOLUMN listbox control.

6) The SHOW method has been enhanced to support modes such as MINIMIZED, MAXIMIZED, HIDDEN, etc ... much like the kixtart SETCONSOLE function.

7) Installation has changed quite a bit ... instead of saying:

regsvr32 kixforms.dll

one now says:

kixforms2.exe -install
kixforms2.exe -uninstall
kixforms2.exe -? (version info)

Was wondering if you had any others ideas for improving FORMS in any way ... like to hear your thoughts ... by the way, the object (progid) for KIXFORMS will be

$Form = CreateObject("Kixtart.Form.2")

Top
#86388 - 2002-07-04 08:08 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
mm...
sounds better than one could expect!

sounds like also checker will not be out until kixform jumps one heap up.

that's ok, as it's name allready says, it's also version 2 [Razz]

I don't know have you implemented allreay the getfocus or window action stuff...

that also need to be there...

can't at the moment ask much more as I'm allready waiting for a change to get my hands on it!

cheers,
_________________________
!

download KiXnet

Top
#86389 - 2002-07-04 09:06 PM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
My first goal is to fix this event thingy, then include support for OnGotFocus, OnLostFocus for the current version ... but will probably not implement LISTVIEW in version one, just include it into Kixforms2 because the listview object is quite large, and complex ...
Top
#86390 - 2002-07-04 09:31 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
oh, so we are getting more builds?!?!?
I actually catched the listview when scrolled around your QF...
just didn't know what it was.
now I know and...
I'm going to trash excel once this comes out!

anyway, this ongotfocus thingie is more than good to have...

is the syntax changing a lot between generations? as don't know how large I should make my script... to make it easy to turn over to KixForms_tng
_________________________
!

download KiXnet

Top
#86391 - 2002-07-05 01:51 AM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
testing ... 1 ... 2 ... 3 ... pffttt, is this thing on ?

lol - just testing Lonkeros BBChecker2 ... please ignore ...

Top
#86392 - 2002-07-05 02:15 AM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Lonkero, I have a new Kixforms build, with a potential fix, please let me know when you can test ... if it works, you owe me a beer, Labatts Blue (Canadian) if you please, or a Coors Lite, or actually, if possible, how about a Jamaican Red Stripe (truely, my favorite Beer) ...

p.s. Happy Fourth of July to all our American members (friends) ...

[ 05 July 2002, 02:17: Message edited by: Shawn ]

Top
#86393 - 2002-07-05 08:39 AM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
shawn, you have?
where do I get it?

I'm just putting my beta online...
_________________________
!

download KiXnet

Top
#86394 - 2002-07-05 09:12 AM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
ok...
my code is online...
heh, public beta [Big Grin]

even did the readme!

just waiting for your fix to test it...........
_________________________
!

download KiXnet

Top
#86395 - 2002-07-05 02:08 PM Re: Kixforms - BBChecker II
Shawn Administrator Offline
Administrator
*****

Registered: 1999-08-13
Posts: 8611
Jooel, whazzup ? you have mail.
Top
#86396 - 2002-07-05 02:37 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
I were working...
I quess I might say that...

well, I was having a conversation with boss and some women [Big Grin]

cheers,
_________________________
!

download KiXnet

Top
#86397 - 2002-07-05 04:13 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
the link to bbchecker II if there is possible triers:
http://www.gwspikval.com/jooel/scripts/bbchecker/II beta/

[ 05 July 2002, 16:14: Message edited by: Lonkero ]
_________________________
!

download KiXnet

Top
#86398 - 2002-07-06 09:11 PM Re: Kixforms - BBChecker II
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
shawn, noticed one nice thing, it ends up silently if connected via vpn...

I started to scare that my mods are disfunctioning...

the second debugger is running now and will reply the results...

cheers,
_________________________
!

download KiXnet

Top
Page 2 of 7 <12345>Last »


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

Who's Online
2 registered (morganw, mole) and 414 anonymous users online.
Newest Members
gespanntleuchten, DaveatAdvanced, Paulo_Alves, UsTaaa, xxJJxx
17864 Registered Users

Generated in 0.074 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