Pages

Saturday, May 14, 2016

The House Of Magic v1 0 Full


The House of Magic 
Explore exciting 3D environments and play 5 highly challenging games! Will you succeed in finding all the puzzle pieces?
Time to play! 
Go on an adventure in the rooms of the house and meet Lawrence’s little automatons, 
Help them in their daily tasks by playing fun, brand new games. 
You will fly with Twiggy around a tree, visit the house’s foundations to switch the power back on, follow cooking recipes with Chef, or sink into Stomp’s dreams to help him save his gum balls!
Original pictures from the movie.

Unlock levels within the games and make new characters appear. Clara, Twiggoo, Ding and Grammy will offer you riddles to help you find the lost puzzle pieces. You will have to keep your eyes open for the 60 pieces hidden in the set! Finish one of the 10 puzzles to discover a unique picture from the ‘House of Magic’ movie.
Achievements and trophies.
Unlock 50 achievements and 35 trophies. The house will fill up with objects that might hide a new piece of the puzzle. 
Will you be successful enough to win a painting of one of the movie characters, or a golden trophy for the very best?
A game for the whole family.
Create a profile for each member of your family. You will be notified of who has the highest score. Share the little gears and the game’s currency, and purchase add-ons to play further and win faster.
Sets from the movie!
Visit the garden, the great Hall, the living room, the kitchen and the cellar. Discover elements from the ‘House of Magic’ movie.
‘The House of Magic’: Demo – Visit the house freely. You can access the first level of each game. Add-ons are not available in the demo version of the game.
‘The House of Magic’: Purchase options:
Access the purchase screen in the app and choose one or several games you would like to upgrade. You can also benefit from a discount when you buy the 4 games pack.

Read Here: How to Install APK

Requirements: Android 2.3.3+
File Size: 190 MB
Download Link: APK + OBB or (APK+OBB)
Read More..

FarmVille 2 Country Escape Unlimited Golden Keys Android Game Moded


Salam Blogger :)
Duh lagi sibuk nih jadi ga sempet update, oke pada kesempatan kali ini ane mau share game mod lagi. dan doa kan semoga liburan ini ada free banyak utk update blog. kali ini ane mau share game casual, yaitu FarmVille 2 . pasti udh pada tau game ini kan? oke dan ini sudah di mod golden keys nya. :) Ayo jadilah petani yang sukses :D

Details Game: 
Name      : FarmVille 2 Country Escape
Genre      : Casual
Platform  : Android 
Requires  : Android 2.2  and up

Modification on Game: 
- Unlimited Golden Keys


Review Modif:

Screenshoot:



Tutorial Instal : 
1. Download game. 
2. Pindahkan Game ke Androidmu.
3. Uniinstal Version originalnya, jika ada.
4. Instal MOD apk & Play
5. Enjoyyy 


|DOWNLOAD|
FarmVille 2 Country Escape - Unlimited Golden Keys[Android Game : Moded]

|Download Original game|
On Playstore

#Salam Blogger
#Semoga bermanfaat :)
#Ask? comment :)
Read More..

Android Text Controls

Text controls include:

1. TextView.

2. EditText

3. AutoCompleteEditText

4. MultiCompleteTextView

TextView
The TextView represent an un-editable text. It resembles the Label control in C# or ASP.NET but it has an interesting feature which is the ability to highlight the text if its is an URL, an e-mail or a phone number so that when the user clicks on the textview the default intent whether it is the web browser or the dialer launches
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>
<TextView
android_layout_width="fill_parent"
android_layout_height="wrap_content"
android_text="Visit Http://www.android-pro.blogspot.com"
android_autoLink="web"
android_id="@+id/txtURL"
/>

<TextView
android_layout_width="fill_parent"
android_layout_height="wrap_content"
android_text="Dial 1 650-253-0000"
android_autoLink="all"
/>
</LinearLayout>


you can see that the TextViews containing URLs or Phone numbers are highlighted, and when the user presses on them the default intent (the browser or the dialer launches)


