Here is an expanded example of HOTTABS.BAS http://tech.groups.yahoo.com/group/hotbasic/message/9389 (Message #9389) Cheers, .e ... From: Emil Johnsen To:...
Would any one have suggestions regarding accessing HTML components/elements? Message #11371 By Emmazle does a great job and I have expanded on his code. I can...
you might write a "spy" program that consists of a loop with . sleep 0.1 . get mouse cursor position . call IHTMLDocument2.elementFromPoint . display...
Hi everyone: Here's some code: $RESOURCE PacRightOpen AS "PacRightOpen.bmp" $RESOURCE PacClosed AS "PacClosed.bmp" DECLARE SUB Go CREATE Z AS FORM ONMOUSEUP =...
Hmm, from my lowly perspective, I'd suggest it's the multi entry you have going there? You have a call from within the sub (call go) and from the form...
I changed your code some because it didn't work at all on my machine So I rewrote it some. I don't think that this is the correct way to display an animation....
Thanks. Tried it and some other things. Think I need to wait for the newer improved ComHelper! As a suggestion, Will there be any facility to show just how the...
My new split & Join Software is now released Great when sending large files, if you have a size limit on your email /Fredrik Great Compiler produces great...
Hey that's really nice work! ...you might want to consider adding a "readme" or some form of help with the installation explaning usage. I used a 232mb zip...
... 7000 ... Thanks, but I don't think this will fix the issue. In this code, the loop is invoked by a timer "tick." In effect, all that does is make the...
... In Files->Testbed; Cor posted some code a couple of years ago (Pacman.zip) that shows one way of doing the animation... AIR. -- "Programming is like...
... I don't see why it would be. If the user clicks the form ONCE and then removes his hands from the keyboard and mouse, the program flow should enter the...
... Actually, you had it right the first time (smile); it should be coded as a loop and further you assume the OS can do things as fast as your code asks it. ...
... Each call statement puts 4 bytes on the stack; the program flow problem is that your program never stops doing that; and thus it fails for one simple...
... OK, so how do I fix it? Let's change the code a bit such that we throw out the CALL statement all together and replace it with an infinite loop, like this:...
... I understand and agree with your point...but see my most recent post. I've replaced the nested CALL statement with an infinite loop driven by a WHILE...
... Next we add simple timing ... e.g., a sleep statement in the loop. BTW. Steven Edwards posted a number of programs doing neat animations, such as poker...
... The .BMP property of IMAGE indicates a kind of static control and the bitmap. It is not point here/ point there. For that you probably want the BITMAP...
... Agreed. If it doesn't, find a way. MS Windows is so versatile there are usually many ways to code the same visual effect. E.g., have two IMAGES each with...
Hi, I'm having a problem with arrays of controls: The program below compiles but I can barely see the form before it exits. (No error message or crash report.)...
... Just add this line here: $GUIOBJ 20 ... Your code asks for 81 (9 x 9) new EDIT objects in the array. Last I looked, at compile-time, the compiler doesn't...
... Yes! hotbasic.lib has now been updated (Sep 2 time-stamp) to include middle mouse button response to native OnMouseDown, OnMouseUp and OnDblClick (&H209)...