How To Play FLV Video Files

No Comment - Post a comment

Flash Video referred to a proprietary file format, having the extension FLV.FLV is a file format that mainly delivers video content over the Internet.It is the file format of choice for giants such as YouTube, Google Video and MySpace, Reuters.com, Yahoo! Video, and many television news operations are also using Flash Video on their websites.. Since these listed sites contain millions of video clips, FLV files are spreading like wildfire across the web.

Flash Video is viewable on all operating systems, via Adobe Flash Player.but how to play FLV file offline on windows media player ?? when i want to play FLV file on windows media player it givers error or play only voice of video. This article will show how to get these files to play on Window Media player for free properly.

Software you need:
K-Lite Codec Pack

K-Lite Codec Pack is a collection of codecs and related tools. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your movie files.
Download


After downloading Codec pack run the exe file.

FLV Video file Play free Windows media player
Click Next.


Browse the Drive,folder where you want to download this pack.

FLV Video file Play free Windows media player
checking the Windows media classic will also download Windows media classic player.uncheck the windows media classic.


Check the Video formates to all.it will included flv file

FLV Video file Play free Windows media player
Please wait while setup install K-Lite Codec Pack on your computer.

FLV Video file Play free Windows media player
At last click on Finish button.

FLV Video file Play free Windows media player
Now you can play all FLV files on Windows media player.

Read More...

 

ASP.NET Master Page Tutorial Part-10 (Moving Css To External Css File)

No Comment - Post a comment

In previous post ASP.NET Master Page Tutorial Part-9 (Redifining Body Tag) Using Expression Web i told you how to redefine css body tag and how to redefine all of the text on the display area of page.

Microsoft Expression Web has a nasty habit of automatically creating CSS code for you.If you let it, it will create quite a CSS mess for you to work with.It's much easier to create your CSS code and then apply it to page elements as you add them to your page or you can move all css code to external file like myformate.css,main.css etc.. So let me show you how to move all css code to external files and how to create and use it in our ASP.NET website master page.


Moving Css to External css file

You can see all Css code inside page in Code view.

Moving Css to External css file

What is Page View in Microsoft Expression Web ?

Design View: This view is WYSIWYG. You can create and edit web pages using the design controls in this view.

Split View: In Split View you can review and edit web page content in a split screen format that offers you a simultaneous access to both the Code and Design views.

Code View: In Code View you can view, write and edit the HTML tags yourself with the optimize code features provided.

For switching between these three views you can use the keyboard shortcuts Ctrl+Page up or Ctrl+Page Down.

Now here we make new css file.

Go to File > New > Css

Moving Css to External css file

This will open new untitled.css file,again go to file save this css file in your current file location.

Moving Css to External css file

Or save this Css file in new folder called Css.Give this css file name "mylayout".

Moving Css to External css file

Again make make new css file by following same steps above,give this css file name "myformat"

Moving Css to External css file

If css file was saved in current folder not in css folder you can easily drag n drop css file in css folder in folder list pane as shown in picture.

Moving Css to External css file

Now again make new ss file called main in css folder.

Moving Css to External css file

Here we have three new css files in Editing window.

Moving Css to External css file


Editing window is the area in Microsoft Expression Web where you create and modify your Web Pages.
The top of the Editing Window shows the files that are open in the form of tabs. The file you are currently working on is highlighted. You can close the current page or file by clicking on the cross displayed on the extreme right corner of the Editing Window. You can switch between the tabs by keyboard shortcuts Ctrl+Tab or Ctrl+Shift+Tab.


Now Click on how_2_do.master,in manage Styles click on Attach Style sheet.

Moving Css to External css file

Browse the style sheet

Moving Css to External css file

file the current file location > css folder,select one style sheet as shown in picture.here i select myformat.css file.

Moving Css to External css file

Click ok.

Moving Css to External css file

Again attach another style sheet follow the same procedure above.here i select mylayout.css file.Click ok.

Moving Css to External css file

In manager styles you can see both css files myformat.css and mylayout.css added.

Moving Css to External css file

Now just drag n drop all format styles from current page to myformat.css and site layout styles in mylayout.css files.

Moving Css to External css file

Moving Css to External css file

Here you can see all format styles in myformat.css file.

Moving Css to External css file

And all layout style in mylayout.css file.

Moving Css to External css file