this is done by using the property android:autoLink which can have the values:
web, email ,phone, map
or
All
this can be achieved from code by using the following code:
TextView txtURL=(TextView)findViewById(R.id.txtURL);
Linkify.addLinks(txtURL, Linkify.ALL);

EditText
The EditText is a subclass of the TextView it is like the TextBox in C#. it enables users to edit text.


We can use the autoText property to make the EditText to correct the common spelling mistakes.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoText="true"

/>
</LinearLayout>



We can use the capitalize property to make the text capitalized like this:
<LinearLayout 
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:capitalize="characters"

/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:capitalize="none"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:capitalize="words"
/>
</LinearLayout>



we can use the password property to make the control accepts phone numbers input:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:password="true"

/>

</LinearLayout>



We can enforce the Control to wrap all the text in a single line by setting android:singleLine property to true.

AutoCompleteTextView
The autoCompleteTextView is an EditText with auto complete functionality. The auto complete functionality can be achieved by attaching an Adapter with the auto complete values to the control like this:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>

<AutoCompleteTextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/act"

/>

</LinearLayout>



Then attach the adapter from the code like this:
AutoCompleteTextView act=(AutoCompleteTextView)findViewById(R.id.act);
ArrayAdapter arr=new ArrayAdapter(this,android.R.layout.simple_dropdown_item_1line,new String []{"Hello","Hi","Alloha"});
act.setAdapter(arr);

in a search program for example you can obtain the auto complete words from a web service and populate the adapter with these words.

MultiAutoCompleteTextView

The AutoCompleteTextView can suggest auto complete for the entire text in the control, meaning that if you type more than one word it would try to match the whole sentence not the single words.
The MultiAutoCompleteTextView works the same way as the AutoCompleteTextView except you can add a Tokenizer that parses the text and allows you to suggest where to start suggesting words like this:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>

<MultiAutoCompleteTextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/act"

/>

</LinearLayout>


then from code:
MultiAutoCompleteTextView mact=(MultiAutoCompleteTextView)findViewById(R.id.act);
ArrayAdapter arr=new ArrayAdapter(this,android.R.layout.simple_dropdown_item_1line,new String []{"Hello","Hi","Alloha"});
mact.setAdapter(arr);
mact.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());

The tokenizer tells the control to start suggesting for words separated by a comma.
Read More..

Android Intents part 1

In this post we are going to explore the concept of intents in Android.

Intents are used by an application to interact with the phones hardware components or other applications, or to start a service or activity with a certain peice of data or to broadcast that an event has occurred.

Using Intents to launch phone activities:
we can use Intents to launch the phones basic activities such as the phone dialer, the browser or search.

these intents are called implicit intents cause you dont specify the activity you want to launch, rather Android determines the proper activity to launch based on the required action. also when the launched activity finisheds its work, the original activity has no information that the launched activity has finished its work

in this example we create an intent that performs a phone number dial action. we don not specify that we want the dialer activity to launch, rather we specify that we want to dial a number and Android launches the dialer activity to perform this action

consider this activity: consists of a TextView and a button to dial the number in the text view.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android_orientation="vertical"
android_layout_width="fill_parent"
android_layout_height="fill_parent"
>
<TextView
android_layout_width="fill_parent"
android_layout_height="wrap_content"
android_text="Enter the phone number"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/txtNumber"
android:inputType="phone"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Dial"
android:id="@+id/btnDial"
/>
</LinearLayout>




When you press the button the phone dialer launches and then you can call the number.
this is done using the following code
btnDial.setOnClickListener(new OnClickListener() {

public void onClick(View v) {
// TODO Auto-generated method stub

Intent dialIntent=new Intent(Intent.ACTION_DIAL,Uri.parse("tel:"+(txtNumber.getText()).toString()));

startActivity(dialIntent);
}
});

notice that the dialer has been launched but the user has to press the call button to make a call.



if you want the phone to dial the number autom atically you could have used this intent
Intent.ACTION_CALL
but this requires ading the following permission to the manifest file:
<uses-permission android_name="android.permission.CALL_PHONE">
and that was how to launch the phone activities using intents.
for a list of available phone actions, check this link
Read More..

Friday, May 13, 2016

