Thursday, November 13, 2014

How To Create a Temperature Converter Application in BAsic4Android

How to Create a Temperature Converter Application in Basic4Android




Full Source code:
#Region  Project Attributes 
#ApplicationLabel: Temperature Converter
#VersionCode: 1
#VersionName: 
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: unspecified
#CanInstallToExternalStorage: False
#End Region

#Region  Activity Attributes 
#FullScreen: False
#IncludeTitle: True
#End Region

Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.

End Sub

Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.

Dim EditText1 As EditText
Dim Spinner1 As Spinner
Dim Label2 As Label
Dim cel,fah As Double
Dim selected As String 

End Sub

Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("1")
      Spinner1.Prompt="Please select"
 Spinner1.Add("°C")
 Spinner1.Add("°F")
 EditText1.Text=""
 selected="°C"
End Sub

Sub Activity_Resume

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub



Sub Button1_Click
If selected="°F" Then
check
fah=EditText1.Text
cel=Round2(fah-32/(1.8),3)
Else
check
cel=EditText1.text
End If
Label2.Text="The result is :" & cel &" °C"



End Sub
Sub Button2_Click
If selected="°C" Then
check
cel=EditText1.Text
fah=Round2((cel*1.8)+32,3)
Else
check
fah=EditText1.text
End If
Label2.Text="The result is : " & fah &" °F"

End Sub
Sub Spinner1_ItemClick (Position As Int, Value As Object)
 selected=Value
End Sub
Sub check 
    If edittext1.Text="" Then
Msgbox("Please Donot let textbox empty","Please")
EditText1.Text=0
cel=0
fah=0
End If

End Sub

Full Source Zip file::sabinkhanal.com.np/temperature.zip

Wednesday, September 24, 2014

Tuesday, September 16, 2014

Monday, September 15, 2014

Saturday, September 13, 2014

Friday, September 12, 2014

SHORTCUT VIRUS CLEANER DOWNLOAD

Download Shortcut Virus Cleaner v1.0 here ,

 Release Date: 12/9/2014

 Version : 1.0

                                    Download




How to Use :
       https://www.youtube.com/watch?v=_gU2YVb0s1k&feature=youtu.be





                 This program will clean Selected USB and Source of shortcut virus (Vbs script) . On Any problems Please Message me @ Facebook
     or Comment Below.......

    Thanks For Downloading ,...
         Sabin khanal

Sunday, June 29, 2014

How To Earn Money Online From AppsNetwork : Best site Ever

World's best Site to Earn Money : Appsnetwork

Hurry Guys , AppsNetwork Really Paid me . Here I am gonna show you how to earn Money from Appsnetwork .
Do You want to Earn Money Online , Just by downloading Some android apps from Google Play Store ? If so, You are at right place . Apps Network is The site Which pay You For just downloading android apps . You can Earn Good Amount of money from here . Your daily income is ranged from 1-2$ . U can earn upto 5-10 cent per application . This is the World's easiest site site to earn Good money . Steps :
a) Sign Up to Apps Network and sign In
b) Go to Earn Money panel and click on appsboost turbo desktop introduction
c) Drag Green Button to Your bookmark bar
d) Go to AppsBoost turbo offerwall
e) Click on earn .. Bucks
f) You'll be then redirected to Play store
g) Hit install on application
h) After installed , click on Bookmarked turbo link
i) A box appears , showing either u have completed your work or not , If everything's done than , you'll be Returned to Offerwall and You'll see your income growing .
j) Complete all the task and you'll earn upto 2 dollar a day .
K) Minimum payout is 2$ and is send to u within 2-4 days .(For me)
Here's my payment proof .


7feda547d17583277aa69492a7e9b870.JPG
Plz , join with my referrel Link,

Wednesday, June 25, 2014

MAKE COMPLETE WEBSITE IN 3 HOURS PART 3

MAKE COMPLETE WEBSITE IN 3 HOURS PART 3

PART 3: ADDING CONTENTS TO WEBPAGE & MAKING PORTABLE DATABASE SCRIPT
PART 4: CONNECTING AND GETTING DATA FROM DB
PART 5: REGISTER DOMAIN AND UPLOAD TO SERVER
PART6 : EARN MONEY ONLINE/FROM OUR OWN WEBSITE
PART 7: FEW MORE THINGS AND LATEST WEB TECHNOLOGIES

Hello Guys as some of frens are requesting I am again here with new part of my old tutorial series . Here i'll continue With my 3rd part of HOW TO MAKE UR WEBSITE IN 3 hours ,,,

In this part i'll discuss how to embed database and other content to our website Lets start .Till now We have just amde a dummy website . This website is nothing , just a simple Homepage , Now in this part i'll show you how to add other contents . For example- till now , if we click our navigation menu it did nothing ,But now we are gonna make it actually working . How to do it ?  lets start .

In this tutorial i'll show ,,, how to load list of hotels and their information from mysql database to our page while clicking hotels link .

PART 1) SEtting up environment

step 1) change the name of index.html to index.php .
step 2) install wamp and run it .
step 3) Copy all these downloaded files of demo.zip to /wamp/www location and extract there . 
step 4) Now go to browser and text the site as 127.0.0.1/demo 
step 5) If u see website working then we can move into part 2.

PART 2) BEIng ready for inserting contents

Go to index.php and change the code of navigation menu as below... In the anchor field link the reference to actual page which u wanna link like , in href of about us link about_us.php , in gallery - gallery.php and so on.

<div class="nav">

<ul>
<li> <a href="index.php"> Home</a> </li>

<li><a href="destination.php"> Destinations </a>
</li>
<li> <a href="hotels.php">Hotels</a>
</li>
<li> <a href="gallery.php">Gallery</a>
<ul>
<li><a href="gallery.php/?place=valley"> VAlley</a></li>
<li> <a href="gallery.php/?place=himalaya">Himalaya</a> </li>
<li> <a href="gallery.php/?place=pokhara">Pokhara</a> </li>
</ul>
</li>
<li> <a href="about_us.php">About Us</a>
</li>
</ul>
</div>

and yeslai save gara ..

PART 2) Making subpages for content 

To make subpage we just have to copy our main index page and pasting it and renaming it . After that we need to remove un-necessary contents from our index page which are not essential in subpages like slider etc.


