Sunday, March 16, 2014

How to return a value from stored procedure to Visual Basic.NET



Here I am going to show you how to return a value from a stored procedure written in SQL Server. As the first step we need to create a stored procedure that returns a value. In my case, I have a database called car and a table in it called tblCar. For counting the number  of row I used the following stored procedure.

If you don’t know how to create a stored procedure in SQL Server, please read this tutorial before we start.


Saturday, March 15, 2014

Visual Basic .net for beginners - Part 1 : Introduction to Visual basic



This is the first chapter of the tutorial series “Visual Basic .net for beginners” . This series is for absolute beginners in programming . So no previous experience is required.  At the end of this series you will be able to build your own windows, web application in with professional quality standards. This is the introduction part of the series. In this tutorial we will take look at the features of visual basic , .net frame work, visual basic IDE (Integrated Development Environment) and many other things that a visual basic beginner should know.

Simple steps to create stored procedure in SQL Server : Using SQL Server Management Studio Or Visual Studio



Here is a simple tutorial on how to create and use stored procedure in SQL server with Visual Studio IDE or  SQL Server Management Studio. Stored procedures are the most secured, structured, efficient method to access data from SQL server.

Step 1 :

(If you have SQL Server Management Studio)
Open  SQL Server Management Studio and  choose the server to connect and provide username and password if necessary and

Friday, February 28, 2014

What is pass by reference in c++

This is my first tutorial about c++ and in this I’m going to show you how the pass an argument by reference in a function. While using pass by reference in a function we have to use pointers. Passing parameters by reference has the functionality of pass by pointer and the syntax of the pass value. The function body and call to it is identical to that of pass by value, but has the effect of pass by pointer. To pass parameters by reference,

Tuesday, February 25, 2014

Easy way to access database with Visual Basic.NET by simple steps

   This tutorial is about how to connect to an MS Access database and retrieve and insert values to that. We’ll talk about a simple example that is Sign Up a user and allow the user to login to a system. That is we’ll create a Sign Up form and a Login form. Also we need to create corresponding tables in the database. Please note that this tutorial is not for very beginners. But it’s aimed at beginners in “Database Programming”. Here we need to know about another language called Structured Query Language (SQL).  But here it is not necessary that you should be expert in SQL.

Simple steps to boost internet speed by 80% in windows 8

Windows 8 is now becoming a popular operating system. Here I’m going to show you how to increase your internet speed in windows 8. By default windows 8 reserves 80% of the available bandwidth for updating windows and stuffs like that. In many occasions you might felt that in Linux you are getting more speed compared to windows. If you are following the following steps, you will get the same speed as in your Linux.

Friday, February 14, 2014

How to add value to a list item in ListBox,ComboBox controls in VB.NET without ValueMember Property



As a beginner programmer you might have faced a lot of problems with the List Box and Combo Box controls in Visual Basic.NET while you access data from database with code.   If you want to use the property namely “ValueMember” then you must have to data bind the List Box with a data source. You can do that easily because there are a lot of tutorials regarding that. I’m not really going to explain how to connect to data base or how to data bind controls or similar stuffs. I’m just showing you how to set multiple values for a single Item in a List Box controls. I’ll show you it with an example. Before we start, you should have a clear understanding of classes. VB.NET is all about Classes and Objects. 


Thursday, February 13, 2014

How to make money with Micromax MAd application(MAd About Advertising) - Official News

Are you the person who is MAd about advertisements? Micromax will now pay you to watch your favorite advertisements! Following its legacy of creating ‘nothing like anything’ experiences for the Indian consumers, Micromax, India’s second largest smartphone player, today announced the launch of Micromax MAd, a unique application designed for those who love ads, which will come pre-loaded on its latest smartphone Micromax MAd A94.

    With a simple 4 step process, MAd allows users to watch advertisements and earn points from every advertisement one views, which then can be converted into rupees. The money will eventually will be credited into their postpaid/pre-paid accounts. With one time registration, the service will work for all opted-in subscribers across all telecom operators.

Sunday, February 9, 2014

How to backup and restore windows 8 usernames and passwords



Here is a simple tutorial about how to backup your windows 8 user names and passwords. In many cases you might have forgotten your windows password for many reasons. Keeping your usernames and passwords in a thumb drive might not be a good choice and writhing somewhere too. Once you backed up all the usernames and passwords in local computer, I suggest you to keep the credential file in your mail or something.Please note that this tutorial is aimed at windows 8 users and I am not sure about windows XP, Vista

Thursday, January 23, 2014

How to create excel worksheet with visual basic .net



In this tutorial I’m going to show you how to parse a text from Text Box to Microsoft Office Excel with Visual Basic .NET.I hope that the reader is a beginner and know the basics of .NET. Our aim is to automate an Excel Work Book. This is very useful for the developers of business based applications. If we are using MS Excel for reporting, that will be very handy because Excel has a lot of features for formatting both text and numbers.