web analytics

Tutorial

Using MySQL Database with Visual Basic .NET 2010

Introduction:   How to use MySQL with Visual Basic .NET? Watch this tutorial for basic mysql connection with visual basic .net 2013/2010/2008. Visual basic database can be anything like MS Access, MSSql etc. but if you are already working with MySQL a lot then probably you would like to use MySQL with your vb.net application. …

Using MySQL Database with Visual Basic .NET 2010 Read More »

How to write good codes or What are the good programming practices to follow !!

The following post highlights some good programming practices what beginner programmer can follow. Applying these increases the readability of codes, will make make codes more easier to update.  Well, individual programmers should have their own programming styles to maintain, but still there are some practices that the beginners can follow. With times every programmers find …

How to write good codes or What are the good programming practices to follow !! Read More »

Understanding Variable scope in C++

Understanding Variable scope is very important because it can sometime leads us to unwanted value changing or hazards while coding. Like, we have declared a variable but still its showing error while compiling or running. Look at the following code, for(int x=0;x<5;x++)    //For Loop 01    {    cout<<“Inside For Loop 01”;    } cout<<x<<” times”;   …

Understanding Variable scope in C++ Read More »

Allocating and Deallocating memory OR use of New/Delete OR allocating memory in runtime OR declaring array in runtime | in C++

Well, first of all we should be known with Variable Scope, Garbage Collection. Ok, now. When we declare a variable like as follows, int a; it allocates a specific portion of memory for that variable and when we go beyond the scope of the variable the garbage collection system automatically deallocates or in general, deletes the …

Allocating and Deallocating memory OR use of New/Delete OR allocating memory in runtime OR declaring array in runtime | in C++ Read More »

Tutorial :: Creating a LogIn/Registration Form for your software [Basic]

For whom the tutorial is: Well, I am sorry that this is not for beginners. I mean, when I started writing I thought I will explain each lines of code in this tutorial but, you know it’s impossible for me and I am sorry. So, if you are a complete beginner it will be hard …

Tutorial :: Creating a LogIn/Registration Form for your software [Basic] Read More »

RSS
Follow by Email
Scroll to Top