It is particularly useful to keep one Css file for the entire website rather than having individual CSS styles in every page, advantage of having a separate CSS file is, it is easy to update and maintain the look and feel of the entire website from a single file. That is why it is better to create an external CSS file.
We made two Css file myformat.css & mtlayout.css.you can also move both these files in one called "Main.CSS".

For moving both css file click on main.css in editing window,in manage style click on attach style sheet.

Moving Css to External css file

Brwose the myformat.css & mylayout.css from current file location from css folder.

Moving Css to External css file


Here you can see both css files moved in main.css.

Moving Css to External css file

Now how to apply this main.css file in our Asp.net website? to do so go to how_2_do.matser from editing window as shown in picture and remove both css files previously applied ie.. myformat & mylayout.

Moving Css to External css file
After removing both file our master page looks horrible don't worry about that.you have to attach main.css file.

Moving Css to External css file

browse the file from file location.

Moving Css to External css file

Ahh.. now its looks better.now we can handle all css file easily.

Moving Css to External css file

In masterpage code view you can see an external css file is added.

Moving Css to External css file

Next part i will show you in another ASP.NET Tutorial ASP.NET Master Page Tutorial Part-11 (Adding Content Region/ContentPlaceholder).

Read More...

 

ASP.NET Master Page Tutorial Part-9 (Redifining Body Tag)

No Comment - Post a comment

In previous post ASP.NET Make Master Page Tutorial Part -8 (Bottom Navigation Links ) i show you how to add Bottom Navigation links and another Div which holds another ContentPlaceHolder control in the master page.
The big advantage with CSS is that you can create your 'own' tags by creating classes.In Microsoft expression web we can redefine the HTML tags like BODY, P, STRONG etc more easier, more logical and leaner.
Here i show you how to redefine css body tag.It will redefine all of the text on the display area of page.

For this go to manage style > New Style

Microsoft expression web tutorial for redefine body tag

Name this style to body.In Font category choose font-family,font size etc.. whatever you want.Click Ok.Redefining body tag will effect on everything in display area of page.

Microsoft expression web tutorial for redefine body tag

Here is example of Tahoma font.you can see whatever i write is in Tahoma font also you see no changes in navigation links,bottom navigation links font because they have there own styles defined previously.
Redefining body tag effect on colors,text size, text font etc.., as long as there is no other style specified.
Microsoft expression web tutorial for redefine body tag
Next part i will show you in another Tutorial.ASP.NET Master Page Tutorial Part-10 (Moving Css To External Css File) Using Expression Web

Read More...

 

ASP.NET Make Master Page Tutorial Part -8 (Bottom Navigation Links )

No Comment - Post a comment

In previous post How To Make Master Page in ASP.NET Part -7 (Navigation Links) i show you how to make navigation user interface by static links in sidebar of ASP.NET website.in this tutorial i show you how to add Bottom Navigation Links and another Div which holds another ContentPlaceHolder control in the master page.
Now in the master page, make new Div tag called #contentbottom in #main div tag,below #maincontent (as shown in picture)where the content pages will insert their custom content.When users request the content pages, ASP.NET merges the output of the content pages with the output of the master page.this #contentbottom gives more flexibility to master page.

expression web asp.net master page tutorial navigation toolsIn the lower right hand corner of the screen you will see the Apply Styles box. If you don't have this box select it from the Task Panels menu in the top menu bar of Expression Web. Click the New Style button in the Apply Styles box. This will bring up the New Style dialog box.Now we want to make new style called #contentbottom.go to Box Category set padding 10 px to all.

expression web asp.net master page tutorial navigation tools
Now after applying new style you can see something like this.

expression web asp.net master page tutorial navigation tools
Now make new style called .clear.this style is a class style,the advantage is that we can use class style as many times on same page.

What is Clear style in css ?
The CSS clear property is used to for control flow when using the float property. Using CSS clear, you can specify whether to keep one or both sides of an element "clear".

Possible Values of Clear style:

none - floating elements can appear on either side.
left - floating elements can not appear on the left (i.e. keep the left side "clear").
right - floating elements can not appear on the right (i.e. keep the right side "clear").
both - floating elements can not appear on the left or right (i.e. keep both sides "clear").
inherit.
now go to layout category,in clear tab fix the value to both.

expression web asp.net master page tutorial navigation tools

Now click on #contentbottom the apply .clear style to it as shown in picture.

expression web asp.net master page tutorial navigation tools

