... Hello Jim, Maybe a small bug in path$ function A double quote appears at the start of string if the program is launched by dblclick Pierrot...
10248
MANY PIERRE
pierrotstudio
Jun 2, 2006 5:46 am
... Hello Jim, Maybe a small bug in path$ function A double quote appears at the start of string if the program is launched by dblclick Pierrot...
10249
doctor electron
globalservices1
Jun 2, 2006 1:02 pm
... 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...
10250
MANY PIERRE
pierrotstudio
Jun 2, 2006 1:40 pm
... This work fine ;) Pierrot...
10251
doctor electron
globalservices1
Jun 2, 2006 4:14 pm
... 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...
10252
Don
don67geo
Jun 3, 2006 12:02 am
... Are disabled type checking for Variant in udf argument will be included? - Don....
10253
doctor electron
globalservices1
Jun 3, 2006 12:38 am
... 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...
10254
Don
don67geo
Jun 3, 2006 1:15 am
... 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,...
10255
Philip Bister
philip.bister@...
Jun 3, 2006 5:00 pm
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...
10256
doctor electron
globalservices1
Jun 6, 2006 12:34 am
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...
10257
bruno
brunobdr
Jun 7, 2006 7:34 pm
... Very well! highly the compiler :) bruno...
10258
chordnl
Jun 7, 2006 10:40 pm
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...
10259
doctor electron
globalservices1
Jun 7, 2006 11:48 pm
... 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...
10260
doctor electron
globalservices1
Jun 8, 2006 2:14 am
... 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...
10261
chordnl
Jun 8, 2006 8:38 am
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...
10262
chordnl
Jun 8, 2006 9:38 am
How to declare the following as STD call Declare Function GKClose lib "GKDLL.DLL" as byte grCor...
10263
doctor electron
globalservices1
Jun 8, 2006 12:22 pm
... 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)...
10264
doctor electron
globalservices1
Jun 8, 2006 12:37 pm
... Correction: subscripting below is 1-based, not 0-based: MyByte = asc(xa[i*4+j+one]) 'read byte i,j xa=replace$(xa,chr$(k),i*4+j+one) 'write byte i,j with...
10265
doctor electron
globalservices1
Jun 8, 2006 12:56 pm
... 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...
10266
Philip Bister
philip.bister@...
Jun 12, 2006 11:24 am
HBassistant v1.44 has now been released. In this version: * Added extra description for EXP * Added description for antilogs, both common and natural. * Added...
10267
hotbasic@yahoogroups....
Jun 12, 2006 3:13 pm
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...
10268
Don
don67geo
Jun 13, 2006 3:57 am
... Very nice stuff, pierre. :-D - Don....
10269
Don
don67geo
Jun 13, 2006 4:31 am
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...
10270
Airr
airrsongs
Jun 13, 2006 4:11 pm
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....
10271
efgee2003
Jun 13, 2006 4:58 pm
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...
10272
Airr
airrsongs
Jun 13, 2006 6:06 pm
... Let's just say it involved waiting for a lot of concrete to dry.... :) AIR....
10273
doctor electron
globalservices1
Jun 13, 2006 9:21 pm
... 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...
10274
doctor electron
globalservices1
Jun 13, 2006 9:26 pm
... 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...
10275
erdemaal
Jun 13, 2006 9:53 pm
... 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...
10276
Don
don67geo
Jun 14, 2006 4:36 am
... 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...