Galaxy on Fire 2 Full HD Cracked Valkyrie for ANDROID

DOWNLOAD Galaxy on Fire 2 Full HD Valkyrie for ANDROID

 

 

Klik video diatas untuk melihat trailernya.








Full Cracked Version!

Pastikan anda tersambung dengan internet saat menginstall game ini di Android anda!
Wi-Fi recommended!


Read More..

DEAD TARGET Zombie Unlimited Money Gold Android Game Moded


Salam Blogger :) 
Selamat malam gan, selamat istirahat. karena besok libur jadi masih bangun nih dan bsa update blog. kali ini ane mau share game mod lagi. Game ini masih bergenre shooting yg objek musuhnya adalah zombie, ane jg masih bingung kenapa zombie lagi zombie lagi yg jadi sasaran tembaknya. haha. oke cek it gan : 

Details Game: 
Name      : DEAD TARGET: Zombie
Genre      : Action, Shooting
Platform  : Android 
Requires  : Android 2.3.3  and up

Modification on Game: 
- Unlimited Money
- Unlimited Gold


Review Modif:


Screenshoot:


Tutorial Instal : 
1. Download game. 
2. Pindahkan Game ke Androidmu.
3. Uniinstal Version originalnya, jika ada.
4. Instal MOD apk & Play
5. Enjoyyy 


|DOWNLOAD|
DEAD TARGET: Zombie - Unlimited Money&Gold[Android Game : Moded]

|Download Original game|
On Playstore

#Salam Blogger
#Semoga bermanfaat :)
#Ask? comment :)
Read More..

My Moviestar Venuce Mod Money Cash Android Game Moded


Salam blogger :)
Malem ini lagi-lagi ane mau share game yg sudah di mod, game PC nnti nyusul yaak. oke game ini bercerita kita adalah sebuah movie star yg ingin mengalahkan saingannya. dengan semangatnya dia berjuang dari 0. dia mulai belajar acting, belajar berpakaian, dll. Game ini char cewe nya cute kalo menurut gua, yaa lumayanlah buat cuci mata, hehe.. dan game ini jg bisa di connect ke FB kalian. oke langsung aja lah yaa cek it:

Details Game: 
Name      : My Moviestar: Venuce
Genre      : Casual
Platform  : Android 
Requires  : Android 2.2  and up

Modification on Game: 
- Mod Money [selesaikan tutorial dan kamu akan mendapatkan 8M Money]
- Mod Cash  [selesaikan tutorial dan kamu akan mendapatkan 8M Cash]


Review Modif:

Screenshoot:



Tutorial Instal : 
1. Download game. 
2. Pindahkan Game ke Androidmu.
3. Uniinstal Version originalnya, jika ada.
4. Instal MOD apk & Play
5. Enjoyyy 


|DOWNLOAD|
My Moviestar: Venuce - Mod Money&Cash [Android Game : Moded]

|Download Original game|
On Playstore

#Salam Blogger
#Semoga bermanfaat :)
#Ask? comment :)
Read More..

Pool Break Pro v2 3 4 Full

