Thanks everyone for all your explanations, did make a lot of sense. I'll try to develop an hotHTML object (as I need one...), based on your lights. I might be...
Hi Cor, I only found the LVM_SORTITEMS message to sort listboxes. But this message looks very complicated to me. My suggestion, use Jims "SortList.inc" to sort...
Feb 1 HotBasic 1.7c and 3.8c add file vs directory discrimination to the FILEEXISTS and DIREXISTS functions. =====direxist.bas $APPTYPE CONSOLE defstr d$ =...
Hi, a new question, I'm afraid... How can we call from a newObject defined as an extension of a OldObject an OldSub from this Old Object. Ie : assume...
... Note: In PRINT statements, use of ";", instead of "+", is always faster and generates shorter executables. With ";", you eliminate the concatenation...
Hello, Pascal. Hey, all questions are welcome. It is an honor to have your interest in coding in HB. Maybe this helps and I'll drop the $DEFINE that Don used...
... In general, there is not much mystery regarding which window() statements require the optional argument. "FORM" (hotform.txt) in the manual will indicate...
... Pascal, You need to stated the actual OldObject and .OldMethod. It helps us to diagnose it. If the OldObject is another extended Object and it's ...
... Thanks, Jim. I am using it in conjunction with CURDIR$, which shows the same full pathname (not DOS 8.2 style), minus the application name. =) Gabs...
... We are on the same page...sort of; just finished correctly changing directory with CHDIR and displaying CURDIR$ in a HB program on Linux! Bit by bit, I'm...
Hello again! 1. How do you determine the application's handle? Does APPLICATION.HANDLE work? 2. Is there a chance that .ONMINIMIZE and .ONMAXIMIZE can be ...
... I second that. Can you imagine how many new Pocket PC models we tested last month for selling to Korea? 3! That's quite a number in our business. Cor, when...
Hello, Jim! ... de> Note: In PRINT statements, use of ";", instead of "+", is always de> faster and generates shorter executables. With ";", you eliminate ...
Also Just 1 line source '------------- PRINT d$;" directory exists" '------------- In C:\BAS\HotBasic\hotbas16\print1.bas: Line 1 ERROR NUMERIC function D$ not...
Cor, when you said Pocket PC, you're referring to WinCE, ... Yes, now renamed to Windows Mobile i think The most persons who I know have got a pocket pc...
with ListBoxObjects(0) does not seem to work is this gonna be supported? cor $APPTYPE GUI $TYPECHECK ON $SYMBOLTABLE OFF CREATE Form as Form left=272 top=224 ...
... Hmmm...the three models we tested from Falcon were still running WinCE still under the name WinCE. =) Man, I thought PC Windows was bad, but WinCE seems...
... Hi Andrew, Make a declaration 'defstr d$' to make it work (funny though, even if I turn off typechecking the error still comes out, which shouldn't...) ...
... Yes, I hope. Last night, I made amazing (to me) progress with HotBasic Linux. I had coded many functions (as direct Linux sys calls) and almost all just...
... The error occurs because you have $TYPECHECK OFF and d$ is not dimensioned (defined). Suggest: Always have $TYPECHECK ON -- you don't have time to waste...
... Gabs, turning it off does nothing, since off is the default. d$ in a print statement is a *source* argument. Automatic typing with $TYPECHECK OFF applies...
... Correct. .sorted for listbox and combobox trigger a .destroy/.recreate sequence and the default after that appears to be .visible = true, according to...