How to write first .net(dotnet) program?

Are you new to programming. Here i will tell you how to write your first .net program and run into .net framework.

I will tell you my experience, when i started learning .net programming, i did not know even open the .net software. I will say you complete process from opening .net application to run the program successfully.

First of all, i know you are very curious to know how i can write my first program, how to open software, how to create project, how to run, lot of questions might be running in your mind.

I will let you know the complete process. Just Follow the steps one-by-one

First step

If Microsoft.net software installed in your system, there is a icon displaying in your desktop, –>

visual studio.net icon on desktop

 

just double click that icon, Microsoft.net software will begin to open, keep patience, it is very heavy software, keep patience and wait for a moment, do not click anywhere, it will be not responded, when this is completely open, then you start working.

If Microsoft.net icon not displaying in your desktop, just follow this step:
Start > All Programs > Microsoft Visual Studio > Microsoft Visual Studio Icon.

visual studio.net icon on program files

 

 

 

When your softare completely open, it will be look like this.

Microsoft visual studio.net

Now you will have to create a new project, follow this step:

Go to File > New > ProjectNew Project in .net

Now one dialog box will appear look like this

Select the Project type you want to create, there are one default langauge would be displaying, whatever default langauge you selected at the time of installing. You have to select the project type, i will select in Visual C#, window application, When you select the windows, there are more options will display, select one of them, i will select Windows forms Application, now write the name of the project, bydefault name would be displaying i.e WindowsFormsApplication1, you can change it here and then lets go under the name i.e location of the project, by default location is
C:\Documents\Visual Studio 2008\Projects

You can change it also to another location, there is no changes affect the project.

Now, Press ok, your new project has been created look like this:

select the project type in .net

Now analyze your requirement, i will show you the first program to display a message after clicking in the button, ok

Now see, Drag a button from the toolbox, you can change the various properties of the button, now double click the button, a code source page will be displayed, just start coding on button, you want to display a message, you have to write this code on button function:

How to write code
MessageBox.Show(“Hello”);//This will display a message when you click on that button.

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;using System.Windows.Forms;

namespace WindowsFormsApplication1{

public partial class Form1 : Form    {

public Form1()        {

InitializeComponent();        }

private void button1_Click(object sender, EventArgs e)        {

MessageBox.Show(“Hello”);        }    }}

Now you have run this program, simply click F5 button or press green button named Start Debugging(F5).
You program will start running looking like this

how to run the .net program

Just press that button, the see a hello message come.
That’s all
You can see the complete video tutorials here…

 

Thanks
Ravi @ GSE Blogs

Share this

0
PDF Download    Send article as PDF   

Learn about Computer Programming

Computer Programming

Here I am going to share my experience how i learned programming.

Programming is the base of the software development terminology. There are many programming language but everyone has own significance.

INDEX

Basic of Computer Programming Knowledge

Career

Learning of Programming

Various programming languages

Future Aspects

Product Details Product Details Product Details

Basic of Computer Programming knowledge

Programming is the concept you would know to develop any software. It can give you any software which you require. It has great importance. When we need software, Software may be needed when we want to edit any photos, creation of PDFs, account management, video edit etc.

You can understand better, suppose you want to make two cup of tea, what you should do, you just follow the steps starting from burning the gas stove to serving the tea, there are various steps in between them, like take a bowl and pour milk with tea leaves, sugar, boil the mixtures blah blah etc.

Computer programming is the same as making tea, when you required making tea, you follow some steps and enjoyed tea, and this is what the programming is. When you required making a software which edit the video, then you need programming language to make the particular software.

Career

You must want to know about what career goals are there in programming. It is the most exiting career now a day. It is the very good field that opens various doors for computer graduates and IT graduates. If your ambition is to make softwares or you love technology since childhood, you are on the right track, if you are in higher secondary, you have to do software engineering, if you are pursuing a computer programming course, there are various field you can go from here, like software developer who develops softwares, software tester used to do testing and debugging, programmer includes coding the source code etc.

Programming is the very logical and dynamic field where very high standard task have been followed.  In this career you can start earning from minimal to more, in first level you can earn $30,000 and in medium level $45,000 and in higher level you can imagine how much you can earn. If you have guts to make the software own self, you can run your own software business too.

Learning of Programming

Computer programming is the complicated subjects, when i was new to learn this, i do not think about the logic, but you should know the first logic of the program. Every program has some logic; you need to create your program very simple and arranged way. In computer science, there are various programming language available and each has own significance, there are several languages available. You have to think in which language you are good, and just move on to catch those language, do not concentrate various languages, just learn about them, but do research in only one. Till you will be good programmer. You have to focus on only one. I will help you choose the language, if you want to make career in development of softwares, VB or C# can be used. If you want to make career in web development, asp.net, php or java can be used. If you want to make career in web designing, choose html, javascript, vb script etc. If you want to make careers in creating games, java is the best one. So, in this kind you can choose your programming language.

