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 15549 - 15578 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15549
Here is a primitive working demo of MENU Custom Object. Hopefully, this code will serve as yet another tutorial on using HB's advanced Custom Object features...
doctor electron
globalservices1
Offline Send Email
Aug 3, 2008
1:58 pm
15550
Hi Everyone, Things soured unexpectedly with www.hotvisual.org, but we are going to try this again. This time it is www/allbasic.info/forum/ A part of the...
Donald Darden
pc_doer
Offline Send Email
Aug 3, 2008
4:17 pm
15551
... Thanks, Don! I'm looking forward to this new journey..... AIR. -- "Programming is like Poetry. Sometimes the words just escape you..." -me, to my manager. ...
Armando Rivera
airrsongs
Offline Send Email
Aug 3, 2008
5:01 pm
15552
John and I have been setting up a new website (you may have seen an earlier post on this). It is growing quickly, and we are putting a long of effort into it,...
pc_doer
Offline Send Email
Aug 5, 2008
11:59 pm
15553
Hi, i'm just evaluating hb and wrote this small benchmark program: $APPTYPE CONSOLE dim i as integer dim t as int64 dim x as double dim y as double x = 1 y =...
u1arie
Offline Send Email
Aug 6, 2008
3:33 pm
15554
... IF hbsetup completed the install, hot11.exe and its .lib should be in the HB directory and link.exe and other files in the bin sub-directory. This can be...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
3:48 pm
15555
Hi Jim, indeed it was somehow caused by a wrong (?) installation choice. The first time around i didn't know what to do when i saw the HOTSAUCE dialog pop-up...
u1arie
Offline Send Email
Aug 6, 2008
5:32 pm
15556
The Trial version is a Console only release, version 1.1 HotBasic Pentouse is the full version compiler, which supports Console, GUI, CGI, DLL, and Obj...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
5:51 pm
15557
... Another victory for hbsetup ... I suppose. ... The registered or "full-featured" version. Other software makers use other P-words like "Pro" or...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
5:54 pm
15558
This seems a bit strange. I have a function called mask$(sstr$ as string) as string at the end of my program. I have a DECLARE FUNCTION mask$(sstr$ as string)...
pc_doer
Offline Send Email
Aug 6, 2008
6:19 pm
15559
Hmmm. It looks like I'm not allowed to use a $ as part of the name for a function, even though it is suppose to return a string. Now I have a problem that...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
6:48 pm
15560
... Please try dropping the $ as the function suffix (call it "mask"). ;) J...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
6:52 pm
15561
... ...and no $ after the type either: DECLARE FUNCTION mask (sstr$ as string) as string This code works: $APPTYPE CONSOLE Declare function mask as string$ ...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
6:57 pm
15562
Yeah, I did that, and it does compile. But it GPFs. I tried to use the debugger, which compiles, and lets me add variables to watch, but nothing...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
6:58 pm
15563
... Very cool, sir! With the string A, here's the trick ASM mov ebx,A.loc where internally in the compiler, A.loc is recognized as the location containing the...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:02 pm
15564
... For string A: ASM mov esi,A.loc ;string pointer ASM mov ecx,A.len ;string length (not counting null byte)...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:06 pm
15565
The only $ I used was after mask$, which I dropped. The other must be typo when I was retyping in email. And because I can't send attachments to the group,...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
7:07 pm
15566
I thought I remembered a .loc or .location or .position from earlier reading but could not find a reference to it, Did not find it in HBAssistant either....
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
7:11 pm
15567
You are using null terminated strings? Isn't that going to cause problems if I try to handle binary content with strings? What happens when chr$(0) is...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
7:14 pm
15568
... Two words: Forte Agent...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:15 pm
15569
... The ".loc" and ".len" names are undocumented -- used internally in the compiler. Let us agree that my posts are not documentation of them, since nobody...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:18 pm
15570
I changed the references in my code, but it still crashes and burns. I think I should send my source code so that someone can figure out why the debugger will...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
7:24 pm
15571
... defstr A = string$(10,chr$(0)) is a string consisting of ten bytes of zero value. In ASM, if you look at the 11th byte, you will also find it is 0, the...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:31 pm
15572
... If you are using BEGIN ASM/END ASM blocks, I think debugger could not work there. It should work with ASM statements! Lots of HB users know ASM; would be...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:40 pm
15573
... You can isolate the exact ASM statement by inserting a PRINT "hello" at different points until you isolate "have print" when before the "bad" statement,...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:44 pm
15574
... Oops, I said, "probably would work with ASM statements". NOT! I think debugger inserts calls between statements so you can't expect registers to be...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
7:46 pm
15575
Okay, I'm using BEGIN ASM and END ASM, so that might explain why the debugger just sits there. Now we need someone to update their IDE to toggle between an...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
7:48 pm
15576
... I conjectured that debugger could no handle stepping through begin asm/end asm blocks. It could, perhaps, if the statement it inserts between lines is of...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
8:16 pm
15577
I;ve already got it converted to ASM statements. Right now it looks like Asm mov ecx,a.Len Is putting something besides the length of a (3 bytes) into ecx...
Donald Darden
pc_doer
Offline Send Email
Aug 6, 2008
8:59 pm
15578
... Think you already know that A.len is case-sensitive and its just your email program that mangles text. Maybe this code would be of interest: $APPTYPE...
doctor electron
globalservices1
Offline Send Email
Aug 6, 2008
9:22 pm
Messages 15549 - 15578 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