Friday, August 29

Wish we could say more



Apple has confirmed that it's holding an event in Cupertino, California on September 9th near its Silicon Valley headquarters.

Wednesday, August 27

Seagate 8 Tb HDD

Seagate has started to deliver the first ever 8Tb desktop hard drive. These drivers come in the standard 3.5" form factor, but this drivers not go inside to your gaming PC. Right now these devices are destined for data centers where capacity is very concern. Still Seagate does not announce the price of this device but hopefully price will be cheap.


Sample Pic

Tuesday, August 26

The difference between IP4 and IP6 Addressing



The most obvious difference between the two protocols is the length of their source and destination addresses. The whole point of making the switch to IPv6 is to compensate for a global shortage of IP addresses. It only makes sense that the IPv6 protocol has a larger address space than the IPv4 protocol does.

The IPv4 protocol uses a 32-bit source and destination address. These addresses are typically represented as a series of four octets. As I’m sure you know, a typical IPv4 address looks something like this: 192.168.0.1.

In contrast, an IPv6 address is 128 bits in length. This allows for a total of 3.4×1038 (or 340,000,000,000,000,000,000,000,000,000,000,000,000) addresses. There are several different ways of representing an IPv6 address. An IPv6 address is normally written as eight groups of four hexadecimal digits, each separated by colons. For example, an IPv6 address looks like this: 2001:0f68:0000:0000:0000:0000:1986:69af

Monday, August 25

Disable the highlight border on an html input elements (Google Chrome)

Have you ever face to this issue when you develop HTML applications? I think most of the time answer will be "Yes". But don't worry today I am going to teach you how to get-rid-of this Issue.




 Let's see the solution, its pretty easy who know the CSS but for the beginners this will help.

    input[type=text]:focus, select:focus, Textarea:focus
    {
outline: 0;  /*this is how we do that ;) */
    }

if you want to disable only for a few element on your page, you can do it using pseudo class

    input[type=text].yourcssclassname:focus
    {
outline: 0; /*this is how we do that :D */
    }



Tuesday, August 12

Reset HTML Form

I hope this will know some readers but today I am going to teach who don't know about this.

Actually someone can say we can simply use HTML reset button and no need to talk anymore, "Yes you are correct" And at the same time, a huge, resounding "No you are wrong" because when we use reset button it reset to default only the visible form elements so how about hidden fields.


So without further gilding this is how we can do it.


function fn_clearform(){
     var frm_elements = document.yourformname.elements;
     document.yourformname.reset();
     for (i = 0; i < frm_elements.length; i++)
    {
        field_type = frm_elements[i].type.toLowerCase();
        switch (field_type)
        {
            case "hidden":
            frm_elements[i].value = "";
               break;
            default:
               break;
        }
     } 
}



Monday, August 11

If anybody want to know about Storing and Retrieving Images from SQL Server Using Strored Procedures and C#.net Please go to my Article in the codeproject 

below is the link to that article  
Storing and Retrieving Images



Thursday, August 7

Are you wanted to browse fast in windows?


Are You Wanted to Browse fast in windows, Then Remember these commands. This will really save a lot of time of your. There are many Commands which you might have never seen or never knew.


Windows Run Commands

1. Add Hardware Wizard = hdwwiz.cpl
2. Add/Remove Programs = appwiz.cpl
3. Character Map = charmap
4. Clipboard Viewer = clipbrd
5. Computer Management = compmgmt.msc
6. Folders Properties = control folders
7. Fonts = control fonts
8. Keyboard Properties = control keyboard
9. Mouse Properties = control mouse
10. Java Control Panel (If Installed) = javaws