step 1) open index.php with notepad++
step 2) press ctrl+N to make new document 
step 3) Copy all the contents of index.php to this page 
step 4) Find the line named <div class=slider ,
step 5) REmove this as we donot need it in subpages . 
step 6) Go to content div , and remove all the data inside content div cause we are gonna put different content in our subpages .

Now Everything done . You can use similar method to make subpage of ur own website . Now we have ade a skeleton page , just save it and make its different copies naming ,

gallery.php
hotels.php
gallery.php
destination.php

like this . 

Now we have made the skeleton of our subpage too  ,Now just need to put contents , To test our progress go to browser window and type  127.0.0.1/demo/ and try to navigate to all windows .If EVerything done than u are ready to proceed in next step .

TILL NOW OUR FINAL CODE IS ,,,

index.php >>>

<html>
<head>
<script src="script.js"> </script>
<link rel="stylesheet" href="style.css"> 
</head>
<body onload="slides()">

<!--main wrapper -->

<div class="wrapper">

<!--Header -->

<div class="headline">

<img id="logo1" src="logo1.gif" width=100 height=100>
<span class="title">Welcome To TravelNepal.com </span>
<img id="logo2" src="logo2.png" width=100 height=100>
</div>

<!--Navigation dropdown menu -->
<div class="nav">

<ul>
<li> <a href=""> Home</a> </li>

<li><a href=""> Destinations </a>
<ul>
<li> <a href=""> Valley</a></li>
<li><a href="">East </a></li>
<li> <a href="">West </a></li>
<li> <a href="">Terai </a></li>
</ul>
</li>
<li> <a href="">Hotels</a>
</li>
<li> <a href="">Gallery</a>
<ul>
<li><a href=""> VAlley</a></li>
<li> <a href="">Himalaya</a> </li>
<li> <a href="">Pokhara</a> </li>
</ul>
</li>
<li> <a href="">About Us</a>
</li>
</ul>
</div>

<!--For image slider -->
<div class="slider">

<img id="slide" src="1.jpg" width=100% height=200>

</div>
<!--hamro page ko main content -->
<div class="content">

<div class="texts" style="text-align:center;">
Nepal is the country where Mount Everest, the highest mountain peak in the world, is located. Mountaineering and other 

types of adventure tourism and ecotourism are important attractions for visitors. The world heritage site Lumbini, 

birthplace of Gautama Buddha, is located in southern Nepal, and there are other important religious pilgrimage sites 

throughout the country.

According to statistics of 2012, there is slow growth rate of 9.8%. The number of tourists had increased by 21.4 

percent in 2011, which was Nepal Tourism Year (NTY). According to statistics from Nepal Tourism Board (NTB), a 

total of 598,204 foreign tourists entered the country via aerial route in 2012. The government of Nepal declared 2011 

to be Nepal Tourism Year, and hoped to attract one million foreign tourists to the country during that year.[1] The 

tourist industry is seen as a way to alleviate poverty and achieve greater social equity in the country. The government 

of Nepal has also declared Lumbini Tourism Year 2012 to promote Lumbini - the birthplace of Lord Buddha.
</div>
<img src="a.jpg" width=400 height=200> <img src="2.jpg" width=400 height=200>  <img src="3.jpg" width=388 

height=200> 
</div>
<!--right block -->
<!--Footer of our website -->
<div class="footer">
<span id="foot" >Site designed and maintained by sabin </span>
</div>
</div>
</body>
</html>

script.js (for slider ) >>>>

var i=0;
function slides()
{
var x= new Array("1.jpg","2.jpg","3.jpg","4.jpg");
var img=document.getElementById('slide');
if(i>=3)
{
i=0;
}

else
{
i=i+1;
}

img.src=x[i];
img.style.width='100%';
img.style.height=180;
setTimeout("slides()",5000);
}

and style.css >>>>

body
{
margin:0;
padding:0px;
}
.wrapper
{
margin:0px auto;
width:1200px;
height:700px;
background-color:rgba(100,100,200,0.4);
}
.headline
{
height:100px;
background-color:black;
}

#logo2
{

left:auto;
right:10px;
float:right;
}
.title
{
position:absolute;
top:0;
left:450px;
color:white;
font-size:25px;
font-family:comic sans ms;

}
.nav
{
width:100%;
height:43px;

margin-right:auto;
margin-top:2px;
background-color:black;
}
ul
{
z-index:2;
font-size:20px;
list-style: none;
padding: 0 ;
margin: 0;
}
ul li
{
display: block;
float: left;
position: relative;
border:0px solid;
}

ul li a:hover
{
background-color:rgba(10,190,120,0.5);
}
ul li a
{
text-shadow:0 -1px 1px rgba(0,0,0,0.25);
border-radius:20px;
color: white;
display : block;
background-color:rgba(100,150,50,0.9);
text-decoration : none;
text-align:center;
padding : 10 15 10 15;
margin-left: 5;
width: 130 ;
height : 20 ;
}

li ul li a
{
border-radius:10px;
}

 li ul li a:hover
{
background-color: pink;

}

li ul
{
display: none;
}

li:hover ul
{
display: block;
position : absolute;

}

#slide {
 //   -webkit-animation: slides 5s infinite; 
//    animation: slides 5s infinite ;
 z-index:-1;
}

@-webkit-keyframes slides {
    from {opacity: 100%;width:100%;}
    to {opacity: 0.4;width:0%;margin-left:0%;}
}

.content
{
background-color:black;
background-image:
radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px),
radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 30px);
background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px; 
background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
height:400px;
color:white;
font-size:15px;
line-height:20px;
font-family:comic sans ms;
}

.footer
{
color:white;

height:20px;
background-color:rgba(200,100,10,0.8);
}

and gallery.php,hotels.php,about_us.php , destination.php ko code chai ,,,>>>>

<html>
<head>
<script src="script.js"> </script>
<link rel="stylesheet" href="style.css"> 
</head>
<body onload="slides()">

<!--main wrapper -->

<div class="wrapper">

<!--Header -->

<div class="headline">

<img id="logo1" src="logo1.gif" width=100 height=100>
<span class="title">Welcome To TravelNepal.com </span>
<img id="logo2" src="logo2.png" width=100 height=100>
</div>

<!--Navigation dropdown menu -->
<div class="nav">

<ul>
<li> <a href="index.php"> Home</a> </li>

