Feeds:
Posts
Comments

Archive for January, 2008

True Jahid In Islam

Read Full Post »

atom Bomb

Read Full Post »

Even though the sky seems dark, believe in the future.
The storm will pass over. The clouds will roll by.
Believe in the best though it seems hidden.
Know that it will come though it’s not in sight.
Your faith will take you through the darkness.
Your belief shall prove that the sun will shine again.

 reference : http://pravs

Read Full Post »

A common requirement for a form is to remember its last location. Usually, this information
is stored in the registry. The code that follows shows a helper class that automatically stores
information about a form’s size and position using a key based on the name of a form.
public class FormPositionHelper
{
public static string RegPath = [...]

Read Full Post »

Some time developer/coder have to choose appropriate location of windows form on the screen, But limitation comes with the size and resolution of monitor. The solution is used Screen Class which gives right gives you working area of screen of monitor. Then Form load Event will look like this
private void dynamicSizeForm_Load(System.Object sender, System.EventArgse)
{
Screen scr = Screen.PrimaryScreen;
this.Left [...]

Read Full Post »

Each of us has our own unique flaws.
It’s these flaws we have, that makes life so very interesting and rewarding. It binds our lives together.
Instead of looking for flaws; we have to accept people for what they are and look for the good in them.

Reference : http://pravstalk.com/

Read Full Post »

YouTube

Read Full Post »

Random Number

Read Full Post »

Session State is useful for storing values that must be persisted across
multiple pages by the same user. ViewState is useful for storing
serializable data that must be persisisted across PostBacks by a single
page. If you use Session State, the value you insert will remain in memory
until (1) The Session times out, or (2) Your code removes [...]

Read Full Post »