I am struggling like hell, please help me out. I have the windows service pack 2. I have downloaded the 2MB(visual c++ express edition) file from net which inturn directs to the Microsoft server but that stupid server is not working. I dont know why?? I have a CD, provided by the computer magazine, which provides the same IDE, but some files are missing that CD. Please help me out?? From where to install Visual C++ 2005 Express Edition??
How to install visual c++ 2005 expree edition?
u need to buy a license... don't go for pirates or trial versions
Reply:The Express editions are just for advertising the product.You have to purchase full version which is about 600 MB
Sunday, July 12, 2009
I need help in C# Help.?
I'm using Microsoft Visual C# .NET and develop in Windows Application, which means that I'm using Windows form.
If I put in Hyperlink on the form, how do I make it link to internet? For example, "http://www.yahoo.com".
Or maybe, a button? I kind of forget something so basic. Oops.
I need help in C# Help.?
Open up the web browser after the OnClick event is triggered on the link label. Probably the easiest way.
private void linkLabel1_LinkClicked(object sender,
LinkLabelLinkClickedEventArgs e)
{
Process.Start("http://www.asp.net");
}
Reply:I'd use a LinkLabel. http://msdn2.microsoft.com/en-us/library...
If I put in Hyperlink on the form, how do I make it link to internet? For example, "http://www.yahoo.com".
Or maybe, a button? I kind of forget something so basic. Oops.
I need help in C# Help.?
Open up the web browser after the OnClick event is triggered on the link label. Probably the easiest way.
private void linkLabel1_LinkClicked(object sender,
LinkLabelLinkClickedEventArgs e)
{
Process.Start("http://www.asp.net");
}
Reply:I'd use a LinkLabel. http://msdn2.microsoft.com/en-us/library...
Setting background transparent for using shockwaveFlash control on .NET?
Hi
i wanna to set transparent setting for my ShockwaveFlash component in my Visual C#.NET or Visual VB.NET.
we know with Transparet setting for ShockwaveFlash component, the background colour of ShockwaveFlash will be removed.
Thanks a lot
Setting background transparent for using shockwaveFlash control on .NET?
Hey man! go to these pages:
http://www.mikechambers.com/blog/2003/05...
http://msdn2.microsoft.com/en-us/library...
Reply:Hello, I'm not sure its the same settings but its worth a shot.
When using Flash 8 I add a parameter wmode="transparent" which removes the background.
-Joe
flowering plum
i wanna to set transparent setting for my ShockwaveFlash component in my Visual C#.NET or Visual VB.NET.
we know with Transparet setting for ShockwaveFlash component, the background colour of ShockwaveFlash will be removed.
Thanks a lot
Setting background transparent for using shockwaveFlash control on .NET?
Hey man! go to these pages:
http://www.mikechambers.com/blog/2003/05...
http://msdn2.microsoft.com/en-us/library...
Reply:Hello, I'm not sure its the same settings but its worth a shot.
When using Flash 8 I add a parameter wmode="transparent" which removes the background.
-Joe
flowering plum
C or C++? Which is better?
Ok, so I am interested in enrolling in correspondence courses to learn computer programming, the problem is I can't tell which is better. Stratford Career Institute, or Penn Foster Career School.
Both have great courses but with differences.
Penn foster Visual C# .NET Programmer...
http://pennfoster.com/visualc/ProgramOut...
And Stratford Career Institute Computer Programming....
http://www.scitraining.com/Courses_US/Co...
As I don't really know much about this stuff, I would like it if someone who does know can point me to the better school.
Prefer someone who is in this career.
C or C++? Which is better?
As a 25 year programmer, most in C and C++, and as someone who has tried to hire other programmers and has had to deal with bad programmers that others have hired, I can tell you that the best programmers are the ones who love to program. They work on their own projects at home just to explore ways of doing things.
Since you aren't someone who loves coding (yet, anyway) maybe you should stick with the higher level stuff. Of the choices you gave, you should take the C# class. C# is Microsoft's evolution of C++, which itself was an evolution of C. With each level, things get easier.
Reply:C++ is better, because use Object-oriented programming (OOP) is a programming paradigm that uses "objects" and their interactions to design applications and computer programs. Programming techniques may include features such as, encapsulation, modularity, polymorphism, and inheritance. It was not commonly used in mainstream software application development until the early 1990s. Many modern programming languages now support OOP.
c is old and it does not enjoy POO.
in addition in C++ you can make programs OO like not also.
Reply:A loty of people can come out with being a computer scientist or stuff liek that. But this is based on opinion.
C++ is basically built upon C, and just adds more easier ways such as object orientated programming etc.
C and C++ is built upon pure ANSI C code, which with vast libraries made by system programmers such as me can create libraries that people can call functions from that do stuff such as display a message on screen or file handling methods etc, all within a header file.
However, the short answer is C++ for the fact it is C but with addition extensions of OOP programming. However, C programs often run faster than a C++ program, which this may effect a program such as a scientific program or even heavey collision detection games.
Reply:C# with .NET rocks. It's pretty easy to pick up. I started with C++, and it kind of owned me to start out, but I got the hang of it. C# is a lot more has a lot more to do with objects and things than C++. C++ is more like write this stuff and it does that stuff. C# is more like this parent has a child, and the child has a bunch of attributes or qualities about it (height, weight, name, blah blah blah), so it's easier to understand.
Reply:For a beginner, I'd say C is better since the concepts are easier to grasp. But the short answer is that neither is better, since they both have their roles.
Both have great courses but with differences.
Penn foster Visual C# .NET Programmer...
http://pennfoster.com/visualc/ProgramOut...
And Stratford Career Institute Computer Programming....
http://www.scitraining.com/Courses_US/Co...
As I don't really know much about this stuff, I would like it if someone who does know can point me to the better school.
Prefer someone who is in this career.
C or C++? Which is better?
As a 25 year programmer, most in C and C++, and as someone who has tried to hire other programmers and has had to deal with bad programmers that others have hired, I can tell you that the best programmers are the ones who love to program. They work on their own projects at home just to explore ways of doing things.
Since you aren't someone who loves coding (yet, anyway) maybe you should stick with the higher level stuff. Of the choices you gave, you should take the C# class. C# is Microsoft's evolution of C++, which itself was an evolution of C. With each level, things get easier.
Reply:C++ is better, because use Object-oriented programming (OOP) is a programming paradigm that uses "objects" and their interactions to design applications and computer programs. Programming techniques may include features such as, encapsulation, modularity, polymorphism, and inheritance. It was not commonly used in mainstream software application development until the early 1990s. Many modern programming languages now support OOP.
c is old and it does not enjoy POO.
in addition in C++ you can make programs OO like not also.
Reply:A loty of people can come out with being a computer scientist or stuff liek that. But this is based on opinion.
C++ is basically built upon C, and just adds more easier ways such as object orientated programming etc.
C and C++ is built upon pure ANSI C code, which with vast libraries made by system programmers such as me can create libraries that people can call functions from that do stuff such as display a message on screen or file handling methods etc, all within a header file.
However, the short answer is C++ for the fact it is C but with addition extensions of OOP programming. However, C programs often run faster than a C++ program, which this may effect a program such as a scientific program or even heavey collision detection games.
Reply:C# with .NET rocks. It's pretty easy to pick up. I started with C++, and it kind of owned me to start out, but I got the hang of it. C# is a lot more has a lot more to do with objects and things than C++. C++ is more like write this stuff and it does that stuff. C# is more like this parent has a child, and the child has a bunch of attributes or qualities about it (height, weight, name, blah blah blah), so it's easier to understand.
Reply:For a beginner, I'd say C is better since the concepts are easier to grasp. But the short answer is that neither is better, since they both have their roles.
.NET projects?
I am a .NET developer, beginner. I want to go through some projects in .Visual studio.net 2003 in visual c#.net...the projects which give me an overview of how projects are done in industries...can anybody give me the URL of that site...? or help me in any other way... Will be quite helpful...
Thanks,
.NET projects?
in my opinion , the best way to start is to download .net starter kits from Microsoft . these starter kits are excellent examples of correctly written projects :
http://www.asp.net/default.aspx?tabindex...
Thanks,
.NET projects?
in my opinion , the best way to start is to download .net starter kits from Microsoft . these starter kits are excellent examples of correctly written projects :
http://www.asp.net/default.aspx?tabindex...
.NET projects?
I am a .NET developer, beginner. I want to go through some projects in .Visual studio.net 2003 in visual c#.net...the projects which give me an overview of how projects are done in industries...can anybody give me the URL of that site...? or help me in any other way... Will be quite helpful...
Thanks,
.NET projects?
You can use the samples that come with Visual Studio Expression edition.
Visit the following site for details.
http://msdn.microsoft.com/vcsharp/downlo...
Thanks,
.NET projects?
You can use the samples that come with Visual Studio Expression edition.
Visit the following site for details.
http://msdn.microsoft.com/vcsharp/downlo...
Subscribe to:
Posts (Atom)