<li><a href="destination.php"> Destinations </a>
</li>
<li> <a href="hotels.php">Hotels</a>
</li>
<li> <a href="gallery.php">Gallery</a>
<ul>
<li><a href="gallery.php?place=valley"> VAlley</a></li>
<li> <a href="gallery.php?place=valley">Himalaya</a> </li>
<li> <a href="gallery.php?place=valley">Pokhara</a> </li>
</ul>
</li>
<li> <a href="about_us.php">About Us</a>
</li>
</ul>
</div>

<!--hamro page ko main content -->
<div class="content" style="height:700px;">

</div>
<!--right block -->
<!--Footer of our website -->
<div class="footer">
<span id="foot" >Site designed and maintained by sabin </span>
</div>
</div>
</body>
</html>

like this ..

PART 3) Till Now we have created all required page, subpage etc. now we just need to add contents to our webpage . so lets start it . In this demo i'll show u how to load database contents to our hotels.php page ,for example : when we click on hotels page we need to have contents displayed in our page from database with information s like name , location , contact_no display in tabular form , OK?

For this we need to create database there are various ways to do this like ,

1) from 127.0.0.1/phpmyadmin and create there . I donot recommend it . . Here i am gonna show u how to make portable 

database which u can load in any pc and server with just one click 

2) From  .sql file and importing it to phpmyadmin 

3) from portable database script php file 

i recommend step 3 cause its easy and portable too . just one click can create your full database with table and necessary fields.
here i am gonna doing this .

B4 doing this just know ,We have to confirm what database to made , what fields to put in this and so on.
For this tutorial lets make a database tourism with 3 tables 

gallery , hotels , destinations ,....

in this tutorial i am just gonna show u database of hotels page . here we are gonna laoding content of table hotels to our hotels.php file ..Lets make a portable database php script create new document by clicking ctrl+n in notepad++ and save it as 1.php and we have to put content inside it as follows

<?php
$con=mysqli_connect("LOCALHOST","root","");
// Check connection
if (mysqli_connect_errno()) {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
}

// Create database
$sql="CREATE DATABASE tourism";
errorcheck($con,$sql);
//connect to database
$con=mysqli_connect("LOCALHOST","root","","tourism");
errorcheck($con,$sql);
// Create table
$sql="CREATE TABLE hotels(name varchar(100) ,location varchar(100) ,contact integer(20), id integer(10) 

AUTO_INCREMENT PRIMARY KEY)";
errorcheck($con,$sql);

$sql= " INSERT INTO hotels (name,location,contact) values('godawori','banepa','9849952435')";
errorcheck($con,$sql);

function errorcheck($con,$sql)
{
if (mysqli_query($con,$sql)) {
  echo "Work Done".'<br>';
} else {
  echo "Error creating table: " . mysqli_error($con).'<br>';
}

}

?>

save it to same location and
and after everything is set go to 127.0.0.1/demo/1.php . 

It is our portable PHP . Just loading once can fully automate process of creation of whole database .we can add more data later . Liek this we can add database of gallery , travel etc and we can also insert data later .if it says work done in all line except second than everything is fine. Till now we have done all major works like making contents page , mysql database and so on .


Other things will be in PART 5 , so stay visiting myTrickopedia .




To download whole content visit here  

sabinkhanal.com.np/demo.zip

Tuesday, May 27, 2014

DATABASE MANAGEMENT SYSTEM : MULTIPLE CHOICE QUIZ

Multiple Choice Questions on DBMS :

Q1. The ability to change the conceptual schema without affecting the external 
schemas or application programs is known as ___________________.

a.  Program-data independence
b.  Logical data independence
c.  Physical data independence
d.  Data abstraction
Q2. Which of these levels deals with the physical representation of the database 
on the computer?

a.  External level
b.  Conceptual level
c.  Internal level
d.  None of these
Q3. Which of these is not a representational data model?

a.  Entity-relationship model
b.  Hierarchical data model
c.  Relational data model
d.  Network data model
Q4. Which of these is not a feature of Hierarchical model?

a.  Organizes the data in tree-like structure
b.  Parent node can have any number of child nodes
c.  Root node does not have any parent
d.  Child node can have any number of parent nodes
Q5. Which of these data models is an extension of relational data model?

a.  Object-oriented data model
b.  Object-relational data model
c.  Semi structured data model
d.  None of these
Q6. The information about data in a database is called _______.

a.  Metadata
b.  Hyper data
c.  Tera data
d.  None of these
Q7.The relational database environment has all of the following components 
except

a. users
b. separate files
c. database
d. query languages
Q8. DBMS are intended to  

a. eliminate data redundancy
b. establish relationship among records in different files
c. manage file access
d. maintain data integrity
e. all of the above
Q9. The language used application programs to request data from the DBMS is 
referred to as the

a. DML
b. DDL
c. query language
e. none of the above
Q10. The highest  level in the hierarchy of data organization is called

a. data bank
b. data base
c. data file
d. data record
Q11. Report generators are used to 

a. store data input by a user
b. retrieve information from files
c. answer queries
d. both b and c

Q12. A top-to-bottom relationship among the items in a database is established 
by a 
a. hierarchical schema
b. network schema
c. relational schema
d. all of the above
Q13. The management information system (MIS) structure with one main 
computer system is called a

a. hierarchical MIS structure
b. distributed MIS structure
c. centralized MIS structure
d. decentralized MIS structure
Q14. A data dictionary is a special file that contains?

a. the names of all fields in all files
b. the data types of all fields in all files
c. the widths of all fields in all files
d. All of above
e. None of above
Q15. The DBMS acts as an interface between what two components of an 
enterprise-class database system?

a.  Database application and the database
b.  Data and the database
c.  The user and the database application
d.  Database application and SQL
Q16. An on-line commercial site such as Amazon.com is an example of a(n) 
________ .

a.  Single-user database application
b.  Multi-user database application
c.  E-commerce application
d.  Data mining database application
Q17. SQL stands for ___________________ .

a.  Structured Query Language
b.  Sequential Query Language
c.  Structured Question Language
d.  Sequential Question Language
Q18. The following are functions of a DBMS except ________ .

a.  creating and processing forms
b.  creating databases
c.  processing data
d.  administrating databases
Q19. A primary key should be defined as:

a.  NULL
b.  Not NULL
c.  Either of the above can be used.
d.  None of the above is correct.
Q20. A foreign key is:

a.  a column containing the primary key of another table.
b.  Used to define data types
c.  Used to define NULL status
d.  All of the above
Q21. The relational database model was created by E.F. Codd.