Pool Break is a suite of games featuring several variations of Pool, Snooker, and the popular Crokinole and Carrom board games. The full 3D graphics are spectacular and the physics are realistic and accurate. Whether you play against the computer or against other Android, iPhone or iPad users online, the action is smooth and fast paced!
????? BEFORE PURCHASING, TRY POOL BREAK LITE
----------------
NOTE to user of some older devices (like the Galaxy Y):
If you are seeing a black screen after starting a game, please press the menu button and go to General Settings. Disable "True Color Rendering" as well as set Render Quality to "Low" or "Basic". Then exit the game and start again.
----------------
Ready for some realistic pool action? With a ton of games and lots of fast paced action, Pool Break will keep the most seasoned pro playing well into the night. Its realistic 3D graphics and linear shot guides help you line up your shot, modify the shooting angle, and see where your shot is going to land, making it easy to line yourself up for your next move.
You may also play against computer or in pass-n-play mode.
Pool Break Features Include: 
? Over a dozen games packed into one app 
? Supports Online Cross-Platform Multiplayer Gaming 
? Supports online chat 
? Play online with Facebook Friends (needs Facebook App)
? Play against the computer with four difficulty levels 
? Pass-n-Play mode 
? Very Realistic Pool and Snooker Physics 
? Pan and Zoom and Slow Motion modes 
? Free View and First Person View 
? Regular or Hexagonal tables 
? Allows Curve and Masse shots and full English 
? Intuitive User Interface 
? Built-in Help Manuals explain how to play 
? View statistics and achievements
? Hours of fun
If youve ever thought about playing pool or Snooker on a real table, Pool Break is the perfect way to try a variety of games and pick your favorite. Use Pool Break as a recreational game, or use its dead-on, real life graphics and geometry to help improve your skills for league night. With place and play and pool drill games, this is the perfect app for tweaking your game, and practicing those tricky shots that require nerves of steel.
So what do you get with this app? Over a dozen games, including two popular board games played with discs and enough cue-games to keep you busy.
Pool Break Games Include: 
? US 8-Ball Pool 
? UK 8-Ball Pool 
? 9-Ball Pool 
? 10-Ball Pool 
? 3-Ball Pool 
? 6-Ball Pool 
? One Pocket Pool 
? Straight or 14.1 Continuous Pool 
? Three-cushion Billiards 
? One-cushion Billiards 
? Pool Drills 
? Place-n-Shoot Pool 
? Regular Snooker 
? Snooker 6-Reds
? Snooker 10-Reds 
? Carrom (three board styles) 
? Crokinole board game
Feeling competitive? Choose head to head action with the pass-n-play feature, even more intense competition against the computer, or go online for some cross-platform action with other players. With 4 different difficulty levels to choose from, youll go from a novice to a seasoned professional in no time. Dont get Snookered! Download Pool Break now rack up some serious fun! Its your break!

Whats New
2.3.4
---------
? New Scenery
? minor bug fixes
2.3.3
---------
? Fixed Flashing Balls issue (Change Render Quality to Basic or Very High)
? Fixed issue in Carom Billiards
? minor bug fixes
2.3.2
---------
? Fixed issue with Resume Last Game

Read Here: How to Install APK

Requirements: Android 2.3+
File Size: 6 MB
Download Link: Mediafire
Read More..

Minecraft 1 7 2 The Update that Changed the World Updated! Free Direct Download for PC

minecraft
Minecraft Screenshot

Minecraft 1.7.4

Thanks to: TeamExtreme for the Launcher

 

  Click here to view new version: 1.7.4

 

 


First, you will need to install Java Runtime Environment. Click here to download.


Update: Pre-release 1.7.2 has been released to address some serious crashes, including the inability to start on some Linux computers.
It feels like we’ve been working on this for a year now, with more than half a million lines of code changed over 1,104 commits we’ve been working extremely hard on this update. We’re calling this one “The update that changed the world”, because it really has in two different ways; there’s over twice the amount of ingame biomes, and we’ve overhauled lots of the code preparing for the plugin API.
Here’s a list of cool things that may be coming your way on Friday, if the pre-release goes well!

Read More..

Android Developers Backstage Episode 9 Design

Tor and Chet make a startling break with ancient tradition and talk to a real, live designer in this episode: Christian Robertson from the Android User Experience team. Tune in to hear about the Roboto font that Christian created and about font design in general, plus design tips for layout, visual rhythm, and other Android designities.

Design: Its the new Develop.

Relevant links:
Android Design: https://developer.android.com/design/index.html
Android Style Guide: http://developer.android.com/design/style/index.html
Android Asset Studio: http://romannurik.github.io/AndroidAssetStudio/
Roboto: http://www.google.com/fonts/specimen/Roboto

Christian: https://plus.google.com/110879635926653430880/posts
Tor: google.com/+TorNorbye
Chet: google.com/+ChetHaase

Subscribe to the podcast in your favorite player or at http://feeds.feedburner.com/blogspot/AndroidDevelopersBackstage
Or just download the mp3 directly: http://storage.googleapis.com/androiddevelopers/android_developers_backstage/Android%20Developers%20Backstage%20Ep9%20Design.mp3
Read More..

