AOA Forums AOA Forums AOA Forums Folding For Team 45 AOA Files Home Front Page Become an AOA Subscriber! UserCP Calendar Memberlist FAQ Search Forum Home


Go Back   AOA Forums > Software > Programming and Assembly Language

Programming and Assembly Language Please read this Topic's rules!!


Reply
 
LinkBack Thread Tools Rate Thread
  #1 (permalink)  
Old 13th March, 2007, 08:42 AM
MrSeanKon's Avatar
OcBible Creator
 
Join Date: June 2005
Location: Somewhere in Greece
Posts: 788

Angry From Visual Studio 2003 to 2005 GKR........

Two days ago I installed the express edition of Visual C++ 2005.
This is a part of Visual Studio 2005.
I tried to open RAM Stretcher project.
The new programming platform informed me that the old version files (Visual Studio 2003) must be converted to new one.
But GKR the program could not run and the project file modified (GKR I don't know why).....
Thus I must rewrite the RAM Stretcher again GKR it is boring....
For this reason I uninstalled it.
Moreover it does not support WinAPI (the compilation failed dramatically).

GKR here is a simple code (Visual C++ 2003) but shows a GKR message instead of the common "Hello world" in many C, C++ books.

Code:
#pragma once

namespace GKR
{
	using namespace System;
	using namespace System::ComponentModel;
	using namespace System::Collections;
	using namespace System::Windows::Forms;
	using namespace System::Data;
	using namespace System::Drawing;

	public __gc class Form1 : public System::Windows::Forms::Form
	{	
		public: Form1(void)
		{
			Application::EnableVisualStyles();
			InitializeComponent();
		}
		protected:
		void Dispose(Boolean disposing)
		{
			if (disposing && components)
			{
				components->Dispose();
			}
			__super::Dispose(disposing);
		}
		private: System::Windows::Forms::Button *  button1;
		private: System::ComponentModel::Container * components;

		void InitializeComponent(void)
		{
			this->button1 = new System::Windows::Forms::Button();
			this->SuspendLayout();
			// 
			// button1
			// 
			this->button1->FlatStyle = System::Windows::Forms::FlatStyle::System;
			this->button1->Location = System::Drawing::Point(104, 120);
			this->button1->Name = S"button1";
			this->button1->TabIndex = 0;
			this->button1->Text = S"button1";
			this->button1->Click += new System::EventHandler(this, button1_Click);
			// 
			// Form1
			// 
			this->AutoScaleBaseSize = System::Drawing::Size(5, 13);
			this->ClientSize = System::Drawing::Size(292, 266);
			this->Controls->Add(this->button1);
			this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedDialog;
			this->MaximizeBox = false;
			this->MinimizeBox = false;
			this->Name = S"Form1";
			this->Text = S"Form1";
			this->ResumeLayout(false);

		}	

		
		private: System::Void button1_Click(System::Object *  sender, System::EventArgs *  e)
		{
			MessageBox::Show("Visual Studio 2005 made me GKR.......","My first impression of");
		}
	};
}
The similar program under Visual Studio 2005 differs on some points (definitions of functions, no *) etc...
I am wondering why........
GKR.......................
GKR.......................
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 13th March, 2007, 07:51 PM
Gizmo's Avatar
Chief BBS Administrator
BassTeroids Champion, Global Player Champion, Aim & Fire Champion, Puzzle Maniax Champion, Othello Champion, Canyon Glider Champion, Unicycle Challenge Champion, YetiSports 9: Final Spit Champion, Zed Champion
 
Join Date: May 2003
Location: Webb City, Mo
Posts: 16,178
Send a message via ICQ to Gizmo Send a message via AIM to Gizmo Send a message via MSN to Gizmo Send a message via Yahoo to Gizmo Send a message via Skype™ to Gizmo

I haven't played with VC 2005 Express, so I'm not familiar with the differences between it and the full edition.

I had forgotten about the whole "We changed the version #, so all of the project files have to change format too" thing. This is really, REALLY frustrating, too, because all of the examples in the MSDN use the new file format, meaning that if you aren't using the latest edition of the compiler, you can't even open the examples!

Even MORE infuriating than that, though was the fact that Microsoft went through the online MSDN and changed all of the examples to use the VS 2005 format even before VS 2005 was RELEASED!

I ran into this shortly before VS 2005 came out. I fired off a nastygram to Microsoft about this and received a very nice response that basically boiled down to "We're very sorry you feel you were inconvenienced. Would you like a cookie?".
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 14th March, 2007, 08:28 AM
MrSeanKon's Avatar
OcBible Creator
 
Join Date: June 2005
Location: Somewhere in Greece
Posts: 788

GKR gizmo (not for you) but for M$....
I am wondering if the moving from Visual Studio 2003 to 2005 is something terrific.
OK only two programs are written in C++ but if the other C# forms required programming again then I will be too
__________________
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 14th March, 2007, 03:33 PM
Gizmo's Avatar
Chief BBS Administrator
BassTeroids Champion, Global Player Champion, Aim & Fire Champion, Puzzle Maniax Champion, Othello Champion, Canyon Glider Champion, Unicycle Challenge Champion, YetiSports 9: Final Spit Champion, Zed Champion
 
Join Date: May 2003
Location: Webb City, Mo
Posts: 16,178
Send a message via ICQ to Gizmo Send a message via AIM to Gizmo Send a message via MSN to Gizmo Send a message via Yahoo to Gizmo Send a message via Skype™ to Gizmo

The conversion applies only to the project files, not the source files. That was part of what had me so aggravated with MS; they changed the project file format on their examples so that you could only open the projects with VS 2005, despite the fact that many of the examples were written back in the days of VS 5! (yes, Visual Studio 5 from like 1994 or something, NOT Visual Studio 2005) and didn't include anything that actually was specific to VS 2005.

As for VS 2003 and VS 2005 differences, MS cleaned up a lot of bugs in the VS IDE with 2005 so that a lot of things either work, or work better than they used to with VS 2003.

For myself, I am seriously considering moving to some derivative of the GNU compiler for any of the stuff that I do that is not directly related to my company work. I'm getting more fed up with the MS merry-go-round every day.

Last edited by Gizmo; 14th March, 2007 at 03:34 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 15th March, 2007, 08:45 AM
MrSeanKon's Avatar
OcBible Creator
 
Join Date: June 2005
Location: Somewhere in Greece
Posts: 788

OK let me know what is going on......
As we know you have some of OcBible v1.49 C# parts.
Visual Studio 2005 compile them without problems?
__________________

Last edited by MrSeanKon; 15th March, 2007 at 08:45 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 15th March, 2007, 03:11 PM
Gizmo's Avatar
Chief BBS Administrator
BassTeroids Champion, Global Player Champion, Aim & Fire Champion, Puzzle Maniax Champion, Othello Champion, Canyon Glider Champion, Unicycle Challenge Champion, YetiSports 9: Final Spit Champion, Zed Champion
 
Join Date: May 2003
Location: Webb City, Mo
Posts: 16,178
Send a message via ICQ to Gizmo Send a message via AIM to Gizmo Send a message via MSN to Gizmo Send a message via Yahoo to Gizmo Send a message via Skype™ to Gizmo

With one issue which I have already mentioned to you before, yes.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 21st March, 2007, 08:30 AM
MrSeanKon's Avatar
OcBible Creator
 
Join Date: June 2005
Location: Somewhere in Greece
Posts: 788

The Wizard interface does not show Windows Visual styles.
Focus to the arrows of the comboboxes:

http://www.aoaforums.com/forum/attac...1&d=1174462196

This is a bug of *****ing Visual Studio 2003 cos 2005 appears:

http://www.aoaforums.com/forum/attac...1&d=1174462196

GKR again I saw an exception error using gradient colors (2005):

http://www.aoaforums.com/forum/attac...1&d=1174462196

gizmo we must rewrite from beggining the source code of System Reporter (you know why remember our u2us).
Moreover API.dll cos this is a C++ part of 2005:

Code:
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) 
{
	MessageBox::Show("Should I stop using M$ products?","GKR",MessageBoxButtons::OK,MessageBoxIcon::Question);
}
GKR totally different the procedure definition (2003).