a.  True
b.  False
Q22. The terms alternate key and candidate key mean the same thing.

a.  True
b.  False
Q23.  When transforming an entity-relationship model into a relational database 
design, each entity is represented as a table.

a.  True
b.  False
Q24. The identifier of an entity will become the ________ of the new table.

a.  Foreign Key
b.  Main Attribute
c.  Primary key
d.  Identity Key
Q25. Which of the following is not true of the traditional approach to information
processing

a. there is common sharing of data among the various applications
b. it is file oriented
c. programs are dependent on the file
d. it is inflexible
e. all of the above are true
Q26. Which of the following hardware component is the most important to the 
operation of database management system?

a. high resolution video display
b. printer
c. high speed, large capacity disk
d. plotter
e. mouse
Q27. If a piece of data is stored in two places in the database, then 

a. storage space is wasted
b. changing the data in one spot will cause data inconsistency
c. in can be more easily accessed
d. both a and b
e. both a and c
Q28. An audit trail ___________ .

a. is used to make backup copies
b. is the recorded history of operations performed on a file
c. can be used to restore lost information
d. none of the above
Q29. Large collection of files are called ____________ .

a. fields
b. records
c. database
d. sectors
Q30. Generalized database management systems do not retrieve data to meet 
routine request .

a. True
b. False


Answers:
Q1.b, Q2.c, Q3.a, Q4.d, Q5.b, Q6.a, Q7.b, Q8.e, Q9.a, Q10.b, Q11.d, Q12.a,
Q13.c,Q14.d, Q15.a, Q16.c, Q17.a, Q18.a, Q19.b, Q20.a,Q21.a, Q22.a, Q23.a,
Q24.c, Q25.a, Q26.c, Q27.d, Q28.b, Q29.c, Q30.b


Model 2 @ http://lecturenotes4you.blogspot.com/2014/05/dbms-objective-questions.html

.

Thursday, May 15, 2014

How To Earn Money Online From Teckler

How To Earn Money Online From Teckler


"" Teckler is very much special site for me ! You know Why ? Because its the first site from which i've earned my first money online.. ""

Guys , Are You Struggling to make some few extra bucks a day ? or searching for the easiest way to earn money Online ?? Here it comes - teckler . Teckler is the content sharing Website from which you can Earn Real Money Online just by generating traffic for your post  . Here i'll write about - what is teckler , how to earn money from teckler , How to withdraw from teckler , good and bad parts of teckler , its payment proof and Other many more info ...Hope You'll Enjoy it .

What is teckler ?

-> Teckler is the content sharing website where you get paid for sharing the items like video , music , photographs , links , text etc.. and generating traffic to these posts . Your income directly depends on total number of pageviews you have generated to your post . More the pageview /traffic more the income . 

How to earn Money from teckler ?

->In teckler You can earn by sharing anything of your choice like photographs , music videos ,texts and other various informations . 

Did earning from Teckler is easy ?

->Lot more easier than you have thought . You just need good traffic to your posts .

Did teckler really pays ?

-> YEs of course , it paid you to your paypal account within 5 days of redemption .

What are the payment options for teckler ?

-> Currently , teckler pays you only via paypal .

How much can You earn per 1000 views ?

-> estimated 33 cents

How to Create account in Teckler and Start Earning ?


Step 1) Go to www.teckler.com

step 2) Click to Register/login menu located at topright portion of website .

step 3) Click on register button located at popUP window

step 4) the new page will be opened , now click on Facebook if you want to join using facebook or fill out the form like below to join using your email . I recommend you to join using Email account .

step 5) Click On continue ... Now you're done . After it just Follow the steps What teckler says to you .

step 6) After confirming You account Login Using your Email and password

step 6) Click on " Tell Your story " button and start posting Your thoughts

step 7) Share Your post on various social media where you've connected with

step 8) Stay posting till 35 days , Your earnings will be confirmed only after 35 days for first time . After that it'll get confirmed everyday .
 You can withdraw after having 50 cents in your account .


Did teckler really pays ? 

-> See here my payment proof ...



http://www.teckler.com/en/sabinkhanal33/My-Total-Earning-From-Teckler-335011

Visit Teckler Unofficial Faq Here ..

http://www.teckler.com/en/sabinkhanal33/TECKLER-GUIDE-Part-1-244772

http://www.teckler.com/en/sabinkhanal33/TECKLER-FAQ-FOR-BEGINNERS-PART-2-244778


Good things about teckler ::

-> Easy to earn and use
-> Earning with fun
-> You can share anything , No minimum limit in text
-> trusted admin , pays in time 
-> Good place to share your website links 
-> Minimum payout is just 50 cents 
-> You can have multiple profile , which helps to maximize income 
-> You can share videos from other websites like youtube too..


Bad things about teckler ::

-> Site is not so user friendly
-> HArd to use with slow internet connection
-> various bugs( Still in beta stage)



Thats for Now . Hope you've enjoyed it . Teckler is not a get-rich-quick stream but its good way to earn extraa few bucks a day . Hope you'll join it .

Visit my teckler account @ http://www.teckler.com/en/sabinkhanal33

Thanks for being with me . Visit My other posts for informative articles like this .

Friday, May 9, 2014

HOW TO CLEAN SHORTCUT VIRUS




Guys , tired from frequent infection of shortcut virus in Your USB or other drives?? Then Its the time to get rid of it . Here I’ll Teach You how to make Your own Shortcut antivirus . You just have to follow the steps as Described below …
What is shortcut Virus ::
The virus which converts all Your files to shortcut and makes them Normally inaccessible.
step 1) Open Notepad
step 2) Write the following code …(Just Copy paste..)
echo “%CD%”
cd “%CD%”
del *.lnk
attrib -s -r -h *.* /s /d /l
echo ” All done “
pause
step 3) 
Go to file menu and click on save As , then in File Save window choose the Name antivirus.bat and in “Save as type” choose all files .
step 4) Now hit save .
step 5) Copy this file to Infected drive and double click on it to execute .
step 6 ) Now You’ll Find Your USB drive free from shortcut virus .
* To be secure from these type of viruses ,  always place the antivirus.bat in Your USB drive 
 Why To do these Boring tasks,, just download , extract and paste this file to Your Infected drive;


Download Link:

