Coding Bots released its new windows 8.1 application named “Friends Planet“. Keep you friends very closer to you. 🙂
Download it from here, Don’t forget to give your feed back use rate and review for that.
read moreCoding Bots released its new windows 8.1 application named “Friends Planet“. Keep you friends very closer to you. 🙂
Download it from here, Don’t forget to give your feed back use rate and review for that.
read moreToday we will be discussing Visual Studio 2013. Microsoft Visual Studio has a very important role in making developers’ life easy and it is irritating to work on other IDE’s if someone like me is addicted to Visual Studio environment. This is a very big topic that will be covered in many articles but if you are looking for the very basics then you have come to the right place.
So let’s get started with familiarizing ourselves with MS Visual Studio 2013
If you have VS 2013 Ultimate installed, go to “file” in menu bar, select “New” and then select “New project”; you will see variety of languages in which you can work and complete your work.
Some of them are:
For every single language you have multiple types of projects that help programmers by auto generating code structure. For example, for Visual C#, you can make:
Once you have selected you desired programming language and its project type, you have to enter project name, location and solution name. “Location” indicates the path on your storage device where your project will reside and “Solution name” is the name of workspace (called solution here) in which you can make multiple projects. Once all the information is entered, click “ok” so that visual studio will set your working environment ready according to your selected options.
Now your screen is divided into multiple blocks. The main area (text editor) is the area where you write code. You have “Solution Explorer” on the right side; if not, go to “View” and select “Solution Explorer” or press “Ctrl + Alt + L” in windows. “Solution Explorer” has the complete directory and file wise view of your project. That is, the top most thing is your solution (workspace) under which there are projects and under projects there are files of that project.
Whenever you add file in your project without visual studio, that is using file explorer, you have to refresh the solution explorer.
By right clicking on the project you can see a list of options including:
Now in the code area you can do many things, out of which few are listed below:
Productivity Power Tools is a set of extensions for visual studio professional and above to improves developers’ productivity. You can download it here. Once you have installed it, you will find it under “Tools”, under “Options” and under “Productivity Power Tools”. It has about 19 different extensions in it. Few of them are listed below:
This is it for today. I hope you will find this article helpful. For any queries, please comment.
Thank you for reading.
Hey Everyone, today  m going to tell you how to make a MultipartForm HttpClient  request from C# or in simple words you can say that “to send a multiple Post actions to a web in one httpclient request ”
so lets get started.
Life Reminder is a application on Windows Phone 8.1 store.
Life Reminder help you in daily life and will remind you about your meeting or in school/college/university life it will remind you about your assignments, projects, quizzes, workshops or seminars.
read moreSocial scheduler is a application which is on windows store 8.1
Social scheduler will help you to post the statuses and images on Facebook immediately, you can capture photos using webcam and you can also post them in scheduled manner e-g you can set timer for it to post on that specific time (Like to wish someone a birthday).
you can also see you statuses both posted and pending on this application without going to the actual Facebook web site.
Using the Application
Click “Add Account” button and sign in to your Facebook account.
Click post status button to post status on your wall now or scheduled for later.
All status in the status box
To attach photo turn the “Attach photo” toggle switch ON
You can add image by clicking on “Select photo”
You can also capture live photo from webcam by clicking “Capture live”
To post status immediately click the “Post” button
Or if you want your post to be scheduled for later turn “Schedule post” toggle switch ON
Select the date and time for your post. Note: time must be greater than 15 minutes.
Click “Post” button to submit for posting.
// post photo
Go to Dashboard by clicking “Dashboard” Button from main menu
Your statuses from your wall are fetched here under the “Recent Statues” heading.
and the statuses that you have submitted for later posting are under the “Pending Statuses” heading.
// dashboard
Download:
You can download this application from windows store here
read moreGo for your challenge in Run Ninja Run 3, the new sequel of the amazing, gripping distance game by Pyrozen. Help the dauntless ninja to make his way out of hostile territory while cruel enemies and dangerous carnivores are hunting you. Use collected gold to upgrade your continuously running warrior and wipe out attackers to survive. Much fun!
read moreThere are quite a few benefits to using C#, we won’t list every single one of them but we will cover the most notable benefits.
1. Strict Typing
Variables have to be declared with a datatype using C#, so if you create a variable called health which will contain the characters health it will have to be given a datatype (for example an integer for a whole number). If you declare a variable as an integer you will not be able to insert anything other than integer numbers into the variable.