One thing you should know about learning programming, programming teacher can give you lectures and assignment, but it is up to you, how you complete your assignment.

Some tips on learning programming:

# Listen carefully the lectures of the teacher and ask the quick question where you cannot understand, people generally do not ask and when they sit at home to read, they find difficult to understand

# It requires logic, creativity and common sense, no one teach you programming completely, you have to learn very carefully.

# Do not pending your assignment, just complete them on time, try to run each and every program, and also try to make another program by self.

# Use reference books

# Try to keep update yourself from updated information in that particular language

 

Various programming languages

There are various programming languages available in the market like c#, VB, Java, PHP and all that, now you have to decide in which language you are interested for or you like, choose that particular one and start learning on that. Syntax of all programming language is different but logic is same. All languages has different platform to run, suppose C# runs in Microsoft .NET framework, Java runs in JVM environment etc.

When i was new to programming, There are various language have been taught to me like starting from C,C++, SQL, VB.net, C#.net, then ASP.NET etc, but i concentrated on some languages like C#.NET and ASP.NET.

Before going into any company, you should choose any one and be practiced too much on that then go to any interview.

 

Future Aspects

When i was learning programming, i also wanted to know about what is the future of this, i searched in Google and came to know that, there is vast demand of softwares in the country and India has been on boom in IT Softwares. Then i decided to learn programming. In this field, you can earn more from staring level to high. Your career can be growing as soon you want.

One of my Friends is in Java Programming; he has been earning fat money. Your knowledge should become your ATM.

Thanks

Ravi @ GSE

Related Items

How do i Comment in various Programming techniques?

 

Share this

0
PDF Download    Send article as PDF   

CURATIONSOFT CONTENT CURATION SOFTWARE

May 11, 2012 by admin · Leave a Comment
Filed under: Software Development, Software Solutions 

CurationSoft Content Curation Software

Subject: Big buzz on a new traffic strategy…  There is a major shift happening in the world of content marketing.

But first, what’s “content marketing?”

It’s what bloggers and marketers do when they put up content that they want the search engines to rank and readers to flock to in order to build a brand, make product or affiliate sales, and sell advertising.

So, basically anyone who uses content to get free search engine traffic and have the ability to get real people linking to and buzzing about their site is a content marketer.

Well, in the past few months a certain type of content marketing has started to get very popular. It’s called “curation” and it has many benefits over traditional content marketing models.

Click here to learn more:

1. Curation allows content marketers to create a lot more content around a lot more keywords in the same amount of time they currently spend on content development.

2. This enables you to score for a lot more keyword rankings, leading to more daily traffic.

3. It also enables you to keep readers engaged and loyal to your source of information because you filter through all the information on a topic and present them with the best of the best info on the topic.

4. You write less original content yourself and, often, put together more valuable content to readers at the same time.

5. Enables one-writer-sites to look and feel like they have a small staff of writers.

6. Posting more often gives more opportunities for something to go viral on social networks. And gives readers more to “Like,” retweet, and +1 on Google+.

7. Increases your authority score with Google because of the increased social signals Google finds for your site.

(There are many more benefits to adding curation to your content marketing campaign.)

Since everyone is buzzing about curation, I wanted to get clarification on the tactic from an expert. My good friend Jack Humphrey is going to explain what curation is and how he developed an amazing software which helps him to create pages which rank really high in the search engines.

Click here to learn more about Jack’s amazing
software: You can actually download and test it for free!


——————————————————

Subject: Content Curation Made Easy (free software inside)

Yesterday I alerted you to this new style of content marketing that is getting a lot of attention from top content marketing experts around the web.

You can’t throw a rock right now without hitting a blog post or article about curation! People are giving curation a lot of lip service, but no one is really training on the topic.

What is curation?

It is the process of filtering information on a topic to come up with the best articles, videos, photos, or social discussions going on at a given time.

It is done by social marketers and content marketers. Robert Scoble is primarily a social curator for example.

He shares tons of great things daily that he find among all the noise generated in the tech and startup markets.

People love him for it because they don’t have to do everything he does to stay on top of the market. They just follow him and use him as a filter on the market whom they trust to bring the goods.

Mashable.com is an example of a “hub curator.” Hub curators are sites that watch the news and thought leaders in their niche and report on the best information they find.This is the content marketer’s sweet spot.We spend a ton of time creating (or having created) articles and blog posts from scratch.

