Qbasicnews.com
Minor update at Antoni Gual page - Printable Version

+- Qbasicnews.com (http://qbasicnews.com/newforum)
+-- Forum: QbasicNews.Com (http://qbasicnews.com/newforum/forum-3.html)
+--- Forum: QB/FB News (http://qbasicnews.com/newforum/forum-8.html)
+--- Thread: Minor update at Antoni Gual page (/thread-4438.html)

Pages: 1 2


Minor update at Antoni Gual page - Antoni Gual - 08-05-2004

Just some downloads and links added/updated, the same old design and an e-mail address to spam.
http://www.geocities.com/antonigual/qbasic.html


Minor update at Antoni Gual page - oracle - 08-05-2004

Quote:You are the visitor number Counter

I like the "smallest directory browser" category Wink


Minor update at Antoni Gual page - Antoni Gual - 08-05-2004

Solved. Thanks!

For the small browsers, I always wanted a simple SUB to paste into those programs whose use user interface is.
Code:
Input file name:



Minor update at Antoni Gual page - oracle - 08-05-2004

Heh, well it's a good idea. Maybe it should be a challenge somewhere... Wink


Minor update at Antoni Gual page - Antoni Gual - 08-05-2004

No rules against shell to dos or interrupt calls, please. Don't forget these are the only ways you can change drive in QB!


Minor update at Antoni Gual page - Z!re - 08-05-2004

The problem with using shell, is that on XP you need to add "cmd" while on 9x it doesent work with "cmd"

XP:
SHELL "cmd " + [command]

9x:
SHELL [command]


It's annoying, I tell you...


Minor update at Antoni Gual page - Antoni Gual - 08-05-2004

So none of the directory browsers in my page works for you?
They work ok in Windows 2000!


Minor update at Antoni Gual page - na_th_an - 08-05-2004

Quote:The problem with using shell, is that on XP you need to add "cmd" while on 9x it doesent work with "cmd"

XP:
SHELL "cmd " + [command]

9x:
SHELL [command]


It's annoying, I tell you...

Not true, in XP you don't need "cmd". This works perfectly:

Code:
SHELL "dir >p.txt"
OPEN "p.txt" FOR INPUT AS #1
WHILE NOT EOF(1)
   LINE INPUT #1, l$
   PRINT l$
WEND
CLOSE

The only prob with XP is that SHELLing from a QB program doesn't work with long filenames (the DIR above gives the ~1 filenames and stuff), whilst in 98 it did (the above program would list long filenames in Win98).


Minor update at Antoni Gual page - Z!re - 08-05-2004

I'm on win98

Nath, sorry. I meant:

SHELL [program name]
Does not work under XP, atleast not on the two computers I've tested it on...

Whereas, SHELL "cmd "+[program name] works fine


Antoni, they all work fine for me Wink, just pointed a possible problem oput, but it turned out to be not so much of a problem after all, like nath said.


Minor update at Antoni Gual page - na_th_an - 08-05-2004

Quote:I'm on win98

Nath, sorry. I meant:

SHELL [program name]
Does not work under XP, atleast not on the two computers I've tested it on...

Whereas, SHELL "cmd "+[program name] works fine


Antoni, they all work fine for me Wink, just pointed a possible problem oput, but it turned out to be not so much of a problem after all, like nath said.

I've just tried. It works. I just did a

Code:
SHELL "BC"

and it worked.