http://trickopedia.tk/wp-content/uploads/2014/04/antivirus.zip
How To Test This Antivirus is working or Not ??
-> Make hidden file/ shortcut in any drive and execute antivirus.bat in that drive , If shortcut is Gone than this is working …
Any problems or suggestions ?? Comment Below ….

Saturday, April 5, 2014

EASIEST WAY TO MAKE DROPDOWN MENU IN CSS AND HTML

 Hi Guys Today I am Gonna show You How to Make a Dropdown Navigation Menu In Html and css . As Navigation Menu are the Fundamental Part Of every webpages You must need to know how to create it  . Here I'll Show You easiest way to do so . Lets start ..

Step 1)   Make a Nested Unordered List of Your Menu items
Step 2)   
Reset The Page Attributes

Step 3)   Make The Horizontal Menu List with Block Display

Step 4)  Add Dropdown Visibility

Step 5)  Add Anchor Properties

Now I'll Show You the Real code Of HTML+CSS Dropdwon Menu .

 

<style>
ul
{
list-style: none;
padding: 0 ;
margin: 0;
}
ul li
{
display: block;
float: left;
position: relative;


}


ul li a
{
color: white;
display : block;
background-color: green;
text-decoration : none;
padding : 10 15 10 15;
margin-left: 5;
width: 130 ;
height : 20 ;
}


ul li a:hover
{
background-color: pink;


}


li ul
{
display: none;
}


li:hover ul
{
display: block;
position : absolute;


}


</style>


 


 


<div id="menu">


 


<ul>
<li> <a href=""> Sabin </a> </li>


<li><a href=""> First Bench </a>
<ul>
<li> <a href=""> Suraj</a></li>
<li><a href="">Umesh </a></li>
<li> <a href="">Rajan </a></li>
</ul>
</li>
<li> <a href="">Second Bench</a>
<ul>
<li><a href=""> Uttam</a></li>
<li><a href=""> Suman </a></li>
<li> <a href="">Rabin</a> </li>
</ul>
</li>
<li> <a href="">Third Bench</a>
<ul>
<li><a href=""> Roji</a></li>
<li> <a href="">Nilisma</a> </li>
<li> <a href="">Basu</a> </li>
</ul>
</li>
<li> <a href="">Dude's</a>
<ul>
<li><a href=""> Suresh</a></li>
<li> <a href="">Prashanta</a> </li>
<li> <a href="">RUPAAK</a> </li>
</ul>
</li>
</ul>
</div>




Documentation :

ul   : Handles Main list , Effect to all other lists


ul li : Main list , Makes menu Horizontal

ul li a : Main menu , specifies size , background color , padding etc.

ul li a : hover ->  If hovered the main menu 


li ul -> what to do with submenu at normal time


li:hover ul -> Submenu effect at hovered time


 

 


 

 Just Copy The Above Listed Code And paste In Notepad and save it as html document . After That Open In Browser like Firefox / chrome . If You do'not understood Any Line of code Please Comment Below . The Output will Looks like ,

 

 

[caption id="attachment_206" align="aligncenter" width="300"]Output Output[/caption]

 

 

 

 

 

 

 

 

HOW TO EARN MONEY ONLINE FROM PROBUX

Payment[/caption]



HURRY , GUYS ! I HAVE JUST BEEN PAID FROM PROBUX , ONE OF THE BEST PTC SITE EVER BUILT. .



Do You also Want to Earn Money From Probux Like Me ??
Then ,,,Read Below ..
HOW TO EARN MONEY FROM PROBUX :

*Remember You can earn over 100 $ per Month , if you have good strategy .


-> You can earn money from probux just by viewing ads , watching videos or doing some crowdflower tasks .

1) Go to this Link and signUp using your desired username , password and paypal address

http://goo.gl/V8P3Pj



2) After signUp , confirm Your account with link sent on Email .

3) Now LogIn to Your account

4) Go to Menu Named View ads and click there .

5) You'll see several ads there . You just have to click on these ads and watch it for certain time .

6) After watching all ads You'll see Your account balance growing .

WHY INCOME IS SO LOW >>>???

Most of the beginners in the ptc field left clicking ads seeing very few daily income ,, But wait ...

1) secret of earning money on ptc sites is referral .
2) In probux , You can earn good money from Your referrals .
3) Referral are workers who did work for you / who'll help you to grow your income

.EARNING STRATEGY :

1) patience is the key to success .
2) Click all ads everyday .

a) stay clicking until Your account balance reaches 60 cents .

b) After reaching 60 cents in Your account balance , rent Your first 3 referrals And enable autopay feature .
c) After renting 3 referrals You can make 60 cents in short time period than your first one .
d) After reaching each 60 cents / higher income in Your account , spend this money to rent other referrals ,

e) Rent referrals until You have 200 referrals . ( >100 for stable income)
f) After reaching 200 referrals your Income will be , (If your referrals clicked at least 4 ads )

$4.04 per day

$121.20 per month

$1474.60 per year

g) After having 70 $ in your balance you can upgrade Your membership to double Your income .

Thats all for now .. Good Bye ....

Need any help ??? Comment plz...

Friday, April 4, 2014

How To Earn Money Online ?

Links to Earning Money online related sites:


 

www.makemoneyonlineunfolding.com/

 

www.wikihow.com/Make-Money-Online


makemoneyonlinejgf.com/

 

www.dollarsincome.com/


make-real-money-online-w.blogspot.com/


internetmoneyguide-makingmoneyonline.blogspot.com/


make-money-work-online.blogspot.com/

 

cash-madness.blogspot.com/

 

allonlinemoney.blogspot.com/

 

howtogetemoneyonline.blogspot.com/

 

real-online-money.blogspot.com/

 

darkocravo.blogspot.com/

 

makemoneyhomeinfo.blogspot.com/

 

get-earn-extra.blogspot.com/

 

earning-formula.blogspot.com/

 

make-quick-cash-online.blogspot.com/

 

fast-money-online.blogspot.com/

 

liftalifta.blogspot.com/

 

weecash.blogspot.com/

 

wordpress.org/plugins/tags/make-money-online

 

makingmoneywordpress.com

 

googletwist.wordpress.com/2013/05/20

 

www.wikihow.com/Start-Making-Money-Blogging

 

nuyaludu.wordpress.com/

 

buxclub.com/

 

wpmoneyblog.com/

 

makemoneyonlineasap.org

 

cripperz.wordpress.com/2013/05/31

 

www.2createawebsite.com/money/

 

                 

