Windows programming

Moderators: None (Apply to moderate this forum)
Number of threads: 3711
Number of posts: 9173

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Win32 vs Command.com (2) Posted by xkgdiam on 7 Dec 2003 at 5:34 PM
    Ok,it well know that modern OSes and programming languages, prevent users 
to access their machines in the way they want to.
Another today fact is that command line tools as 'command.com' are going to
disappear in the few next years.So, noone but a programmer, will be able
to make simple things with his machine unless he has a specific software
for that.Why not anyone can show a message box, make a delete, a dir command
or play some mp3s or videos from his command line ? Why microsoft dont update
'command.com' to support the Windows but prefers to kill it ?
    To get in the point, i made a program and name it 'commander32'.
Through this program, i tend to bring as many Win32 APIs as i can, up to 
the surface of Windows Shell, emulate all of the old 16bit 'command.com',
and much more. The 'commander32' interpreter just execute the code in
its plug-in.

    If anyone wants to implements a command or two, or,
    wants to see what is all about,
    please visit here : http://www.geocities.com/xkvirusgr/commander32.htm
    

Report
Re: Win32 vs Command.com (2) Posted by AsmGuru62 on 8 Dec 2003 at 7:26 AM
:
:     Ok,it well know that modern OSes and programming languages, prevent users 
: to access their machines in the way they want to.
: Another today fact is that command line tools as 'command.com' are going to
: disappear in the few next years.So, noone but a programmer, will be able
: to make simple things with his machine unless he has a specific software
: for that.Why not anyone can show a message box, make a delete, a dir command
: or play some mp3s or videos from his command line ? Why microsoft dont update
: 'command.com' to support the Windows but prefers to kill it ?
:     To get in the point, i made a program and name it 'commander32'.
: Through this program, i tend to bring as many Win32 APIs as i can, up to 
: the surface of Windows Shell, emulate all of the old 16bit 'command.com',
: and much more. The 'commander32' interpreter just execute the code in
: its plug-in.
: 
:     If anyone wants to implements a command or two, or,
:     wants to see what is all about,
:     please visit here : http://www.geocities.com/xkvirusgr/commander32.htm
:     
: 

:
You can work with files (delete, copy, move) using existing COMMAND.COM, but that is it - you cannot do any GUI from that COMMAND.COM, so why invent a wheel?

Report
Re: Win32 vs Command.com (2) Posted by xkgdiam on 8 Dec 2003 at 7:57 PM
: :
: :     Ok,it well know that modern OSes and programming languages, prevent users 
: : to access their machines in the way they want to.
: : Another today fact is that command line tools as 'command.com' are going to
: : disappear in the few next years.So, noone but a programmer, will be able
: : to make simple things with his machine unless he has a specific software
: : for that.Why not anyone can show a message box, make a delete, a dir command
: : or play some mp3s or videos from his command line ? Why microsoft dont update
: : 'command.com' to support the Windows but prefers to kill it ?
: :     To get in the point, i made a program and name it 'commander32'.
: : Through this program, i tend to bring as many Win32 APIs as i can, up to 
: : the surface of Windows Shell, emulate all of the old 16bit 'command.com',
: : and much more. The 'commander32' interpreter just execute the code in
: : its plug-in.
: : 
: :     If anyone wants to implements a command or two, or,
: :     wants to see what is all about,
: :     please visit here : http://www.geocities.com/xkvirusgr/commander32.htm
: :     
: : 

: :
: You can work with files (delete, copy, move) using existing COMMAND.COM, but that is it - you cannot do any GUI from that COMMAND.COM, so why invent a wheel?
:

:
i think the wheel is already somewhere in the OS but hidden and secret,
i think that i can find him and that we can turn him as we like
Report
Re: Win32 vs Command.com (2) Posted by xkgdiam on 8 Dec 2003 at 8:01 PM
: : You can work with files (delete, copy, move) using existing COMMAND.COM, but that is it - you cannot do any GUI from that COMMAND.COM, so why invent a wheel?
: :

: :
: i think the wheel is already somewhere in the OS but hidden and secret,
: i think that i can find him and that we can turn him as we like
:
I think the wheel is the OS itself.And that happens in any OS.
Report
Re: Win32 vs Command.com (2) Posted by Sephiroth on 8 Dec 2003 at 10:53 PM
No offense, but you're 100% wrong and aside from emulating DOS for gaming purposes, that's a waste of time. How do you think certain virii work? They go even lower-level than the standard Win32 file operations and access the hard-drive itself. It can still be done, you just have to know how. Windows can do EVERYTHING DOS could and a whole lot more. I suggest you check out the MSDN, even though most of the examples I've found on it have been wrong lately, and some info is left out, but it can get you on your way.

-Sephiroth

Report
Re: Win32 vs Command.com (2) Posted by xkgdiam on 9 Dec 2003 at 4:13 PM
: No offense, but you're 100% wrong and aside from emulating DOS for gaming purposes, that's a waste of time. How do you think certain virii work? They go even lower-level than the standard Win32 file operations and access the hard-drive itself. It can still be done, you just have to know how. Windows can do EVERYTHING DOS could and a whole lot more. I suggest you check out the MSDN, even though most of the examples I've found on it have been wrong lately, and some info is left out, but it can get you on your way.
:
: -Sephiroth
:
:
i'm not going to emulate Dos, this is what Microsoft do.
i'm just going to do some clear Win32 API calls
like you said WINDOWS can do everything,(almost).
Report
Re: Win32 vs Command.com (2) Posted by Sephiroth on 9 Dec 2003 at 10:05 PM
: i'm not going to emulate Dos, this is what Microsoft do.
: i'm just going to do some clear Win32 API calls
: like you said WINDOWS can do everything,(almost).
:
There is no almost about it. If you're referring to Win95, Win98, or NT4 and below, you are partially right. However, in 2000, ME, and XP, the Win32 API can do anything you want. Look it up.

-Sephiroth

Report
Re: Win32 vs Command.com (2) Posted by AsmGuru62 on 10 Dec 2003 at 9:28 AM
: : No offense, but you're 100% wrong and aside from emulating DOS for gaming purposes, that's a waste of time. How do you think certain virii work? They go even lower-level than the standard Win32 file operations and access the hard-drive itself. It can still be done, you just have to know how. Windows can do EVERYTHING DOS could and a whole lot more. I suggest you check out the MSDN, even though most of the examples I've found on it have been wrong lately, and some info is left out, but it can get you on your way.
: :
: : -Sephiroth
: :
: :
: i'm not going to emulate Dos, this is what Microsoft do.
: i'm just going to do some clear Win32 API calls
: like you said WINDOWS can do everything,(almost).
:
That is my concern exactly... Win32 API is not oriented for command line - if anything - it is oriented for graphics and such. You can implement some functions, of course, like a task view or manipulate files, but that is it. If you want to create a full scaled window from command line - how you will work with it?
Report
Re: Win32 vs Command.com (2) Posted by xkgdiam on 10 Dec 2003 at 9:57 PM
: That is my concern exactly... Win32 API is not oriented for command line - if anything - it is oriented for graphics and such. You can implement some functions, of course, like a task view or manipulate files, but that is it. If you want to create a full scaled window from command line - how you will work with it?
:
I agree, you could create a window from command line but it wil be useless cause it would almost imposible to control it under an command line and make something usefull and not complex.
It just an interface to call Dll functions or APIs passing arguments of any kind,not only string ones.
As i said in another post "ALL programs are useless until you find a way to use them for YOUR needs".
And everyone has his own needs, as well as his own criteria about the
word 'usefull'.




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.