Ahh.. you can see the #contentbottom is bellow the #sidebar.

expression web asp.net master page tutorial navigation toolsNow add one more div at the very bottom before the last div called #bottombar.go to apply new Style,in background category select the color you want.

expression web asp.net master page tutorial navigation tools
In Box Category set the padding 10 px to all.Click ok.

expression web asp.net master page tutorial navigation tools
You can see like this.

expression web asp.net master page tutorial navigation tools
Now in code view, click <.ul.> tag as shown in picture copy the navigation content.

expression web asp.net master page tutorial navigation tools
And paste it in #bottombar tag as shown in picture.

expression web asp.net master page tutorial navigation tools
Click on deign view you can see the navigation content is added in bottom bar.

expression web asp.net master page tutorial navigation tools
Now redefine the li tag to manager this style.go to manage style,in current pages tab find the li tag,right click on li tag,click on click on "New style copy".this will copy all properties of li tag and give another new li tag.
now make new style called #bottombar li.this style is ID style becouse we can use thid=s style only on #bottombar div.

expression web asp.net master page tutorial navigation tools
In Layout category set display to inline

expression web asp.net master page tutorial navigation tools
In Font category set the properties what you want.Click OK.

expression web asp.net master page tutorial navigation tools
You can see like this.

expression web asp.net master page tutorial navigation tools
Now modify the #bottombar style in Apply style box,find the #bottombar tag,right click on #bottombar style .click on modify style

expression web asp.net master page tutorial navigation tools
Now in the Block category set the text-align to "center"

expression web asp.net master page tutorial navigation tools
After applying this new style results are like this.

expression web asp.net master page tutorial navigation tools
These are the elements appear same in every page of our Asp.Net website.

Anyone who is serious about web development depends heavily on cascading style sheets (CSS).I explain in detail in all these Expression Web tutorials how we can use style sheets in websites/ASP.NET Websites. Microsoft Expression Web does a great job handling CSS. these Style sheets allow us to specify how any object on a page should be displayed.applying or working on CSS in Visual Studio is not easy like Expression Web.
Next part i will show you in another Tutorial ASP.NET Master Page Tutorial Part-9 (Redifining Body Tag) Expression Web.

Read More...

 

How To Burn MKV Files To DVD

1 comments - Post a comment

In Previous posts i show you How to Convert DVD To MKV ,Convert Avi To Mkv,Join Two Or More .Mkv Files,How To Play .MKV Files And Burn Them To A DVD in this post i show you another way to Burn MKV video file to DVD. many people having audio sync problem with mkv files.Using MKVtoolnix And MKVExtractGUI softwares to extract the audio and video streams from the mkv container and then adding them to ConvertXtoDVD is the best Audio sync solution for converting MKV to DVD.

First you need to download MKVtoolnix and MKVExtractGUI.

When you have them, you need to install MKVtoolnix.

How To Burn MKV Files To DVD
Then open the MKVExtractGUI archive file and grab the files within.

How To Burn MKV Files To DVD
Then you need to move those files to the folder your MKVtoolnix installed in and double click the MKVextractGUI.

How To Burn MKV Files To DVD
This window should pop up.

How To Burn MKV Files To DVD
Now click the button beside the input field and select the mkv file you want to extract the audio and video file from.

How To Burn MKV Files To DVD
Now Open the file and wait a second or two till the tracks appear and check the ones you want hit extract. (The extracted files will appear where your mkv file is unless you change the extraction location)

How To Burn MKV Files To DVD
Now exit the window and launch ConvertXtoDVD.

How To Burn MKV Files To DVD
After you have done that, use the menu or the add video button.

How To Burn MKV Files To DVD
You want to now adjust the Files of Type: to show All files.

How To Burn MKV Files To DVD
Select the video file that was extracted.

When you open that file, since the file type isn't totally supported it will not automatically know the movie length, just hit automatic so it can find the movie length.

How To Burn MKV Files To DVD
Expand the Titleset tree and right click on the audio (which should currently have 0 streams) and select to add audio.

How To Burn MKV Files To DVD
Then select and open the audio you need for your movie

How To Burn MKV Files To DVD
I will leave all the other video options up to your preference.

Now all you have to do is press the convert button.

If you wish to be able to see if your movie is really correctly synced before burning then get to the burning options.

How To Burn MKV Files To DVD
And uncheck "Burn result to DVD" on the window that pops up.