Simple ListView Android Developer Tutorial Part 16

From exploring the various concepts related to fundamentals and to locations and maps, I would like to look at a few UI elements.


One of the simple views is a List View. In this post, I will explore a very simple list view using all the defaults provided by Android SDK and introduce you to a customized list view in the next blog article.

A List View, by name means being able to display a list of items in an order one below the other. For creating such a view, the first thing we have to do is extend the ‘ListActivity’ (android.app.ListActivity) instead of the normal Activity class.

So, here is how the class declaration should look:

public class MyListView extends ListActivity {
The ListActivity class provides a way of binding a source of data (an array or a cursor) to a ListView object through a ListAdapter.

In android, we all know that views are defined declaratively in XML files. It is the same here too. So, if we were to create our own custom ListView, we would have a declaration of this type:

<ListView android_id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000fff"
android:layout_weight="2"
android:drawSelectorOnTop="false">
</ListView>

However, if no ListView is declared, the ListActivity picks up a default ListView which fills the screen. So, in our example we will not declare any list view.

There is one more thing we need to define and that is how each row in the list should show up. This again, there are some defaults available which have names such as simple_list_item_1, simple_list_item_2, and two_line_list_item. So, in our example, I do not declare the layout for the rows but I will be using one of the defaults provided. So, in effect, I have not declared any layout – I am using the default screen layout and row layout.

Now, that we have the layouts out of our way, what else do we need for a List View. Of course, the list of data that needs to be displayed. Just to keep it simple, I will use an array of data for the same. So, here it is:

static final String[] PENS = new String[]{
"MONT Blanc",
"Gucci",
"Parker",
"Sailor",
"Porsche Design",
"Rotring",
"Sheaffer",
"Waterman"
};

Now, how do I bind this data to the default views described earlier? This is aided by a ListAdapter interface hosted by the ListActivity class that we have extended.

We need to use the setListAdapter(..) method of the ListActivity class to bid the two (data and view). Android provides many implementations of the ListAdapter. We will use the simple ArrayAdapter.

What does the ArrayAdapter expect?

It expects the context object, the row layout and the data in an array.

So here it is:

setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, PENS));
With this we are done in creating the ListView.

I have added a small piece of code to show we can handle events on selecting an item in the list, by overriding the protected method shown below:

protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Object o = this.getListAdapter().getItem(position);
String pen = o.toString();
Toast.makeText(this, "You have chosen the pen: " + " " + pen, Toast.LENGTH_LONG).show();
}

This toasts a message with the item selected.

The complete code is downloadable here.

Read More..

Plague Inc MOD for Android

Plague Inc MOD for Android


Can you infect the world? Plague Inc. is a unique mix of high strategy and terrifyingly realistic simulation.

Your pathogen has just infected 'Patient Zero'. Now you must bring about the end of human history by evolving a deadly, global Plague whilst adapting against everything humanity can do to defend itself.

Read More..

Android Developers Blog Can I use this Intent

We all know that the loose coupling provided by Android through intents is one of its most powerful features. It makes it possible for us to mix and match the use of activities between various applications as though they all belong to one.

However, when I want to invoke another application that has published an intent filter, I cannot always assume that the other application is available on the phone. So, I need to check its availability and then only enable the feature to call it.

This is very well explained in the link: Android Developers Blog: Can I use this Intent?

Read More..

Thursday, May 12, 2016

Hello Android

