Structures And User Defined Data Types (Part - I)

Posted on Tue 05 August 2014 in C • Tagged with C Programming, structures, User Defined Data Types

Howdy folks, hope you're doing well. We've already discussed about 1D Arrays and their memory organization and further about 2D arrays and multidimensional arrays. In case you missed it, read them first. Coming to this tutorial, we'll be discussing the way to develop our own data types in the C …


Continue reading

Learning About 2D And Multidimensional Arrays

Posted on Thu 24 July 2014 in C • Tagged with 2D, Arrays, Multidimensional Arrays

Well, I'm glad you reached at this point, we've already discussed about 1D arrays and the memory organization, and in this post, we'll know about 2D arrays and Multidimensional Arrays. They are not very much different from 1 D arrays as we looked in the last tutorial. So, let's start …


Continue reading

ASP.Net Basics : Populate checkboxlist from database using C#

Posted on Sat 19 July 2014 in ASP.NET, C# • Tagged with ASP.NET, CheckboxList, Database

In this tutorial we will be discussing how to populate data in checkboxlist or radiobutton list from the values taken from database and display them on the screen.

Populate checkboxlist from database using C#

Let us assume a database with following table definitions (from my next project) and table values.

populate checkboxlist from database using c# and .net

and the output should be

populate checkboxlist from database using c# and .net

Various …


Continue reading

Android Activity LifeCycle

Posted on Fri 18 July 2014 in J4A (Java for Android) • Tagged with Activity, Android, Lifecycle

Activity is the base class of an Android Activity (package android.app). An Activity represents a view to the user. For eg. When we open Messaging app to write a new message, it is an Activity. After writing the message, when we open contacts to select the person, it can …


Continue reading

Android Activity lifecycle (Code) & Debugging using LogCat (Android Part – 8)

Posted on Thu 17 July 2014 in J4A (Java for Android) • Tagged with Android, Debugging, Lifecycle

Hello Geeks, hope you have read the previous article and are clear with the theoretical concepts of an Android Activity and its Lifecycle. Now we will create a code for the same to see what all methods are called in which cases. This code is similar to what you might …


Continue reading

Resetting Windows Password

Posted on Thu 17 July 2014 in How To DIY • Tagged with Password, Recovery, Reset, Windows

In past, some of you have used clever utilities like Kon Boot Utility to reset your window password, or asked your engineer to format C:/ drive if there was no way out. This article will introduce various ways to reset password in Windows xp,vista, 7,8 & 8.1. Please …


Continue reading

Learning About 1 Dimensional Arrays (1 D Arrays)

Posted on Sat 12 July 2014 in C • Tagged with 1D Arrays, Arrays

You may have heard of arrays or "tuples" before, if you've learnt any programming language. If not, then don't worry, you'll learn everything about them in this tutorial and how are they used in C to handle large amounts of data of same data type effectively and easily. So, let's …


Continue reading

Getting Started With Git

Posted on Wed 02 April 2014 in Linux • Tagged with Git, Version Control

Git is the most popular version control system now a days. The reason behind popularity is its simple yet tremendous functionality. Unlike other VCSs (Version Control Systems), Git has some unique ways to control and share your data. Because of its huge functionality it also tends to become a lot …


Continue reading

How to copy camera photos to Android phone directly without any app

Posted on Sun 30 March 2014 in How To DIY • Tagged with Android

There are some of application to control/Copy your photos directly from DSLR from your phone like DSLR dashboard app but for Point and Shoot (P&S) .But now with latest android release you can copy any camera photos to Android Phone directly.

Why this is great trick? No matter …


Continue reading

[Ultimate Guide] What are loops in programming and how are they important?

Posted on Thu 27 March 2014 in C • Tagged with C, Do While Loop, Entry Controlled, Exit Controlled, For Loop, Loops, Programming, While Loop

Welcome everyone to yet another tutorial on C Programming language. In this tutorial we'll be learning about a great concept of loops. Most of the programming languages would use exactly the same syntax for loops, so understand this carefully. Loops provide with great utility and power and saves from a …


Continue reading