How To Burn MKV Files To DVD
You can now go to the vob files and view the movie and see if it came out right, you can look at the path of mine and see if yours goes to the same directory.

How To Burn MKV Files To DVD
Don't worry though, you can still burn it to dvd, just go back to the ConvertXtoDVD program, and even if you closed it already, you can just go to the Action menu and click "Burn a project already converted".

How To Burn MKV Files To DVD
Then select the folder where the vob files are located.
Then just go ahead and Burn.

More MKV Tutorials

Convert DVD To MKV ,
Convert Avi To Mkv
,
Join Two Or More .Mkv Files
,
How To Play .MKV Files And Burn Them To A DVD

How To Burn MKV Files To DVD

How To Convert MKV Files To AVI With Subtitles

Read More...

 

Download Free Mobile Wallpapers

No Comment - Post a comment

Download Free Mobile Wallpapers
Free Mobile Wallpapers Download

Dimensions 240x320
Download Free Mobile Wallpapers
Download Free Mobile Wallpapers
Download Free Mobile Wallpapers
Download Free Mobile Wallpapers


Download Free Mobile Wallpapers
Download Free Mobile Wallpapers

Download around 100 cool mobile Wallpapers

Free Download Mobile Wallpapers
Phone Wallpaper Dimensions 176 x 220
Download Free Mobile Wallpapers
Download Free Mobile Wallpapers
Download Free Mobile Wallpapers
Download Free Mobile Wallpapers

Read More...

 

Nvidia GeForce Release New Version:175.16 Drivers For All Nvidia Users

No Comment - Post a comment


Nvidia GeForce now Release New Version: 175.16 Drivers For All Nvidia Users.

GeForce Release
175 WHQL
Version:
175.16
Release Date:
May 13, 2008
Operating System:
Windows XP, Windows XP Media Center Edition
Language:
U.S. English
File Size:
37.9 MB
Download here

Read More...

 

ASP.NET Master Page Tutorial Part -7 (Adding Navigation Links)

No Comment - Post a comment

In previous post ASP.NET Master Page Tutorial Part -6 (Adjusting Div Tags) Expression Web i show you how to Add main content Div tag and adjusting sidebar Div tag and main content bar Div tag to ASP.Net Website master page using Expression Web.

Most web sites have more than one page, so some type of navigation user interface is needed. A navigation user interface can be some static links to the other pages, or can involve the use of menus or treeviews. No matter how the navigation user interface is implemented, a site's logical structure (also called a site map) must first be defined.in this tutorial i show you how to make navigation user interface by static links in sidebar of ASP.NET website.

Now we have basic design of Asp.Net website.In side bar make some site links like Home,About Us,Categories, etc...

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Copy all content in notepad file like this..

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Just click into Sidebar div tag as shown in picture.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Go to Edit > Paste Text..
here you can choose in which formate you want to paste content in page.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Click on "Normal paragraphs without line breaks" click Ok !!

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

By doing this each of the content line srounded by <.p.> tag. as shown in pictures
The <.p.> tag defines a paragraph.All "presentation attributes" of the p element.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Now Select the "Home" click on hyperlink button,in Address bar write "home.aspx" as shown in picture.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Select the "About Us" click on hyperlink button,in Address bar write "aboutus.aspx" as shown in picture.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)




Select all and click "bullet".Now aplly some new styles on it.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Go to Apply style > click on new Style. Select predefine tags..

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

select ul tag.The <.u.> tag defines underlined text.in Box category set padding 0 to all,set margin 0 to all, click Ok.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Again Go to Apply style > click on new Style. Select "li" predefine tags..
The <.li.> tag defines the list item.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

In Box Category set top margin 10 px,right margin 15 px,bottom margin 15 px,left margin 15 px.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

In Font Category set font-family,font size,font weight etc.. whatever you want.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

In List Category set list style type.. Click Ok !!

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

You can get like this.

Expression web Master Page tutorials in ASP.NET  (Navigation Links)

Next part i will show you in another ASP.NET Make Master Page Tutorial Part -8 (Bottom Navigation Links ).

Read More...

 

Cool Pictures Seen By 3D Glasses

No Comment - Post a comment


I found some cool 3D pictures.these pictures seen by 3D Glasses..




























Some Images are from:
www.3d-image.net
www.avsforum.com
www.coryi.org

Read More...

 

How To Format & Install Windows Xp

No Comment - Post a comment

