DeathFox Member Posts: 57 From: Registered: 04-25-2006 |
Basically, I need help on making a program that emulates some basic dos commands like cd,md,dir,rd,ren,del and such. I can either use Turbo C or Blitz. Plz help me |
jestermax![]() Member Posts: 1064 From: Ontario, Canada Registered: 06-21-2006 |
use linux ![]() or write yourself some nice scripts |
HanClinto![]() Administrator Posts: 1828 From: Indiana Registered: 10-11-2004 |
Hi, DeathFox! Are you looking for advice on how to do it? Those are some pretty basic commands, and you should be able to get pretty much what you need from whatever C reference manual you're using. Is this for a homework assignment, or are you just wanting some source code that does what you've said? --clint |
firemaker103![]() Member Posts: 643 From: Registered: 07-13-2005 |
I made one a while back in Blitz. Source code is included with the download. FOS ------------------ [This message has been edited by firemaker103 (edited July 17, 2006).] |
DeathFox Member Posts: 57 From: Registered: 04-25-2006 |
Im having troubles with Blitz coz I don't know the != (Not Equal) command in Blitz. |
Nomad Member Posts: 63 From: Registered: 06-29-2004 |
In Blitz, != was ~= (I think?). Or you can use the Not statement in front of the equivalent == statement. It's been a few years, just wanted to throw it out until the regular Blitz users come to the rescue. |
firemaker103![]() Member Posts: 643 From: Registered: 07-13-2005 |
I believe its <>.... ------------------ |
luke![]() Member Posts: 311 From: I use your computer as my second Linux box Registered: 10-30-2005 |
yes, in Blitz not equals equals '<>' [pun intended] ------------------ |
dartsman![]() Member Posts: 484 From: Queensland, Australia Registered: 03-16-2006 |
I would like to but: The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. I have C++ example and C example... Find it at: http://www.projectnresource.com/phpbb/viewtopic.php?p=626#626 ------------------ [This message has been edited by dartsman (edited July 18, 2006).] |
jestermax![]() Member Posts: 1064 From: Ontario, Canada Registered: 06-21-2006 |
<> is not just a blitz things, it a BASIC thing (aka Visual Basic, etc uses that) |
DeathFox Member Posts: 57 From: Registered: 04-25-2006 |
I already finished with the program. But I think I wanna take it a step higher and make it a GUI program. Can someone plz help me on getting started. |
jestermax![]() Member Posts: 1064 From: Ontario, Canada Registered: 06-21-2006 |
if i knew anything about blitz, i honestly would, lol. i know VB guis, win32 guis, java swing guis but not blitz basic ![]() |
bennythebear![]() Member Posts: 1225 From: kentucky,usa Registered: 12-13-2003 |
if you're wanting to do windows apps, why don't you try vb.net 2005 express edition, it's completely free, and you can compile and distribute your apps and everything...it's also what i'm using. if you're interested post something and i'll find you the link for it. ------------------ proverbs 25:7 www.gfa.org - Gospel for Asia www.persecution.com - Voice of the Martyrs |
DeathFox Member Posts: 57 From: Registered: 04-25-2006 |
Im not really familiar with other languages besdies Blitz and C/C++ and we have a defense on our program so I might screw up in other languages ![]() |