Curation enables you to “riff” off of the news in your market and just give your two cents on a topic without writing 100% original content all the time.

It sounds like a fantastic dream come true. But does it really work?

And how do we implement it in our markets?

My good friend Jack Humphrey is going to explain what curation is and how he developed an amazing software which helps him to create pages which rank really high in the search engines.

If you are interested in getting a lot of search traffic, loyal visitors, and direct traffic from social sites through content, then click here to learn more about Jack’s amazing software:

You can actually download and test it for free!  Buy Now!!

 

 

 

 

-

 

Share this

0
PDF Download    Send article as PDF   

Google New Alogrithm Penguin deals with Web Spam

May 11, 2012 by admin · Leave a Comment
Filed under: Web Promotions 

You seems to be wondered to know about algorithm, when we want some information about any topic, what we do? We go to the goole and search for that particular stuff. There are an algorithm, pre-written instruction which is called complex algorithm and mathematical instructions which has been used by various search engines. They actully run and complete our search results.
Well, now what happening many website owner use black hat seo, something like illegal collecting visitors from the internet which was needed to be tracked. It affects the legal website owners or true white hat seo people’s business.

To overcome this google launched their PENGUIN ALGORITHM which is dealing with spammers and black hat seo, they trace the website, if any illegal thing or any spam link building found, google penalize them. Google like those which websites which follow white hat seo. visit >>>http://gsesoftsolutions.com

So, the main thing is that, the website owners should use white hat seo technique, the following are things we should use to be safed from Google new Penguin Algorithm.

1. Don’t use copyright contents and images in your websites.

2. In article marketing, use only unique content not copy from others, and use high page rank article directly only.

3. Don’t spam your website link

4. Don’t create too much back links to your website in a single day.

5. Stop Spamming

6. Don’t share your website link to those websites who use Black hat seo, you may penalized from google search engine.

7. Don’t cheat your users, target the keyword according to your website niche or contents.

8. Don’t use too much keywords in your website, use only relevant keywords according to niche.

9. Try to get quality links.
So, the conslusion is that google wants to break the spam with anti-spam algorithm called PENGUIN. The Black Hat SEO experts may have to suffer with their income and traffic, they need to re-stratize their strategy.

@Author Ravi Kumar

Tag: Google new Algorithm, penguin algorithm, effect of google new algorithm, black hat seo, white hat seo, what is black hat, what is white hat, what impacts on our website, penguin update, seo technique, how to do white hat seo, why our website is not showing in google, spammers

Share this

0
PDF Printer    Send article as PDF   

Hide-My-IP Hide Your IP Address, Surf Anonymously, and Protect Your Identity Free Download

Hide-My-IP Hide Your IP Address Free Software Download

 

Hide My IP 5.3

Conceal your online identity with the click of a button. Surf anonymously and hide your IP address from hackers and identity theivs with this award winning privacy tool.

Download Hide My IP
Windows 7/Vista/XP/2000/NT, 2MB
Try It for 14 Days Free

 

 

Did you know your IP address is exposed every time you visit a website? Your IP address is your online identity and could be used by hackers to break into your computer, steal personal information, or commit other crimes against you. Hide My IP allows you to surf anonymously, change your IP address, prevent identity theft, and guard against hacker intrusions, all with the click of a button. Visit >>>http://gsesoftsolutions.com/category/software-solutions/

Key Benefits & Features

Easily Conceal Your IP Address – Just click “Hide IP” and your IP is instantly hidden! Other people see a fake IP, which is not associated with your real IP. Click here to read how it works.

Hie My IP 5.3 Released May 20, 2011. Now with more IPs, improved interface, and the Gold Pass.Anonymous Web Surfing – Protect your privacy and cover your tracks! Select from one of our many fake proxy IP addresses for totally anonymous browsing.

Advanced Application Support – Hide My IP 5.3 works with all major browsers and dozens of instant messengers, E-mail clients, games, and more!

Protect Your Identity and Stop Hackers – Identity thieves can use your IP addresses to compromise your computer. Installing keyloggers, Trojans, and other tools to aid their crime. Stop them at the source by hiding your IP!

Send Anonymous Emails – Hide your IP in E-mail headers. Supports Webmail services like Yahoo, Hotmail, and GMail. Mail clients supported with a Premium account include Outlook, Outlook Express, Eudora, and more!

Un-ban Your IP From Forums, Blogs, and other Websites – By faking your IP you can often access many sites you were banned from. Use with Cookie Crumble for the most effectiveness.

 

 

 

 

 

Tag: hide my ip, protect our ip, hide our ip address, now show our ip address, surf anonymously, prevent identity

Share this

0
PDF Printer    Send article as PDF   

Next Page »