This post demonstrates how to install Windows XP Professional.The procedure to install Windows XP Home edition is very similar to the professional edition.some people don't know how to Formate and install Windows in system.

The best way install Windows XP is to do a clean install. It is not difficult to perform a clean installation. Before you perform the installation I recommend that you backup your important C:/ files in another drive or just Copy n Paste files from C:/ to another. My Document folder also stores in the part for C:/ so you can also save all files of My Document in another part like D:/,E:/..etc..

Lets get started

Restart your PC and do the following...

Go into the BIOS settings of your PC, usually by pressing the F1, F2, F10, or maybe the delete key, If you are not sure watch the screen at startup and it will say "To enter setup press..." You have to be quick and press it. If you miss it restart again.. you can see blue screen like this..



Once you are in the bios you have to change the boot options
In my system Boot change option is in "Advanced BIOS Features"..
Change the First Boot Device to "CD-ROM" You have to make your CD ROM the first boot option.Press F-10 for save settings..

How To Format & Install Windows Xp Easily

Then Save to CMOS Exit Enter "Y" key for YES,press Enter Key

How To Format & Install Windows Xp Easily

It will restart your system..

Put your Windows XP CD in the drive...When it says press any key to boot from cd, Press any key on the keyboard...If it doesn't ask you this then restart your computer again.

A blue Welcome to Setup screen will appear and you are on your way.Press Enter To set up Windows Xp now.

How To Format & Install Windows Xp Easily

Once the set up has loaded all the windows files, It will say "press F8 to agree to the terms and conditions" press F8...

How To Format & Install Windows Xp Easily

To repair the selected Windows XP installation Press R.
To install Fresh copy of windows XP without repairing Press ESC.
press ECS.

How To Format & Install Windows Xp Easily

Now you are at the set up, Click your C drive and format your old windows, Press D, it will ask if you are sure by clicking L...

Select the existing partitions to install Windows XP.i recommend select C: partition
Press Enter.

How To Format & Install Windows Xp Easily

To continue Setup in partition C,Press C.

How To Format & Install Windows Xp Easily

now here you can formate C:/ in Quick mode or in normal mode.i recommend formate the partiton in normal mode.you can see the file formate is in NTFS or FAT 32.
In my system the file formate is NTFS...

How To Format & Install Windows Xp Easily

To formate C:/ ,Press F.

How To Format & Install Windows Xp Easily

Let it format, After the format has completed, It will copy windows files,

How To Format & Install Windows Xp Easily

When that has completed it will say "computer will reboot in 15 seconds"...

How To Format & Install Windows Xp Easily

Now your computer has rebooted it will carry on with the set up.

How To Format & Install Windows Xp Easily

After sometime you can see the Regional and Language Option.Click Next.

How To Format & Install Windows Xp Easily

Then Personalize your Software by type your name and the name of your company or organization.leave black organization it is optional.Cick Next

How To Format & Install Windows Xp Easily

Type the Volume License Product Keys..Click Next

How To Format & Install Windows Xp Easily

Enter the name of your computer.you can also set the Administrator password or leave blank if you dont want to set password.

How To Format & Install Windows Xp Easily

Set the Date and time and your time zone,click Next.

How To Format & Install Windows Xp Easily

Set the Network Settings.

How To Format & Install Windows Xp Easily

Set the Workgroup Computer Domain..

How To Format & Install Windows Xp Easily

Done ....

How To Format & Install Windows Xp Easily



Add users that will sign on to this computer.

How To Format & Install Windows Xp Easily

Welcome Screen..

How To Format & Install Windows Xp Easily



Log in, to your PC for the first time. You now need to check the device manager to confirm that all the drivers has been loaded or if there are any conflicts. From the start menu select Start -> Settings -> Control Panel. Click on the System icon and then from the System Properties window select the Hardware tab, then click on Device Manager.

How To Format & Install Windows Xp Easily

If there are any yellow exclamation mark "!" next to any of the listed device, it means that no drivers or incorrect drivers has been loaded for that device. Your hardware should come with manufacturer supplied drivers. You need to install these drivers using automatic setup program provided by the manufacturer or you need to manually install these drivers. If you do not have the drivers, check the manufacturers website to download them.
Install all drives of system like sound, Graphic Card, Modem, Buletooth...etc..
Windows is completely setup when there are no more exclamation marks in the device manager..

Read More...

 

Eyesight Improvement Tips By Funny Way And Yoga

