Sep 4 HotBasic 4.3g now allows use of MEMORY properties and methods for array objects. E.g., A.position = 12, where A is an array (ping Don). New HotStuff...
... I should add that HotStuff takes a command-line parameter -- the extension of the source files (default is "bas"). So with HotStuff c you would be finding...
... GEE NOW I CAN DISCARD MY BLDALL.BAT FILE . I MAY MODIFY HOTSTUFF TO APPEND HB'S TMP.OUT TO A BLDALL.ERR IF ERRORLEVEL NOT 0 ..SO I CAN SEE/RETAIN ALL ERROR...
Dear Jack, ... Thanks to your ideas and the need to test releases, HotStuff was born to automate this. Previously, I would test compile many programs -- but...
I need to move a UDT to a string. type myudt one as string * 2 = "A" two as string * 2 = "B" three as string * 2 = "C" end myudt dim myvar as myudt In many...
Sep 8 HotBasic 4.3h corrects a bug occurring only when constructor syntax is used for a UDT STRING item and the default string length is greater than or equal...
... This works: =====writeudt.bas $APPTYPE CONSOLE type myudt one as string * 2 = "A " two as string * 2 = "B " three as string * 2 = "C " end myudt dim...
HotIDE 2.6f conforms better to recent HotBasic compiler versions. Specifically, the keyboard "hot keys" to compile (F4 and F5) now work properly with the...
Hi Jim, the following code should display two forms, but only one form is displayed. After activating 'Center' in the second form, this form comes up too. ...
... The second form is displayed on my box (800 x 600) at screen top -- a little of the bottom is shown. For .Center, you may comment out the .Left and .Top...
New Version of the HotPad IDE. From the Changelog: ================================================================================ 09/11/05 Version 0.8.5 *...
Does anyone know of a way to open up a webpage in the users default web browser without using the Shell "cmd /c start /b http://www.hotbasic.org" way ? This...
Hi Fredrik, I'm using the following code to get the default browser from the registry, and then opening the webpage with the RUN command. PS: Don't know if...
... Using api calls: ============================ $apptype gui:$typecheck on declare function ShellExecuteA lib "shell32" _ (hwnd as dword, _ lpoperation as...
I am writing a subroutine that requires a pointer to a string. It then fills the string with text. I dont know ahead of time how long the text is, so how can...
... This is an interesting post. I would be happy to know how this might be done in any programming language, if it is possible. My first take is that it is...
... ...in which case, the calling code could get the string with Result$=varptr$(MyProc) where MyProc is a FUNCTION ... As LONG and MyProc returns a ram ...
... Oops, I goofed. Looking at DirTree.inc (again), I see it just declares the FUNCTION ... As STRING. What could be easier? It just returns the string of...
Thanks, I will make it simple and declare the function to return a string. Tom ... __________________________________ Yahoo! Mail - PC Magazine Editors' Choice...
Hi, I'm running into a problem with RICHEDIT2. It seems that something in HB prevents it from handling international characters properly. The symptoms: if I...
... How about comparing the two (HB native and your ad hoc CreateWindowEx call): Exstyle, Style, Class, -- the works! Apparently, you have some difference...
... Well, there is a difference. On a French keyboard, somne accented characters (é, è, à, ù) are keys on the keyboard. On a Spanish keyboard, accents are...
... As for Exstyle, Style, Class, they're identical. That's the 1st thing I checked. EDIT don't support accents either. As for DefWndProc and .Recreate, I'll...
... No, pressing alt+ascii code this work in hotbasic richedit2 ex: alt+0226 = â ex: alt+0228 = ä but with standards keys this no work in hotbasic richedit2 ...