I use the following to strip a directory name from filename Are there simpler ways? '--------------------------------------- ' strip dir name 'C. de Visser ...
... This is not entirely conclusive (just one pathname from your code), but below I put your and my code into a mini-version of speedab.bas; =====dirname.bas ...
HB version 5.3 using xp mediacentre When using several times after eachother dim mylist as list print mylist mylist.savetofile(name) will not save the values...
Hi Cor, I have experienced the same intermittent problems (5.2 to 5.3) when using x.savetofile; my workaround was to do it the long way, OPEN, WRITE, and...
I think i found the problem. showmessage (path$) 'shows directory $INCLUDE "include\DirTree.inc" showmessage (path$) 'empty DirTree.inc causes the problem ...
And the problem is ;-) in DirTree.inc Declare FUNCTION DirTree (path$ As String, maskbits As LONG) As STRING It uses path$ as string which is a predefined...
... Yeah, I noted and changed "path$" in my copy of DirTree.inc some time ago. Good to know there is no issue with .SaveToFile in your reports. Thanks. ;) j...
Hi everyone, This is my first program with HotBasic. It´s called HotCompiler and like the name says it's a program to compile HotBasic Source Code. The...
-No problem with the debugger loading the source just change your row RUN QUOTE + txtDebugger.text + QUOTE to RUN QUOTE + txtDebugger.text + QUOTE+"...
... Don't want to be a "party pooper" but the program of yours is NOT a COMPILER. From wikipedia: "A compiler is a computer program (or set of programs) that...
On Mon, 06 Aug 2007 18:25:13 -0000, "cesarbaptista" ... Nice work! ... On multiple compiles, I get error dialogs for each because you append "\" to the...
Ok Guys, As you can see i change the name of the program to HotBuilder as suggested by efgee2003. Also a new version has arrived with some bugs corrected and...
... Yes! =====datetime.bas dim d1 as date create f As FORM width=226: height=120 create b as button caption="Get Date-Time" onclick=get_date end create create...
... The code I posted *does* have a popup calendar. If you want the whole window to popup, then just make it visible (e.g., the "Find" window "pops up" upon...
Sorry, I didn't test the code just speed read it thru my mobile. Is there any way to change how the date is presented in the datetime object ? Can I select...
... Re my mobile, on earth or in space? Actually you could programmatically cause the datetime to display its calendar, say, by sending it a mousedown message ...
... Actually at my sons football practice, thru the RSS reader in my Sony Ericsson K800i What secrets Hotbasic holds and I thought I knew them all ;-) /fredrik...
I tried the style bits get the short date to work like this. But I can't get it to work as the style bits tells me they should work, but I'm probably dooing...
... I think you might need to put recreate at the end, after you've set all the properties for the dt object...I had to do that to enable the checkbox (OR 2)...
I purchased a friends machine with MySQL installed in c:\mysql. He provided me with the username and password for it. Can someone start me off with some HB...
Hi Fredrik, if you create a DATETIMEPICKER control without any style-settings CREATE dt as DATETIME ... END CREATE Hotbasic creates a DATETIMEPICKER control...
... HB's native SQL support is the SQLDATA object, which works whether or not MySQL is installed on a machine. Thus, it's dim MysQL as SQLDATA The HotQuery...
Hi Doc, Thanks for the reply. Please be patient with my sophomoric questions as Im not sure I understand your reply. So, you are saying I cannot use HotBasic ...