Now we’re going to explore our first Android application which will be the famous Hello World application. We are going to explain the structure of an Android application and some of the basic concepts wee must understand
  1. Open Eclipse and select from the menu File>New>Android Project, you’ll see a window like this.
  2. Now there are several fields that appear here they are:
    Project Name: The Eclipse project name, the name of the folder that will hold the project files.
    Application Name:The name of the application that will appear on the phone.
    Package Name: The package name space, it sould be in the form of [abc].[xyz].
    Create Activity: the name of the basic activity class of your application. it’s optional to create.
    Min SDK Version: the minimum API level required by the application. You see in the Build Target list there is a list of the available SDK versions to use for the application and in front of each one the corresponding API level. You must ensure that you application API level is supported b the device.
  3. Press Finish then press run and choose run as Android Application, the emulator will start, wait until the main screen appears, unlock by pressing the menu button then you should see something like this

    Notice: the emulator may take a long time to boot so please be patient.
  4. Now go to the package explorer on the left bar of eclipse to your project


    folder navigate to src/[PackageName]/HelloAndroid.java this is the main activity class of your application. It should be like this:
    package mina.android.helloandroid;

    import android.app.Activity;
    import android.os.Bundle;

    public class HelloAndroid extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    }
    }

  5. We will explain what each line in this code means later but now let’s understand what each folder in our project contains.
  6. The project contains the following folders



    Folder Name

    Description

    Required

    src

    Contains all the source code (class files) for the project

    Yes

    gen

    Contains the R.java class file

    Generated automatically

    Android 1.5

    Its name changes according to the sdk version you use (1.5 here). Contains the Android API class files packed in android.jar files

    Generated automatically

    assets

    You can place any external resources (text files,images,…) in this folder. It’s much like the res file except it’s more like the file system where you put files that you want to access them as raw bytes


    no

    res

    Contains resources for the application

    Yes

    drawable

    Contains the images required for you application. You can add your own image files to this folder

    No

    Layout

    Contains the main.xml file that defines the view that construct the User Interface of the application

    No

    Values

    Contains other resources that can be used for your application such as string resources, styles or colors

    No

  7. So that was a quick look on the android project structure, in this post we will take a deeper look on the hello Android application.

Read More..

Free Folder Lock

Semua orang memiliki beberapa file dan folder yang kita anggap pribadi. Mereka bisa apa saja dari dokumen bisnis kami untuk foto-foto teman-teman dan keluarga. Kita tidak ingin orang lain menggunakan komputer kita untuk mengetahui tentang file pribadi.Windows tidak menawarkan cara untuk melindungi informasi pribadi kita, kebanyakan dari kita takut ketika file ini ditemukan oleh orang yang tidak diinginkan.Kunci jendela folderTentunya, Anda dapat menyimpan informasi ini dalam folder tersembunyi. Satu-satunya masalah adalah bahwa siapa pun dapat dengan mudah mencari isi folder tersembunyi menggunakan Windows Search itu sendiri.Satu-satunya solusi yang layak adalah menyimpan konten ini dalam folder yang dilindungi sandi sehingga hanya orang-orang mengetahui password folder dapat mengaksesnya. Ada banyak program penguncian folder yang tersedia online tapi masalahnya adalah bahwa sebagian besar yang baik dibayar. Bahkan jika Anda berhasil mendapatkan satu gratis baik, Anda akan melihat curiga ketika orang melihat folder loker dalam daftar program yang diinstal Anda.

Jika Anda juga menemukan diri Anda dalam situasi yang sama, Anda dapat mencoba Folder Protector, pelindung password untuk folder Windows yang tidak hanya gratis, tetapi juga makna portabel yang tidak perlu diinstal. Cukup klik pada file exe dan program akan mulai berjalan. Saya telah menciptakan program ini didasarkan pada saran dan permintaan fitur yang saya terima melalui email selama dua tahun terakhir.Folder ProtectorFolder Protector menawarkan setiap pengguna folder yang dilindungi yang hanya bisa dibuka dengan memasukkan password di FolderProtector. Tidak seperti program keamanan yang paling, Folder Protector dalam ukuran kecil (hampir 58KB) dan tidak menunjukkan folder yang melindungi. Hal ini memberikan keuntungan tambahan bahwa orang yang tidak tahu password tidak memiliki target untuk mencoba dan hack cara mereka ke. Sebagai perangkat lunak yang portabel, Anda dapat menyembunyikan atau bahkan menghapusnya setelah melindungi folder Anda dan tidak ada yang akan memiliki petunjuk bahwa itu digunakan. Kemudian setiap kali Anda perlu untuk mengakses file yang dilindungi, Anda dapat kembali men-download program dari halaman ini, masukkan password dan mengakses file yang dilindungi Anda.

Read More..