www.moneysavingexpert.com/family/make-money-online

 

www.facebook.com/pages/Make-Money-Online

 

www.laurasecret.com/

 

www.netgooroo.com/

 

en.20dollars2surf.com/

 

azoola.com/

 

yourhowtomakemoneyonlinehub.net.au/

 

www.googleadvertise.com/

 

www.cashfiesta.com/php/cf_geteasycash.php

 

twitter.com/succeslife

 

www.my4hrworkweek.com/142-ways-to-make-money-online/

 

howtomakemoneyonlinegs.weebly.com/

 

www.makemoneysecret.net/

 

easyfastmakingmoney.blogspot.com/

 

www.rsisystems.com/

 

www.incomediary.com/top-earning-blogs

 

blogsuccessjournal.com

 

www.copyblogger.com/no-money-blogging/

 

www.online-blogger.net/

 

wealthmissionpossible.com/make-money-online-blogging/

 

www.problogger.net/make-money-blogging/

 

christianpf.com/how-to-make-money-with-a-blog/

 

  www.johnchow.com/

 

 

 

 

good bye....                           

HOW TO RECORD DESKTOP JUST USING VLC MEDIA PLAYER

Hi guys , welcome to my next post . In this post i am going to show you something new , that is "Using vlc as a desktop recorder " . you can use vlc media player for desktop recording process and making video from it . This is extremely useful for making video tutorials   . lets start,

1) Open VLC media player
2) Click CTRL+C or go to open capture device
3) Now Go to capture mode drop down and select desktop
4) In options field select your desired frame rate , more the framerate more the quality of video and size . For normal select 5-10 and for HD video select >20 framerate.

5) Now click On play .
6) Go to Lower panal Of vlc and Hit Record button .
* To enable record button go to View Menu and click on advanced controls .
7) minimize Vlc and start your process . Your desktop is recorded right now . After finishing process Again click on record button to stop Recording .

8) Close VLC media player .
9) Go to my documents folder to get Your newly recorded video.
10) The size of video is extremely large . So you need to convert It . Use any video converter . You can also use Vlc itself as a converter .

Thanks for visiting this post . For More tips tricks and articles visit again .

DOWNLOADING YOUTUBE VIDEO JUST USING VLC

You can use vlc media player to play, stream and download  videos From Youtube and other media sites . Here i am going to show You how to download Youtube video just using VLC media player , and your browser .

 
1)
First open VLc media player
2)
Go to Media->open network stream
3)
Paste the URL of youtube video page and click play .
4)
Once vlc starts streaming video Go to Tools->codec information .
5)
From the location bar copy the URL and paste it into the download managers or browser window .
6)
Your download will now started automatically .you can also record video in this way if you not want to download .

In this way you can download any youtube video just using vlc . There are many tools available to download youtube videos but This trick is useful when you donot have any download tools .
Thanks for reading . Good Bye .

HOW TO CONVERT ANY VIDEO TO MP3 JUST USING VLC MEDIA PLAYER

Hi guys, in this post i am going to show you how to convert any videos to mp3 just using vlc media player . You know that Vlc is one of the best multimedia player of the world , But its not only a multimedia player . we can also use it as a converter software .
lets see how to convert videos to mp3,

1) Open Vlc media player
2) Go to Media menu and click on convert/save Option or click CTRL+R

3) In File Tab click on Add Button and add the video which you want to convert to mp3

4) Now click on convert/save Menu on lower right corner

5) The convert window will be displayed . Now go to settings field and select Audio-Mp3 profile .

6) Now Go to destination field and browse the destination folder where you want to save your mp3 . In File-name Field Type yourmusicname.mp3 . And click save.
* Donot forgot to save in extension .mp3

7) Click On start Button . Now YOur video is coverted to Mp3 .
Go to destination to browse Mp3.

Thats all step needed to convert video to mp3 using vlc.

Good Bye . For More posts donot forgot to visit me again.

SOME COOL TIPS TO SAVE / INCREASE CELLPHONE BATTERY LIFE

SOME COOL TIPS TO SAVE / INCREASE CELLPHONE BATTERY LIFE

Hi friends ! Today i came up with some cool tips to save/increase the battery life of our cellphone . As cellphones are the integral part of our life , we need to know How to take care of it .Battery is one of the most Important part of cellphone . We need to care it properly , if we wish to have our cellphone working Well .
lets start , hope you'll find these tips useful ..

Tips to save battery :

- Use flight mode if you do'not need to use networks
- Turn off phone's back light .
- Turn off vibration , it takes more power .
- Disable unnecessary background processes . Exit the programs properly after using it .
- Limit your talk time
- Use GSM/2G rather 3g . 3G eats up too much power than GSM/2G .
- Turn Off wifi , Bluetooth , infrared when you do'not need it .
- Turn brightness to lowest possible . it also helps to avoid eye strain .
- Avoid using animated wallpaper in background .
- Use black background instead of colourful/white  one.
- Keep battery cool .
- Use battery saving Option .

Tips to increase battery life :

1) Always use mobile Phone's default charger to charge it . Do'not use other Non - trusted chargers even if it fits well .

2) Do'not follow the method of full charge and full discharge . Li-ion batteries are designed to charge early and often so follow this order .

3) Do'not charge the batteries for long time . Unplug it after charging completed .

4) Do'not Use mobile phone too much while charging .
5) Avoid using the cellphone while its too hot .
6) Always charge battery with stable power source .
7) Never join any metals to conductor terminal of battery .
8) If your cellphone has battery saving option use it .
9) Remove dirt's Of battery container .
10) Do'not place your battery in hot place . It will degrade the battery life quickly.

Thanks for visiting . Good bye . Please Comment If you have anything to say .

HOW TO BLOCK ANNOYING ERROR MESSAGE IN YOUR WINDOWS

HOW TO BLOCK ANNOYING ERROR MESSAGE IN YOUR WINDOWS

HI friends , Today i am going to write about how to block annoying error message in your windows . Most of the windows users are familiar with error message as they face it many times .
some error messages are not so annoying as they just go away with some click but there are also next type of error messages which are very difficult to remove and they annoy us very much . they occur repeatedly after each rebooting and not go away even after hundreds of clicks . lets start to know how to block these annoying error messages ,

1) Go to start menu and search regedit . Now choose regedit form search results and open it .

* If you are not experienced user of registry its better to backup registry before doing any change . for this Go to file menu and click on export and save it .