No Comment - Post a comment

Eyesight Improvement tips by funny way and yoga

If you're Devoted to a fitness lifestyle exercising regularly and following a healthy diet you probably notice the smallest change in your body and its abilities, whether you can lift more weight, increase the strength level on the elliptical trainer or even fit into your clothes better. But when it comes to your vision, changes are harder to pinpoint,even though your eyes play a crucial role every day.

People generally can't measure how well they see, or how well they're using their eyes they don't know when their eyes have changed, or if they aren't seeing their best..

Your entire life, welfare and well-being depend upon good eyesight.The eyes also need regular exercise and good nutrition to improve your sight.Eye exercises can improve your visual skills, such as visual reaction time, tracking, and eyehand and eye-body coordination.They can also help make you more productive while reading or working on the computer.Heres how you can improve your eyesight by doing amazingly successful eye exercises to improve your eyesight.It looks funny but it works..

Can you find the "C"

OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOCOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO
OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOO

Find the "6"

9999999999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999
9999699999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999
9999999999999999999999999999999999

Find the "N"

MMMMMMMMMMMMM
MMMMMMMMMMMMM
MMMMMMMMMMMMM
MMMMMMMNMMMMM
MMMMMMMMMMMMM
MMMMMMMMMMMMM
MMMMMMMMMMMMM
MMMMMMMMMMMMM
MMMMMMMMMMMMM
MMMMMMMMMMMMM