Code:
private: System::Void btn_Hide_Click(System::Object * sender, System::EventArgs * e)
{
	notifyIcon1->Visible=true;
	this->Hide();
}
I CANNOT UNDERSTAND WHY THEY WANT to bother us GKR should we go to Linux forever????????????
Moreover I must rewritte RAM Stretcher's code.
Hopefully most of Ocbible forms are in C# I don't want to imagine myself if the whole code was written in C++.

Post your comments gizmo.
First OcBible versions were written in Borland C++.
It was very boring the conversion Borland C++ ----> Micro$oft C#.
What should I do????
New Windows programming platform?????
Such as Delphi?????
I do not remember anything about Pascal....
Do you suggest other one Windows programming platform???
Or Linux enviroment??????????
In this case OcBible v1.52 will be available after 1-3 years......
Moreover we don't have Linux programming knowledge, imagine you and me reading books like students........
I am very very very very (100000000000000000000 times)
Attached Thumbnails
From Visual Studio 2003 to 2005 GKR........-photo06.png   From Visual Studio 2003 to 2005 GKR........-photo07.png  
__________________

Last edited by MrSeanKon; 26th March, 2007 at 07:48 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Any freeware components for Visual Studio??? MrSeanKon Programming and Assembly Language 2 29th May, 2007 02:39 PM
Visual Studio 2005 Beta Got EpOx OS, Software, Firmware, and BIOS 13 9th October, 2006 08:22 PM
Norton Systemworks 2005 / Norton Personal Firewall 2005 $89.99 - $90.00 rebate = Free mookydooky Online Deals, and Steals 2 20th December, 2004 09:14 AM
Been in the studio Phil Random Nonsense! 19 26th December, 2001 10:39 PM
Going into the studio Phil Random Nonsense! 16 18th December, 2001 12:47 AM


All times are GMT +1. The time now is 04:16 PM.


Copyright ©2001 - 2023, AOA Forums
Don't Click Here Don't Click Here Either

Search Engine Friendly URLs by vBSEO 3.3.0