... Right! With due respect to RapidQ, it also has MEMCPY. In HB, MEMCPY is but one example of procedures done locally with the HB .lib -- NO API call. For...
Hello Taplang Thanks for taking a look at HBide, and your feedback. I have now corrected the search routine, and I do believe I know what is causing the...
Philip Bister
philip.bister@...
Nov 1, 2004 1:36 pm
2954
That's great news I have a lot of webdatabases to test with gr. cor...
Hello I have now posted HBide v1.16. This release corrects the issues reported by Taplang, and introduces two re-colouring options: F11 re-colours source code...
Philip Bister
philip.bister@...
Nov 1, 2004 5:25 pm
2956
Is it possible to create a screensaver *.scr program with HB. I need this to start a .scr and immediatly close the the screensaver. gr. cor...
The following code is working: This will generate every 3 seconds a leftmouse click whereever you are. gr. cor $apptype console $typecheck off $symboltable off...
Hello HBide v1.17 now posted! Improvements to colour coding as you type and fixed a bug that prevented highlighting text by using shift+down cursor key. Text...
Philip Bister
philip.bister@...
Nov 2, 2004 4:22 pm
2970
Hello Philip, Tested v1.17 and it feels more solid than the previous. However, I found two bugs--one a bad one, although, I believe, not too hard to fix. 1....
Hello, Philip! You wrote to "Hotbasic" <hotbasic@yahoogroups.com> on Tue, 2 Nov 2004 15:37:37 -0000: PB> Hello PB> HBide v1.17 now posted! PB> Improvements to...
... LPRINT works by opening "lpt1" as a FILE. In short, "com1" and other devices may be opened as a FILE and FILE write methods used for output (and read...
... hmmm. I hear a little voice saying, "Make a LPRINTDEVICE statement." Maybe: LPrintDevice "not_lpt1" Then subsequent LPRINT statements would direct to...
... Cor, in my WriteConsoleInput code in previous reply, I think Buf is supposed to be one or more INPUT_RECORD structures, not a simple character (!) like I...
Run the code below and you will see that top=10 from titlelabel is not displayed at the correct position. it is displayed half the form left=working ok or am...
... Hi Cor. height=?? is omitted and the default height is used. Since LABEL text defaults to vertical-centered, the text appears lower than what you probably...
create cColor as colordialog end create Hex$(cColor.color) generates a 4 bytes value like : 000000FF I think this must be a 3 bytes value. e.g. I want to...
Hello Cor, ... You are right on two counts. HEX$ always produces a 32-bit hex string of length 8; and rgb values are 24-bit. Thus, HEX$(rgb_color) should...
Jim, I now use left$(reverse$(hex$(cColor.Color)),6) Not correct. You are 3 for 4! Think of the value for one color -- a two-character hex string. In general...
... For fun here is a faster routine to convert rgb -> bgr: Declare function rgb2bgr(rgb as LONG) as string 'code function rgb2bgr(rgb as LONG) as string ...
To early in the morning! Correction to my function: function rgb2bgr(rgb as LONG) as string defint x ASM mov edx,rgb: ASM xor eax,eax ASM mov ah,dl ;red ASM...
Thanks Philip, Works fine now. Thanks. Two suggestions though, if you don't mind: 1. You might want to add a Replace function in your Search. (I think all code...