Find the "|"

]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]|]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[
]]]]]]]]]]]]]]] [[[[[[[[[[[[

Find the "O"

QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQOQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ
QQQQQQQQQQQQQQQ QQQQQQQQQQQQQ

Find the "5"

SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSS5SSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS
SSSSSSSSSSSSSSSS SSSSSSSSSSSSSSSSS

Find the "i"

jljljljljljljljljljlj ljljljljljljlj
ljljljljljljljljljljl jljljljljljljl
jljljljljljljljljljlj ljljljljljljlj
ljljljljljljljliljljl jljljljljljljl
jljljljljljljljljljlj ljljljljljljlj
ljljljljljljljljljljl jljljljljljljl

Find the "3"

89898989 8989898 98989898
98989898 9898989 89898989
89898989 8939898 98989898
98989898 9898989 89898989
89898989 8989898 98989898

Find the "1"

LILILILILILILILI
ILILILILILILILIL
LILILILLI1LILILI
ILILILILILILILIL
ILILILILILILILIL
ILILILILILILILIL
ILILILILILILILIL

Find th "V"

xwxwxwxwxwxwxwxwxw
wxwxwxwxwxwxwxwxwx
xwxwxwxwxwxwvwxwxw
wxwxwxwxwxwxwxwxwx
wxwxwxwxwxwxwxwxwx
wxwxwxwxwxwxwxwxwx
wxwxwxwxwxwxwxwxwx

Find the "8"

333333333333333333
333333333333333333
333333333333333333
333333333333333333
333333333333333333

Let do some Yoga Eye Exercise...

# Side to Side and Up and Down

With Eyes Wide Open. Look all the way to the left. Look all the way to the right do Four times. Then close eyes and rest.With Eyes Wide Open.Look all the way up. Look all the way down. Four times then close eyes and rest.

# Diagonal

With Eyes Wide Open. Look all the way to upper left. Look all the way lower right do Four times then close eyes and rest.
With Eyes Wide Open. Look all the way to upper right. Look all the way lower left. do Four times then close eyes and rest.

# Around the clock

With Eyes Wide Open. Look all the way to clock like 1:00, Look at 2:00,3:00,...all the way to twelve.do one time then close eyes and rest.
With Eyes Wide Open. Look all the way to 11:00, Look at 10:00,9:00,8:00,... all the way to twelve.do one time then close eyes and rest.

# Focus practice

Hold up one finger in front of your nose and focus on your finger print. Then look out the window and focus on the horizon. do four times then close eyes and rest.

Because your eyes are so important in every aspect of your life, taking care of them should be as much a concern as caring for the rest of your body.

Read More...

 

How To Signup Blackcats Games Site Without Invitation

98 comments - Post a comment

Blackcats-Games.net is the best dedicated games torrent tracker out there.It tracks several thousand windows and console games.you can download GC, DS, Wii, PS1, PS2, PS3 Xbox, XBox360, PC Games, ROMS... etc Obviously, it is not easy to get into and the tracker had signups closed for a long time and later the admins decided to close the invite based signups too. Now Blackcats-Games is accepting new signups. You just have to be there at the right time. That is easier said than done though. here i show you how to signup Blackcats Games Site without invitation.

Blackcats-Games.net tracker opens signups for very brief periods of time (Seconds actually). At other times it will display the following message:

"Max users have been reached for the current time period. Have some cocoa, watch the sun rise (or set), and come back. Nature is beautiful. You might get lucky."

Even if you miraculously get the signup form on first try, you will have less than 9 seconds to fill the form; if you are late, you will be treated with a similar message. Now you may think it is impossible to signup. It is not; at least with a few nice addons for Firefox.(you can download Firefox FREE !!Form Top Right corner of this site.)

1.Download Check4Change FireFox extension from here

https://addons.mozilla.org/en-US/firefox/addon/3028

signup Blackcats Games Site without invitation

2. Download AutoFormer FireFox extension from here

https://addons.mozilla.org/en-US/firefox/addon/1958

signup Blackcats Games Site without invitation

3. Visit
http://www.blackcats-games.net/

and click on the Register link. (Directly accessing signup page would not work.)

signup Blackcats Games Site without invitation

4. You will be taken to the page with 'max user limit reached' message. Now select the message text or message heading("Signup failed!"),
Rright Click > Check4Change > Custom.

signup Blackcats Games Site without invitation

Enter 3 seconds in the "Refresh and check every.." field under "Check Interval".
Also tick "Dont refresh while viewing page" button.

signup Blackcats Games Site without invitation

5. Check4Change will now refresh the page every 3 seconds to detect any changes. Within 10 or15 minutes it will detect the Signup form being loaded and notify you. Now take your time and fill each and every field (Except the captcha) carefully.

signup Blackcats Games Site without invitation

Double check everything and make sure you tick everything.

Note on Email: - Blackcats will not accept popular free email addresses like Gmail,Yahoo,Hotmail etc...
If you have an ISP provided address, use it.
If you don't Go to Gawab.com and signup new account.

signup Blackcats Games Site without invitation

6. Before you click submit, Go to FireFox Edit menu >Autoformer > click "save all fields". Now press submit.

signup Blackcats Games Site without invitation

You will be greeted with "Max user limit reached' message again. Do not worry this is normal.

signup Blackcats Games Site without invitation

7. Repeat steps 3 and 4 once more and wait till Check4Change to detect a change. This time be on high alert. The moment it detects the signup form being loaded, switch to the tab immediately. Autoformer will automatically load the values previously entered. This saves you valuable seconds.

signup Blackcats Games Site without invitation

Quickly fill the captcha (no spaces when filling two words) and hit submit. You should get confirmation email within 30 minutes. If you still get "Max user limit reached' , that means you were too late. Repeat steps 3, 4 and 7.

Note: Read the Rules and FAQ of the tracker immediately after you get in. Dont break the rules of Blackcats-Games.net its a very good community you can find lots of things there.

Read More...

 

How To Install Themes On Windows XP

No Comment - Post a comment

Many people don't know how to install 3rd party themes on widows XP.Although this is an easy process I hope this guide will provide an easy method to install custom themes in XP. Here are some examples of what you can change your custom interface into...







You will need:

1.Any version of XP installed - most custom versions are already patched
2.One small file uxthemedll.

Step 1:
Download uxthemedll (218kb):

Step 2:Navigate to:

C:\WINDOWS\System32

Step 3: Once there, there will be a file called:

uxtheme.dll

Rename it to this:

uxtheme.dll.old

Note: this is important because if your new theme file becomes corrupt, you can use this one as a backup

Step 4:Now copy and paste the file you downloaded in Step 1 into the same directory:

C:\WINDOWS\System32

Note: At this point you may recieve warnings that you are replacing system files, this is normal and just cancel any windows trying to stop you. You may have to be an Administrator for this to work.

Step 5:Reboot and you're done, you can now install 3rd party theme files which you can find here:
http://www.guimods.com/category/windows-xp-themes/

Read More...

 

ASP.NET Master Page Tutorial Part -6 (Adjusting Div Tags)

No Comment - Post a comment

In previous post How To Make Master Page in ASP.NET Part -5 (Header Image,Sidebar) Expression Web i show you how to add Header Image and sidebar in ASP.NET website using Microsoft Expression Web.
In this post i show you how to Add main content Div tag and adjusting sidebar Div tag and main content bar Div tag..

Lets Add one anther Div tag inside the main div but outside the sidebar div as shown in picture.

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

Select this new Div tag click on "Apply New Style" name this div to #maincontent, set the position in position category .. i set width 585 px.

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

Now in Box category set Top margin to 10 px.

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)


In Layout category set float to "Right" then click ok !!

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

Now you can see New Div named #maincontent is added but the sidebar and maincontent div tags are not side by side,both should be side by side for..

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

For adjusting both div tags in same line we have to modify these tag
So in Apply style box click on #sidebar then Modify Style as shown in picture.

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

In layout category set the float to "Left" as we set on #maincontent div to "Right".

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

In Box category set All margins to 10 px,Click Ok !!

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

Ahaa haa... Now it looks goods both div tags now in same line.

Expression web Master Page tutorials in ASP.NET (Div Tags tutorials)

We can use this #maincontent div to hold ContentPlaceHolder control,the master page defines content areas using the ContentPlaceHolder control, and the content pages place their content in the areas identified by the ContentPlaceHolder control in the master page.Pages that use a master page to define the layout may place content only in the areas defined by the ContentPlaceHolder.

Next part i will show you in another Asp.Net TutorialASP.NET Master Page Tutorial Part -7 (Adding Navigation Links)..

Read More...

 

Premium Adult Video Chat ??? Lol....

No Comment - Post a comment


People pay to see that?...

hmmmmmm.........



















Naahhhhhhhhhh.........

Read More...

 

Wow I Want To Work In Google....

No Comment - Post a comment


Think you have what it takes to get a job at the world's hottest tech company Google..?



















Into having fun? Want to change the world? If the answer is yes, then you’ve come to the right place. What’s it like to work at Google?
he he he... so who wants to work in Google.... :)

Read More...

 

ASP.NET Master Page Tutorial Part -5 (Adding Header Image & Sidebar)

No Comment - Post a comment

In previous post Asp.Net Master Page Tutorial Part -4 (DIV Properties,Top Header)Expression Web i show you how to set DIV properties like font, block, background, border, box, position, layout etc..and how to make topheader div tag.
Now in this tutorial i show you how to add image folder, header image , adding main aera and adding sidebar to ASP.Net Website.

After setting a #topheader to the width 780px and height 255px because i know the width and height of my header picture,add Header image in #topheader DIV Tag,for this we have to insert image folder.

Click on File > Import > File

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

You can add image file or image folder i am inserting image folder,select folder you want to add in your website.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

you can see results likes this

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

Check your are inserting image in right place,place your mouse pointer inside the #topheader div tag.In folder name "images" i have a header image "How To Do Logo.jpg".just drag n drop this image in #topheader div tag.

In accessibility property box Add alternate text (your site name),i added "How To do" add small description about your site if you want and click Ok.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

This code only appears behind the image if by some reasons Header image is not appear it will show alternate text.
Now you can see header image appear in master page header.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

Now Link this Header image to Home page of ASP.Net website,when user click on this header of ASP.Net website it will always back to Home page of Website.
Click on picture then click on Hyperlink button as shown in picture.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

Now in address bar write "Home.aspx" (we will make the home page after completing Master page design ) Click Ok.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

You can see in Apply Style box that Microsoft Expression Web automatically generate Styles like Style1.that style simply add the image boarder to Zero.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

Now add main area or Master Page.this area is most important in website,it contais the sidebar,main content area and other things...
In code box place the mouse pointer above the last div tag as shown in picture.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

Select this new div tag,apply New style.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

In New Style box name this new style to #main and click ok ! as shown in picture.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

This will just separate the main area to top area of this Master page.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

Now add anther new div tag into #main tag, Apply new Style.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

This div float at the left side that contain all navigation elements called Sidebar
Name this style to #sidebar,In category set the background color or background image.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

In Border category set the value as shown in picture or you can set what you want.



In Position Category set the width of this div i set the width to 150 px. check the Apply new style to document section and click Ok !

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)

Now here you can see the results in this picture.

Expression web Master Page tutorials in ASP.NET (Adding Header Image,Sidebar tutorial)
Next part i will show you in another Asp.Net tutorial ASP.NET Master Page Tutorial Part -6 (Adjusting Div Tags)Expression Web.

Read More...

 

Followers