Petition to Microsoft

Announce and discuss the progress of your various programming-related projects...programs, games, websites, tutorials, libraries...anything!

Moderators: Pete, Mods

Post Reply
QB News
Site Admin
Posts: 44
Joined: Sun Jun 20, 2004 6:52 pm

Petition to Microsoft

Post by QB News »

<p align="right"><b><font size=3>January 16, 2005</font></b></p>

<p><font size=3><b>Petition to Microsoft</b></font></p>
<p><font size=3>Sign: <a href="http://forum.qbasicnews.com/viewtopic.p ... </font></p>
<p>Everybody, just read this! Go to http://forum.qbasicnews.com/viewtopic.p ... 04&start=0 and sign!!!

<br>

<p align="right"><font size="3"><b>Submitted by

<a href="mailto:nathant93@gmail.com">Nathan</a>

</b></font>
</p>
User avatar
Mitth'raw'nuruodo
Veteran
Posts: 839
Joined: Sat Jan 22, 2005 11:04 am
Location: Eastern Coast of US
Contact:

Post by Mitth'raw'nuruodo »

Ok....I read it and have a couple questions....nothing much just questions the main point of the petition... :wink:
  1. So why does this petition exsist? I thought Microsoft released QB4.5 as freeware a long time ago.
  2. Also it said that we enjoyed some of the great products form Microsoft and amoung those was its Visual C++, while we are along that line: I say take that out and even go as far to make another petition to Microsoft to ask them to publicaly anounce that 7.0-8.0 versions of Microsoft Visual C++ were mistakes, and to ask them NEVER to make a C++ version like them again. They were that bad.
Well that's all.
"But...It was so beutifully done"
MystikShadows
Veteran
Posts: 703
Joined: Sun Nov 14, 2004 7:36 am
Contact:

Post by MystikShadows »

To answer your first Item. Yes the source to QBasic 1.1 were out there, but now by M$'s doing. I believe it some how leaked out so to speak.

Well right now I use studio 6.0 so I don't have your VC++ 7 AND 8 TOURMENTS ;-).....
When God created light, so too was born, the first Shadow!

MystikShadows

Need hosting? http://www.jc-hosting.net

Interested in Text & ASCII development? Look no further!
http://www.ascii-world.com
User avatar
Mitth'raw'nuruodo
Veteran
Posts: 839
Joined: Sat Jan 22, 2005 11:04 am
Location: Eastern Coast of US
Contact:

Post by Mitth'raw'nuruodo »

Ya your lucky you never had to go from Mirosoft's Visual C++ 6.0 to 7.0 or 8.0 because ITS IRITATING(I want to keep this forum rated E).

The Libraries are all screwed with, the key words are also messed up, THERE'S NO RANDOM COMMAND!!!! You have to put STD:: before every cout, cin, etc.

If you ask me I think I put this as mildly as possible.
"But...It was so beutifully done"
MystikShadows
Veteran
Posts: 703
Joined: Sun Nov 14, 2004 7:36 am
Contact:

Post by MystikShadows »

You can always use the following


// this line will allow you to not have to put std infront of everything.
using namespace std;

int main(int argc, char* argv[])
{
cout << "This will show like it is supposed to.";
}
When God created light, so too was born, the first Shadow!

MystikShadows

Need hosting? http://www.jc-hosting.net

Interested in Text & ASCII development? Look no further!
http://www.ascii-world.com
User avatar
Mitth'raw'nuruodo
Veteran
Posts: 839
Joined: Sat Jan 22, 2005 11:04 am
Location: Eastern Coast of US
Contact:

Post by Mitth'raw'nuruodo »

Ummm...hello? Yes, You have to do BOTH in order for it to work, but still my aurgument stands!

What's with the parameters in the int main () statment?
"But...It was so beutifully done"
MystikShadows
Veteran
Posts: 703
Joined: Sun Nov 14, 2004 7:36 am
Contact:

Post by MystikShadows »

The parameters are there to accept command line parameters

int main(int argc, char* argv[])

argc is the number of passed command line parameters

argv[] is an array of all the passed command line parameters.

Youd typically loop those to see all that was passed to the application

Code: Select all

for(i=0; i<=argc; i++)
{
    if(argv[i] == "/help") then
      // code to dislplay help screen with valid command line parameters
}
see where I use argc and argv[] ? I didn't test this short example, it's just to give you an idea of where and how it might be used.

the if would say if the user typed progname.exe /help and press enter then it would go to display the help screen.
When God created light, so too was born, the first Shadow!

MystikShadows

Need hosting? http://www.jc-hosting.net

Interested in Text & ASCII development? Look no further!
http://www.ascii-world.com
User avatar
Mitth'raw'nuruodo
Veteran
Posts: 839
Joined: Sat Jan 22, 2005 11:04 am
Location: Eastern Coast of US
Contact:

Post by Mitth'raw'nuruodo »

ok, got it, thanks for the explain.
"But...It was so beutifully done"
MystikShadows
Veteran
Posts: 703
Joined: Sun Nov 14, 2004 7:36 am
Contact:

Post by MystikShadows »

You're very welcome :-).
When God created light, so too was born, the first Shadow!

MystikShadows

Need hosting? http://www.jc-hosting.net

Interested in Text & ASCII development? Look no further!
http://www.ascii-world.com
Post Reply