Tuesday 28 August 2012

Lock Folder without any Software

1 comments



Sometimes you have been asking for an alternative way to lock folders without the use of any alternative software. It’ll 5 steps ahead only, check now!


Steps:

1) In Notepad copy the code below.
2) The default password is “paragtyagi”. Change your password in the code, where it shown as paragtyagi in yellow background. Password may be any combination of alpha or/and numeric.
3) Save this file as “locker.bat”.
4) Now double click on locker.bat.
5) It will create a folder named: Locker with automatic lock. After creation of the folder, place the contents (your files & folders) you wants to lock inside the Folder and double click locker.bat again. It will ask to lock the folder Y/N. If you press y then it will lock the folder and your folder will be hide. To unlock run again locker.bat, it will ask to enter password, type in correct password and you can see your folder back.
* Please don’t change anything except password, otherwise this lock may does not work.


************Code starts line below*************


cls 
@ECHO OFF 
title Folder Locker 
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK 
if NOT EXIST Locker goto MDMANNUFORALL 
:CONFIRM 
echo Are you sure to Lock this folder? (Y/N) 
set/p "cho=>" 
if %cho%==Y goto LOCK 
if %cho%==y goto LOCK 
if %cho%==n goto END 
if %cho%==N goto END 
echo Invalid choice. 
goto CONFIRM 
:LOCK 
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
echo Folder locked 
goto End 
:UNLOCK 
echo Enter password to Unlock Your Secure Folder 
set/p "pass=>" 
if NOT %pass%== paragtyagi goto FAIL 
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" 
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker 
echo Folder Unlocked successfully 
goto End 
:FAIL 
echo Invalid password 
goto end 
:MDMANNUFORALL 
md Locker 
echo Locker created successfully 
goto End 
:End


**************Code ends line above***************

Continue reading →

ImTOO Video Converter Ultimate 6.8.0.1101: Download + Licence Code

3 comments


About:

ImTOO Video Converter Ultimate is best video converter program that can easily and quickly convert between HD videos like H.264/MPEG-4 AVC, AVCHD (*.m2ts, *.mts), MKV, HD WMV, MPEG2/MPEG-4 TS HD Video, convert videos from HD to SD, convert general video formats such as AVI, MPEG-4, WMV, DivX, H.264/AVC from one to another, extract audio file or pictures from video, and even create video from pictures.


Features:

• Convert between AVI, MPEG, WMV, DivX, MP4, MKV, MKV (Dual-Audio).
• MPEG-4 AVC, RM, MOV, XviD, 3GP, FLV, etc.
• Extract audio from video: MP3, WMA, WAV, RA.
• M4A. Convert between various audio formats.
• Extract pictures and create video from pictures.
• High-Definition (HD) video encoding and decoding.
• Clip and merge video clips.
• Multiple video effects available.
• Convert video and audio for iPod, iPhone, Apple TV, Xbox 360, PSP, PS3, NDS, Wii, BlackBerry phone, iRiver, Creative Zen and other multimedia devices.


Steps:

1) Download ImTOO Video Converter Ultimate 6.8.0.1101

2) Install it.

3) Finally, enter Licence Code. (*You can use any User Name)

    Licence Code: 111111111101234567892E1E-E2A7-7AEF-CCDB


4) You're done.


Continue reading →
Monday 27 August 2012

HTML Forms: Using "div" tag instead of "table" tag

2 comments




Name:
Age:
Shoe size:
Comments:



The CSS looks like this:      



div.row {
  clear: both;
  padding-top: 5px;
  }

div.row span.label {
  float: left;
  width: 100px;
  text-align: right;
  }

div.row span.formw {
  float: right;
  width: 235px;
  text-align: left;
  } 
div.spacer {
  clear: both;
  }







The HTML looks like this:




<div style="width: 360px; background-color: #ccc;
border: 1px dotted #333; padding: 5px;
margin: 0px auto;">
  <form>
    <div class="row">
      <span class="label">Name:</span>
      <span class="formw"><input type="text" size="25" /></span>
    </div>

    <div class="row">
      <span class="label">Age:</span>
      <span class="formw"><input type="text" size="25" /></span>
    </div>

    <div class="row">
      <span class="label">Shoe size:</span>
      <span class="formw"><input type="text" size="25" /></span>
    </div>

    <div class="row">
      <span class="label">Comments:</span>
      <span class="formw">
        <textarea cols="25" rows="8">
        Go ahead - write something...
        </textarea>
      </span>
    </div>

  <div class="spacer">
  &nbsp;
  </div>
 </form>

</div>




Continue reading →