Showing posts with label new software. Show all posts
Showing posts with label new software. Show all posts

Sunday, June 11, 2017

USB Hidden File Recovery

The best and easiest way to recover hidden files in your removable disk is here,

806bb3add7753e0924b487a99c8537735d64caf1
If your USB drive is already infected by most common shortcut virus and your files are hidden this is the easiest way to recover the from being hidden.


How to Use:

First install the download(from above link) and install the software.

Open USB file recovery 1.1 and choose your USB drive from the list



Click on the "Recover My Files" and it will take some time to recover files depending on the used capacity of USB drive.







After successful recovery you can open USB drive using "Open in Explorer" button or from windows explorer. 

And your files will be visible.


Compatible with Win 10, Win 8.1, Win 8, Win7 and below OSs

Note: Do not open unknown directories or files because this software does not remove virus files.

For Win 7 and below OSs dot net framework 4.0 is needed  

Tuesday, June 6, 2017

Desktop Shortcut Icon Remover

Use this software to remove shortcut arrow from icons in your desktop and have a nice look of your desktop.






Before using Shortcut Icon Remover




After 

Another Software Release from MyPC-Cabinet

Saturday, June 6, 2015

My Note

Here we are happy to announce that the new version of "my note" is available for you to download.

What's new 

The new version has a built in command prompt to execute your "Java " files easily.





















To view command prompt just select the type as "JAVA" in the drop down list from the tool bar.

For better viewing make "My Note" state to maximize other than normal.

Sunday, May 3, 2015

My Note – BETA


Description :


This is a notepad program developed by PC-Cabinet.
With this program you can write text files, HTML files, Java files, CSS ,Javascript ,Batch files and many more.


As this is BETA version errors and bugs are not totally corrected.


We will release our stable version shortly.


ClickHere to download My Note-Beta Version



ClickHere to download My Note-Beta Version zip file

Sunday, March 29, 2015

Getting started with JAVA programming

Getting started with JAVA programming 

 Are you new to java? If yes here is the way to become a java expert. How to install JAVA Development Kit on your computer 

 Step 1 

      Download java development kit from oracle. 

       Click here to download. (Use the images to get an idea)


Click on accept



Select your download type 64 bit or 32 bit 
and wait until downlaod complete.
Step 2
            After download complete run the setup.
Step 3
            Do not change install location and set it to be default
Step 4
            Wait until installation to be complete.
Step 5
           Now you have JAVA installed in your computer.

Step 6
           Then you need to set path to compile a java program. Here is the way.

Go to your java installed location. In my case it may be c:\program files\java\jdk1.7.0\ (may vary due to java version)

create a new folder named “My docs”.



Open that folder.
Now you are inside the folder named “My docs”
Now open notepad and type start and save it as “cmd.bat” in “My docs” folder.



Now go to c:\program files\java\jdk1.7.0\ bin (your may be vary)


Now copy the path in your address bar

if you are a window 8 user follow these steps;

  1. Drag the Mouse pointer to the Right bottom corner of the screen
  2. Click on the Search icon and type: Control Panel
  3. Click on -> Control Panel -> System -> Advanced System Settings
  4. Click on Environment Variables, under System Variables, find PATH, and double click on it.

  5. Now click on variable value field, put a ; at end of the value.

  6. Now paste copied path after the semi colon
  7. click on ok then again ok and ok.

Now go to c:\program files\java\jdk1.7.0\My docs
Now open CMD.bat file
Then type “javac” and press enter
If you get text like in the image below you are successful.


Now it is time to code java.

How to start java coding

Now you can start to code java. Here is an example
Open notepad .Type these text
class a1{

         public static void main(String args[]){

                     System.out.println("Hello JAVA");

        }

}
Now save this as "a1.java" in "My docs" folder.
Now open "CMD.bat" and type javac a1.java and press enter
Then if it was successful type java a1 and press enter.
Now in cmd you can see a text "hello JAVA".
Now do not close cmd keep it minimized and code some more java program.then save it.
Now again type javac and then type name of your saved java program with .java extension .
Then type java and  saved java program and press enter.


-------------------------------------------------------------

RECOMMENDED BY AUTHOR