2) Go to HKEY_LOCAL_MACHINE/ SYSTEM / CURRENT CONTROLSET / CONTROL / WINDOWS .

3) Now click on errormode and change its value from 0 to 2 .

4) click Ok . And Exit the Registry editor .

This will save your modification in registry . You Need To restart your pc to get effect . This registry tweak blocks error notification service and error messages which are originated from windows native system .

Thanks for visiting and good bye .

How much you know about google ?



 

- The name google was derieved from the term googol which is the mathematical term means 1 followed by 100 zeroes .

- Google's central office is Located at mountain view, california .

- Google has become so popular that its name is often used as a verb; to “google” something means to search for it on the Internet.

- Google was founded by computer scientists Larry Page and Sergey Brin, who first met in 1995 at Stanford University in California .

- Their first search engine technology made at stanford was named BackRub, named for its ability to analyze the “back links” pointing to a given Web site .

- After impressing potential investors with their developing technology, Page and Brin incorporated Google Inc. on September 7, 1998 .

- Their first office space was a spare room in a house in Menlo Park, California, which they entered through the garage.

- By late 1998 Google’s search engine could answer 10,000 search queries per day.

- Google became a publicly traded company in 2004.

- As of 2006 Google ranked as the world’s most comprehensive search engine, providing Web searches in more than 100 countries

- google is now providing more than 10 services like search , translate , code , blogspot etc .

HOW TO BLOCK ANNOYING ADS IN YOUR BROWSER

Are you tired from Annoying ads ? Check it out . After reading this post you'll able to browse sites in ads free enviroment .


FOR CHROME USER:

-> click on this link chrome.google.com/webstore/detail/adblock/gighmmpiobklfepjocnamgkkbiglidom?hl=en-US

or

chrome.google.com/webstore/detail/adblock-plus/cfhdojbkjhnklbpkdaibdccddilifddb?hl=en-US



-> Click on blue button named +Free

-> In next pop up box click add

-> MAke appropriate settings in the redirected page .

-> Now you'have done

To disable it :


Go to settings -> Tools -> Extensions -> adblock plus -> click on enabled Checkbox or g0 to // chrome://extensions/



FOR FIREFOX USER :

-> click on this link addons.mozilla.org/en-US/firefox/addon/adblock-plus/

-> click on install button at end of page

-> Now you are redirected to adblock plus page , set Malware Blocking ,Remove Social Media Buttons ,and Disable Tracking to ON mode if you want .

-> Now you'have done.


TO DISABLE IT :

Go to tools menu -> Add ons ->Adblock plus -> disable .

thanks . any comments ?

SOME BEST SITES TO VISIT IN SPARETIME

Hi friends today i am Going to write a new post named " SOME BEST SITES TO VISIT IN SPARETIME " , Here I'll discuss some best sites which YOu can visit in Your sparetime . These sites are Educative , Informative and interesting too .



1.www.hubpages.com :
collection of high quality articles written by thousands of writers from various parts of globe . Go to this site and start exploring the subject of your interest . You can also earn money by writing articles yourself.

2.www.wikihow.com :
ultimate collection of how to articles , learn new things with each clicks

3. www.explainthatstuff.com :

Best website to learn how the various stuffs like calculator,computer etc works. , Everything explained in easy way .

4.www.fmylife.com :

your everyday life stories , Interesting to read .

5. www.about.com :

informative articles on various subjects


6. www.banoosh.com :

Hot news update and analysis From Broad sense


7.http:// www.reddit.com :

links to thousand of articles ,choose what you like , You can also promote Your posts there


8. experienceproject.com :

share your feeling which you can't share in other Social media

9.howtostudy.org :
An Ultimate Education search portal


Thats for now . Thanks for reading and Good bye .

SOME COOL GOOGLE TRICKS YOU MUST KNOW :: PART 2

In this trick series I am going to talk about ,

HOW TO SEARCH SPECIFIC DOCUMENTS OR FILES IN GOOGLE



Sometime you need to search only pdf documents or presentations or any other specific files .
In this case you may search like this ;

Electronic device pdf

But it's the wrong way of searching pdf documents .
This method will gives also non pdf documents in your search result .

to search only specific documents you have to search like this,


filetype: pdf Electonic device

Now press search ,

tHIS METHOD WILL GIVES YOU ONLY PDF DOCUMENTS IN YOUR SEARCH RESULT .

More examples ::

To search presentations or shows search like this ,

filetype : ppt Title

This will gives only presentations in your search results .

To search shows search like this ,

filetype : pps Title

To search word documents search like this ,

filetype : doc title

Note :: Always use small letters .


DO YOU LIKE THIS POST . PLEASE COMMENT ..
I will come back with next parts later .

SOME COOL TIPS TO MAKE YOUR COMPUTER FAST

Here I am going to talk about some cool tips which can really helps you to make your computer faster than now .

1) MAKE YOUR PC VIRUS FREE

-> viruses are the number 1 agent which degrades the speed of your computer . so make your computer virus free by installing up-to-date antivirus . There are so many free antivirus available , you can download them freely.

2) Clean registry errors

-> registry errors are the next agent which slows down your computer speed . so clean the registry of your pc time to time . For this install the best utility named tune up utilities , and clean the registry with tune up registry cleaner which came packaged with tune up utilities.

3) Optimize registry

-> Unoptimised registry can also degrade the speed of your computer so optimize your registry in time to time . Use tune up registry optimizer for this .

4) Defragment hard disk

-> Undefragmented hard disk increase the disk access time hence slowing down overall speed . so defragment your hard disk over a certain monthly periods . Use tune up disk defragmentor for this .

5) Do not add many applications in startup list

-> placing a large no of startup applications can also increase the opening delay of your pc hence slowing down speed . so do not place unnecessary apps in the startup list . use tune up startup manager and startup optimizer for this purpose .

6) Do not install 2 antivirus program

-> Installing more than 1 antivirus program in single pc can highly decrease your computer speed so never install 2 antivirus program in your pc .

7) Do not make your desktop heavy

-> do not fill your desktop with unnecessary files , it'll slows down refresh speed .

8) Uninstall unnecessary programs

-> Un-installing unnecessary programs helps to increase your computers speed .

9) Do not use heavy skin-packs

-> Using heavy skinpacks can slows down your computers speed , skinpacks consume More RAM , CPU and hence more power . It also degrades system speed . For laptop Heavy
skinpacks is not recommended . Video wallpapers can also degrade computer speed .

