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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 11795 - 11825 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11795
... I'm aware of the different between CALLFUNC and FUNCCALL. Yet, it was not the source of the problem. Btw, I'm just completed tracing which Single variable...
Don
don67geo
Offline Send Email
Mar 1, 2007
9:13 am
11796
Is there any reason that repeatedly calling the following Sub in my program should cause the program to suddenly just close? (not crash). Sub CheckAndLoad If...
low_beer_light
Offline Send Email
Mar 1, 2007
9:26 am
11797
dim mylist as memory myfile.position= tagposition print myfile.readbinstr (128) ' this prints from myfile.position myfile.MemCopyTo( tagblock, 3 ) ' this...
chordnl
Offline Send Email
Mar 1, 2007
7:29 pm
11798
... .MemCopyTo is not listed as a FILE object method. However, myfile.CopyFrom tagblock,3 should copy 3 bytes to myfile at its position from tagblock at its...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2007
8:16 pm
11799
I had forgotten to mention that is was defined as MEMORY NOT FILE but file has same problem. dim myfile as memory .readstr (30) is OK .CopyFrom (tagblock,30)...
chordnl
Offline Send Email
Mar 1, 2007
8:56 pm
11800
... Cor, here is my test code and I think the Manual is not correct on MEMCOPYFROM and MEMCOPYTO: =====copybyte.bas $APPTYPE CONSOLE dim m1 as memory, m2 as...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2007
10:14 pm
11801
Thanks Jim, for your quick explanation but i think MemCopyFrom and MemCopyTo do not work if postion <> zero You examples show position=zero before exe these...
chordnl
Offline Send Email
Mar 1, 2007
10:54 pm
11802
... You are right; I think I did not express that clearly. Maybe the manual should say for MEMCOPYFROM and MEMCOPYTO that the copied bytes will always be...
doctor electron
globalservices1
Offline Send Email
Mar 1, 2007
11:29 pm
11803
hotbasic.org captured ? grCor...
chordnl
Offline Send Email
Mar 2, 2007
5:42 pm
11804
Looked over the sbpanels.inc file, tried it out and it worked fine, but wasn't very flexible, so I re-wrote it a little. ' ...
rkstuart57
Offline Send Email
Mar 2, 2007
8:28 pm
11805
... Great! Some options other than use of arrayref() are simply make a copy of the array in your SUB. Then the argument you need is only @A where A is the...
doctor electron
globalservices1
Offline Send Email
Mar 2, 2007
10:20 pm
11806
... So to speak. I completed a transfer of hotbasic.org to an account of my own. There is no telling, at this point, how long that will take to become...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
12:06 am
11808
... This should be OK if you are using the current HB version posted for download. Some weeks back, an issue re closing a FindFile handle was corrected,...
globalservices1
Offline Send Email
Mar 3, 2007
1:59 am
11809
... For very simple array situations like this, another technique, where ptrParts is @A or A.Pointer, where A is an integer array, is: spanels(0) =...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
2:08 am
11810
... Others do not have to put a .repaint statement for the "old" controls to which this applies, since they want the new text color to be shown when the...
globalservices1
Offline Send Email
Mar 3, 2007
2:11 am
11811
... Additional thought: For these "old" controls, including LISTBOX, LABEL, EDIT, etc, a program might want to do a number of color changes and then .Repaint...
globalservices1
Offline Send Email
Mar 3, 2007
2:21 am
11812
I have defined a name filename$ as string in a argument of a sub I have fileName$ defined in a sub when I do a print filename$ by accident instead of fileName$...
chordnl
Offline Send Email
Mar 3, 2007
3:25 am
11813
... Very nice! ... You would not want to pass sbptr as any API call argument, such as in SENDMESSAGE, because it is a pointer to the array object data, not to...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
3:49 am
11814
... hmmm. How else would you use or refer the argument? ... Symbol Table Type Size Arrays filename$ STRING...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
4:50 am
11815
... The keyword above is "find". For me, in working with the compiler's code, HotFind.exe is the most used utility. A debug issue re symbol names -- piece of...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
6:55 am
11816
I made some searches before posting this, but couldn't easily find what i needed, so i hope i will not bother everybody with a repeated request. I am extending...
giorgiobertazzo
Offline Send Email
Mar 3, 2007
10:37 am
11817
I wanted to shorten my routines for scrollbar but window(handle).position is not recognized Is there an other way ? grCor...
chordnl
Offline Send Email
Mar 3, 2007
12:09 pm
11818
... The SELF (and THIS) keywords automate implementation of BYREF() and BYREF$() statements/functions. As such, they are used to access 32-bit values by...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
12:14 pm
11819
... ...because .position of FORM objects is type-dependent. Therefore, one would write window(handle,SCROLLBAR).position so the compiler can know that the...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
12:53 pm
11820
Its been some time since I used HOTSAUCE to download the latest HotBasic Penthouse compiler build but now it no longer seems to work. I downloaded the most...
low_beer_light
Offline Send Email
Mar 3, 2007
12:57 pm
11821
Thanks, works great grCor...
chordnl
Offline Send Email
Mar 3, 2007
2:24 pm
11822
... Someone used HotSauce to download the Trial version just hours ago. If my local server is off-line, you will, of course, not get a download. It's like...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
3:34 pm
11823
Hello LbL ... If you use .Clear on a string, memory or list object, the RAM allocation is reduced back to a small baseline size (about 74 bytes). A$ = "" or A$...
Philip Bister
philip.bister@...
Send Email
Mar 3, 2007
5:59 pm
11824
... Okay, that makes sense now that you've spelled it out. Pointers were the main reason I quit using C some years ago so hopefully I won't have to use them...
rkstuart57
Offline Send Email
Mar 3, 2007
6:20 pm
11825
... Philip is 100% right! =====ramclear.bas $APPTYPE CONSOLE defstr a$ a$.initialize 1024 print " a$.ram = "; a$.ram a$.clear print "After .Clear:" print "...
doctor electron
globalservices1
Offline Send Email
Mar 3, 2007
8:31 pm
Messages 11795 - 11825 of 17145   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