... Thanks. A little revision of the path$ (alias app.path) now checks for leading double quote and removes them (one or more). That is, one or more leading...
... Thanks for feedback; I just edited the asm in the module; good to know that it really works. Now for an upcoming "j" version, I want to incorporate the...
... Yes, thanks for reminder, Don. Let's see what this means: 1. a DECLARE statement has an "As Variant" argument. This results in an automatic DIM of the...
... I think it's great with immediate number and string. Just for variable argument shouldn't restricted to Variant type only. If non-Variant variable parsed,...
A few weeks ago, I advised of a new program, ASCIIviewer uploaded to my web site. I have since, found that the application did not redraw properly when...
Philip Bister
philip.bister@...
Jun 3, 2006 5:00 pm
10256
FYI, the "Linux" link in left panel of hotbasic.html now points to contentx.html -- a work in progress to document what we have or hope to have working in the...
How to write byte value 14 into PNI byte 1? If we make a call to the DLL Open(@zTest) is the PNI value given as a byte instead of string. Is there a small...
... byref$(@zTest.PNI,1)=chr$(14) 'try this If you will really be working with the individual bytes then you might want to try type tTest PNI1 as byte PNI2 as...
... There are so many functionally equivalent ways to handle data in HB, some other points might of general interest. Your usage of a pointer to a series of...
But how define array like below in HB type test code: array[0..24,0..3] of byte end type Is it possible to implement in HB array's in type. Save's a lot of...
... 1. Easy: take it out of TYPE: type test 'non-array members defined here end type dim x as test dim x_array(24,3) as byte dim y as test dim y_array(24,3)...
... exactly as you have above! In the calling module, the statement above with "lib" assumes you are doing a STD call. [BTW, there is no such thing as a...
HBassistant v1.44 has now been released. In this version: * Added extra description for EXP * Added description for antilogs, both common and natural. * Added...
Philip Bister
philip.bister@...
Jun 12, 2006 11:24 am
10267
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File : /Code...
Doc/Jim, Would HotBasic plan to have this option in future? Possibilities: Let say, someone want to write a new Boot sector for a small hobbyist/education OS...
Hello, all. Two new HotLinux demos (coded by yours truly) are available in the Downloads/HotBasic-Linux section on www.airsys.org. They are: 1- DNS Query....
Nice, real ELF programs :o Where did you get the Linux version of the HB compiler? Didn't see any anouncements about where to get it. (only examples of Linux...
... Hi, efgee! If this is directed to me; I wrote it! Some demos are written by AIR who is helping (big time!) in preparing for the first release of HB...
... Great idea, Don! I've pondered this also, having looked umpteen times at link.exe switches. Maybe the future is now (?). What would be the link command...
... Bin are not linked, they only know relative address and stack. These Bin are too called PIC: Position Independant Code. I play with that kind of codes for...
... It's exactly like what Jacques has said. From my understanding, it's a keyword->ASM->IA32 Opcode translation into a raw binary file. So, if someone want to...