Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 12703 - 12735 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12703
I use the following to strip a directory name from filename Are there simpler ways? '--------------------------------------- ' strip dir name 'C. de Visser ...
chordnl
Offline Send Email
Aug 3, 2007
10:02 pm
12704
... 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 ...
doctor electron
globalservices1
Offline Send Email
Aug 3, 2007
10:30 pm
12705
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...
chordnl
Offline Send Email
Aug 3, 2007
11:13 pm
12706
... Each "dim mylist as list" will clear previous mylist values. Cheers, jim...
doctor electron
globalservices1
Offline Send Email
Aug 3, 2007
11:27 pm
12709
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...
low_beer_light
Offline Send Email
Aug 4, 2007
1:20 am
12710
Each "dim mylist as list" will clear previous mylist values. ... It is initialized only once grCor...
chordnl
Offline Send Email
Aug 4, 2007
7:25 am
12711
I think the flush to disk is not working ok. If i can remember this was also a problem in a previous version grCor...
chordnl
Offline Send Email
Aug 4, 2007
7:33 am
12712
I think i found the problem. showmessage (path$) 'shows directory $INCLUDE "include\DirTree.inc" showmessage (path$) 'empty DirTree.inc causes the problem ...
chordnl
Offline Send Email
Aug 4, 2007
9:15 am
12713
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...
chordnl
Offline Send Email
Aug 4, 2007
9:28 am
12714
... 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...
doctor electron
globalservices1
Offline Send Email
Aug 4, 2007
1:25 pm
12716
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...
cesarbaptista
Offline Send Email
Aug 6, 2007
6:25 pm
12717
-No problem with the debugger loading the source just change your row RUN QUOTE + txtDebugger.text + QUOTE to RUN QUOTE + txtDebugger.text + QUOTE+"...
fnoware
Offline Send Email
Aug 7, 2007
7:02 am
12718
... 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...
efgee2003
Offline Send Email
Aug 7, 2007
4:24 pm
12719
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...
Airr
airrsongs
Offline Send Email
Aug 7, 2007
7:20 pm
12720
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...
cesarbaptista
Offline Send Email
Aug 7, 2007
9:53 pm
12721
Has anybody built a date picker to use with the date object in hotbasic ? /Fredrik...
fnoware
Offline Send Email
Aug 8, 2007
12:32 pm
12722
... 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...
doctor electron
globalservices1
Offline Send Email
Aug 8, 2007
2:46 pm
12723
Well not exactly what I meant. I meant a popup calendar to pick from. /Fredrik...
fnoware
Offline Send Email
Aug 8, 2007
3:59 pm
12724
Well not exactly what I meant. I meant a popup calendar to pick from. /Fredrik...
fnoware
Offline Send Email
Aug 8, 2007
4:00 pm
12725
... 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...
doctor electron
globalservices1
Offline Send Email
Aug 8, 2007
5:05 pm
12726
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...
fnoware
Offline Send Email
Aug 8, 2007
7:14 pm
12727
... 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 ...
doctor electron
globalservices1
Offline Send Email
Aug 8, 2007
7:44 pm
12728
... 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...
fnoware
Offline Send Email
Aug 8, 2007
8:08 pm
12729
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...
fnoware
Offline Send Email
Aug 9, 2007
7:42 am
12730
... 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)...
Airr
airrsongs
Offline Send Email
Aug 9, 2007
8:18 am
12731
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...
low_beer_light
Offline Send Email
Aug 9, 2007
6:55 pm
12732
Hi Fredrik, if you create a DATETIMEPICKER control without any style-settings CREATE dt as DATETIME ... END CREATE Hotbasic creates a DATETIMEPICKER control...
-Alex-
fconx_aho
Offline Send Email
Aug 9, 2007
7:36 pm
12733
... 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...
doctor electron
globalservices1
Offline Send Email
Aug 9, 2007
8:59 pm
12734
OK, now I understand why it behaved strange. When I Xor:ed everything with dates away I could turn on the time selector also. GREAT Thanx Fredrik...
fnoware
Offline Send Email
Aug 10, 2007
5:38 am
12735
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 ...
low_beer_light
Offline Send Email
Aug 10, 2007
12:16 pm
Messages 12703 - 12735 of 17146   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help