Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 12896 - 12925 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12896
Hi, I'm looking for a program showing how to use the TabControl. Anyone have a link? -- Emil Johnsen <emil@...>...
Emil Johnsen
emil32768
Offline Send Email
Sep 1, 2007
8:44 am
12897
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:...
Sexmotron
enpsuedo
Offline Send Email
Sep 1, 2007
9:39 am
12898
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...
enpsuedo
Offline Send Email
Sep 1, 2007
4:44 pm
12899
you might write a "spy" program that consists of a loop with . sleep 0.1 . get mouse cursor position . call IHTMLDocument2.elementFromPoint . display...
emmazle
Offline Send Email
Sep 1, 2007
6:23 pm
12900
... Wonderful. Look forward to it! ;) j...
doctor electron
globalservices1
Offline Send Email
Sep 1, 2007
7:23 pm
12901
Hi everyone: Here's some code: $RESOURCE PacRightOpen AS "PacRightOpen.bmp" $RESOURCE PacClosed AS "PacClosed.bmp" DECLARE SUB Go CREATE Z AS FORM ONMOUSEUP =...
falkyr11
Offline Send Email
Sep 2, 2007
5:46 am
12902
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...
Sexmotron
enpsuedo
Offline Send Email
Sep 2, 2007
6:28 am
12903
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....
fnoware
Offline Send Email
Sep 2, 2007
6:33 am
12904
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...
Sexmotron
enpsuedo
Offline Send Email
Sep 2, 2007
9:00 am
12905
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...
fnoware
Offline Send Email
Sep 2, 2007
12:22 pm
12906
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...
ezcoder1
Offline Send Email
Sep 2, 2007
1:14 pm
12907
And there should always be room for a next version. Thanks for the feedback /F ... help ... did ... right-...
fnoware
Offline Send Email
Sep 2, 2007
5:15 pm
12908
... 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...
falkyr11
Offline Send Email
Sep 2, 2007
5:21 pm
12909
... 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...
airrsongs
Offline Send Email
Sep 2, 2007
5:25 pm
12910
... 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...
falkyr11
Offline Send Email
Sep 2, 2007
5:27 pm
12911
... Memory LEAK! Sorry...I meant to say "leak" not "loop."...
falkyr11
Offline Send Email
Sep 2, 2007
5:30 pm
12912
... Thank you. Found what I needed in that message. -- Emil Johnsen <emil@...>...
Emil Johnsen
emil32768
Offline Send Email
Sep 2, 2007
7:14 pm
12913
... 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. ...
doctor electron
globalservices1
Offline Send Email
Sep 2, 2007
7:16 pm
12914
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 2, 2007
7:50 pm
12915
... 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:...
falkyr11
Offline Send Email
Sep 2, 2007
7:54 pm
12916
... 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...
falkyr11
Offline Send Email
Sep 2, 2007
7:57 pm
12917
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 2, 2007
8:25 pm
12918
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 2, 2007
8:25 pm
12919
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 2, 2007
8:30 pm
12920
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.)...
Emil Johnsen
emil32768
Offline Send Email
Sep 2, 2007
8:32 pm
12921
... 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...
doctor electron
globalservices1
Offline Send Email
Sep 2, 2007
9:28 pm
12922
... Fixed! I switched from an IMAGE object to a CANVAS. That did the trick....
falkyr11
Offline Send Email
Sep 2, 2007
10:08 pm
12923
... Cool! Keep experimenting. Somebody more qualified than me might one day write an "Animation Tips" article. ;) j...
doctor electron
globalservices1
Offline Send Email
Sep 2, 2007
10:46 pm
12924
Hello, Is it possible to add ... WM_MBUTTONDOWN &H207 for OnMouseDown and WM_MBUTTONUP &H208 for OnMouseUp events Pierrot...
MANY PIERRE
pierrotstudio
Offline Send Email
Sep 3, 2007
5:35 am
12925
... Yes! hotbasic.lib has now been updated (Sep 2 time-stamp) to include middle mouse button response to native OnMouseDown, OnMouseUp and OnDblClick (&H209)...
doctor electron
globalservices1
Offline Send Email
Sep 3, 2007
9:18 am
Messages 12896 - 12925 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help