10) Make your system UP-TO-DATE

-> UPdate your system regularly to make it fresh .

11) Upgrade operating system

-> Use NEw operating system beside OLd one

12) Install new window/OS

-> If your computer is extremely slow and if all the above defined ways are failed than plz install new Operating system by formatting c drive .

13) USE Linux

-> Linux is free from most of the above defined problems so using up-to-date linux can help you to upgrade your computer performance.

14) Delete unnecessary files from Hard-disk

-> It helps to increase your explorer accessing speed .

Final tips :: install Tune up utilities which is the best tool to make your computer performance better . It comes with nearly all applications which can directly help you to build stable , and high performative system .

Other tips::

-Free RAM regularly
-Use linux
-Upgrade hardware

Thanks and good bye . Any comments ??plz.

AMAZING MATH :: Can you prove 1 = 0 ???

In this post i am going to prove 1=0 . lets start .


given , Our initial condition is a=b .

now , multiply both side by a , you'll get

a^2 = ab

now subtract b^2 from both side ,

a^2 - b^2 = ab - b^2

now factorize both of these ,

( a-b) (a+b) = b( a-b)

now cancel out (a-b) from both side ,

you'll get ,

a+B = b

now substitute b=a ;

2a = a

now cancel out a from both side ,


you'll get

2 = 1

now subtract 1 from both side

you'll get 1 = 0


Isn't it amazing ??? please comment where is mistake .

TOP 7 ALTERNATIVE MEDICINES

Hi guys Today i came up with new post named Top 7 Alternative medicines . Here i'll discuss about 7 these alternative ways of medicine which are mainly practised today .
.
Acupuncture:

Acupuncturists treat illness by inserting needles into the skin at particular points . These points lies along invisible energy channels known as meridians , which are linked to internal organs .These needles unblock , increase or decrease flow of energy to restore balance and health .

Aromatherapy:

The form of treatment uses highly concentrated oils extracted from plants . These oils can be used in massage , added to burns or inhaled .

Ayurveda:

The oldest system of indian medicine is ayurveda , from sanskrit word meaning "the science of life" . Remedies are mainly a plants to harmonize the balance between a patient and the basic influences of life such as diet , work or home life .

Homeopathy:

Homeopathy uses a Minute dose of a substance that , In large amount , Produces the same symptoms from which the patient is suffering . The aim is to simulate the body's defences so that they fight the disease .

Hydrotherapy:

Water , In the form of hot and cold baths or sprays is used in hydrotherapy to stimulate the bodys power to heal itself .

Osteopathy:

When the bodys framework is out of alignment than osteopaths can diagnose and treat disorders . They Use Their hand to massage and manipulate the joints to restore normal movement

Yoga:

This well known Hindu system combines physical , Mental and spritual health . The most common Form is Hatha Yoga , A course exercises and postures designed to
promote physical and mental well being . Yoga has been practised in india for thousands Of years .

Thats for now . Good Bye And Do'not forgot to comment which is Your best alternative .

HOW TO SPEEDUP PENDRIVE DATA TRANSFER RATE

Tired from slow data transfer in your USB drive of SD cards ? Check it out .
Using This trick You can really Enhance the data transfer rate of Your USB drive.
Data transfer Rate means how much data can be transfered from Your USB to computer or computer to USB per second .
MOre The data transfer rate more faster you'll transfer your data . Data transfer Rate Also depend on type of file which You're sending .
For example sending 100 mb of pictures take more time than sending 100 mb of Video/music . IN this post i'm Going to talk about speeding The general data transfer rate of your Usb .

step 1)
On windows explorer , Go to removable drives and select format By right clicking Your desired Drive .
step 2)
Change the Filesystem of USB to NTFS .
step 3)
Uncheck Quick Format and press start .
step 4)
Again right click the pendrive and click properties.
step 5)
Go to hardware tab and select pendrive from hardware list . Again click on properties .
step 6)
Go to policies tab and Check the radio button named Better Performance and click Ok.
step 7)
Done . Now You'll find enhanced data transfer rate in Your USB .

Good Bye .

To Speed up Computer and internet check this Out .

Difference Between Friend and best friend

All Of us have friend , But Not all friend are best friend . Some people are so lucky that they are able to make many Best Friends Throughout their Life .
In this Post I'm Going To discuss about some difference Between Friend and Best friend . Using This Methodology You can distinguish Who is Your Best Friend and who

is Just Friend .

Friend : Call Your father or mother mr./.mrs
best friend : call Your Father and Mother Mom Dad
Friend : Can't see You crying
Best Friend : Give His/her soulder to way
Friend : Ask Your Phone Number and Copy It
Best Friend : Ask And Remember In mind
Friend :Use Your Things and return Back
Best Friend : Use it and take with Them
Friend : When You visited or travel somewhere and tell in Phone where You are
Best Friend : Tell You "miss You" and go travelling with happily
Friend : don't Know all things about You
Best Friend : Make Your Life's Biography
Friend : If any Thing is happen in Road & left YOu side and go ahead to look That
Best Friend : Always Behind You
Friend : Ask What You want To eat
Best Friend : Don't ask you and make him/herself For You


Now learn To find BEst friend or friend ..! Comment Please .

HOW TO LOCK FOLDER OR FILES WITHOUT ANY APPS



 

HI guys today i'm going to show you something special that's locking your folder and files without any software . Using this simple trick You can lock Your files and make it in-accessible for Others .


lets start:

1) Go to folder/file You want to lock
2) Right click in it and go to properties
3) Now Go to security Tab
4) In security tab Go to Edit tab
5) In security window select Group or username
6) Click on deny checkbox
7) Click apply and click Ok .

That's so simple , Now You can't Open This Folder so easily .
You can unlock this folder again using same trick - just click on allow tab beside deny tab .

note : People who donot know this trick can never unlock this folder so easily , If you know the trick You can unlock it easily . We can say - use this only if there are no any computer Geek in Your family or in Your circle . For example I can use it in My home computer because No-one knows this trick.

if You donot see security tab in properties than ,

make shortcut of files / folder at any place .
You'll see security tab there .
Apply this trick To this shortcut .
Reapply This trick To original folder .



If You want free software to lock folders use the tool named unique folder lock .

I'm also currently programming folder locker . I'll Give you a link after completion .

Thats for Now . NIce to meet YOu .