Follow us on FB

Monday, March 3, 2014

How To Use Winrar For Creating Archive, Zip and UnZip Files

How To Use WinRAR For Creating Archive

First of all if you do not have winRare the Download it from internet .
After Downloading install it and follow these Easy Steps :
Compressing 3 PDF files and creating RAR archieve. Usually people use it for the larger files. WinRAR reduces the size of a file into RAR and ZIP file format.
1) Select the files which you want to compress and do a Right Click on the selected files. Choose ‘ADD TO ARCHIEVE’.
How to use Winrar for Creating Archive


2) New window will prompt.Choose RAR format

how to create archive in winrar

WinRAR GENERAL TAB


1)ARCHIEVE NAME:
a) ZIP extension(.ZIP)- can be opened with WinRAR and WinZip.
b) RAR extension(.RAR)-can be opened with WinRAR but not with WinZip.
2)COMPRESSION MODE: Choose always ‘NORMAL’.
3)SPLIT METHOD: leave it Blank now.
4)UPDATE MODE: Add and replace file.
5)ARCHIEVE OPTION: donot select any.

ADVANCED Settings TAB in WinRAR

Set the password if you want to make your file password protected.Remember your password if you forgot it there is no way to unZip it.
3) when you are ready to zip the file.Click ‘Ok’. WinRAR will start to compress .
winrar 03

How To Use WinRAR For Extract/Unzip/Decompressing

1) Right Click on the RAR or ZIP file anwinrar 04choose the ‘EXTRACT FILES…’
2) Extraction window will be prompt and select the destination where you want to unzip the file.
winrar 05
3)Click OK when destination is selected.Now WinRAR will start to UNZIPPING.
winrar 06

Sunday, March 2, 2014

SkyDrive / Onedrive File sharing

SkyDrive Overview:

SkyDrive Now Converted into OneDrive ........................
Gone are the days when you had needed  to carry a portable storage device like USB or any other external device with you for accessing your data on multiple devices from different places. Cloud-based storage technology has changed it all. Now you can store your data on virtual device without the fear of losing it.
SkyDrive Free Download
SkyDrive is an application launched by Microsoft for sharing your files in a very easy and rapid manner across numerous devices like PC, Mobile phone and tablets etc. Microsoft’s SkyDrive has been leading in the field of sharing files for almost 5 years now. It has been the automatic choice of users as its been developed by the world’s leading software giant i.e Microsoft. The company is polishing the application since its first launch and has added new features to make it more useful and efficient time and again.
SkyDrive Free Download software

All you need is a SkyDrive account. The moment SkyDrive is installed in your system you are capable of uploading the files of any size and format to the cloud system being provided by Microsoft. After your files have been uploaded you can access your files from any device and any place by using your SkyDrive account.
SkyDrive File Sharing software
This file sharing tool creates a smart SkyDrive folder on your PC. You can place your desired files in this smart folder. Once the files are placed in the SkyDrive folder in your system, these files are automatically uploaded to the cloud storage. These files then can be easily accessed from any of the devices with SkyDrive installed in them.
On a conclusive note we can say that SkyDrive is a dependable device for easy storage of your data. It is an easy to use application. With SkyDrive account in your arsenal you can feel safe about your data.
SkyDrive docs

Features of SkyDrive:

Lested below are some of the features which you will experience after SkyDrive Free Download.
User friendly.
  • Smart SkyDrive folder.
  • Drag and drop files for sharing.
  • Assessment of data from anywhere.
  • Data remain safe on virtual storage media.
SkyDrive storage

SkyDrive System Requirements:

Before you start SkyDrive free download make sure that you system meets the minimum system requirements.
  • Operating Systems: Windows XP/Vista/7/8
  • Processor: 1.6GHz Processor Pentium IV or higher
  • RAM: 1GB or higher
  • Hard Disk Space: 100MB
  • Windows Live Account.
  • High speed internet connection recommended.


how to create time delay in C++

Time delay in C++ means :
                                     Which you enter or gives input using Turbo C++  or dev , after compiling shows result as :
             
             Print Single letter then delay of few seconds and again show next letter of the word .
              The Uper Step do again and again till the string or pragraph end.
This is Very Simple and Easy mathod to create a time delay in C++ .
Every Step is explaned completely below .
Advantage :
There are few advantage of creating time delay in C++ as :
You can create introduction view in a uniqe style .

Creating game this is a very charming look .
After compiling print your result slow .
And many others .....................

Code of the Program :

#include <iostream>
#include <conio.h>
#include <string.h>
using namespace std;

void mydelay(int sec)            // Defining Delay Function
{
     int w,e;
     for(w=0; w<sec; w++)    // Making Nested Loop for More Time Consuming
     {
              for(e=0; e<1000000; e++)  // 1000000 for making time(printing) speed slow
              {
              }
     }
 }

int main()       // for Turbo Cplus plus write "void main( )"
{
   
    char name[]= "My Name is Haseeb Jaffur....";
    char web[] = "www.placeoflearn.blogspot.com and www.greatmasti4u.blogspot.com";
    int t=0;
    int get = strlen(name); // taking Length of String using "strlen( )" function
    int ln=strlen(web);
    cout << endl;
    cout<<"\n\t";
    while(t!=get)
    {                  
                        mydelay(55);
                        cout << name[t];
                        t++;
           }
           cout<<"\n\t";
           int i=0;
           while(i!=ln)
    {                  
                        mydelay(45);  // 45 will be passed to sec variable
                        cout << web[i];
                        i++;
           }
           cout<<endl;
    cin.get();           
    return 0;
}
// for implementing it in T.C remove 4th and  last line
                                                 // THANKS For Visiting ...
                                                  // by Haseeb Jaffur


If you face any Problem show in comment , i am try my best to resolve this problem .......

Saturday, March 1, 2014

Count Words in a String using dev/C++

Now i am trying to count the No of words in a string  using C++ or dev .  You can use this code to count the words . which you enter . this is a simple and easy article , which would help you to learn C++ complicated coding with explanations . 
I am write every code line explanation in front of that line.
after coding running you can get out put as............


Code for this program is below . but ..........
this Code in dev , if you use Turbo C++ then do some Changing...
remove using namespace std;
remove int main  and use void main in turbo C++ .
remove return and use getch() int Turboo C++ .

Code of Programe :

#include <iostream>
#include <conio.h>             //for getche()
using namespace std;
enum itsaWord { NO, YES };     //NO=0, YES=1
int main()
{
itsaWord isWord = NO;       //YES when in a word,
//NO when in whitespace
char ch = 'a';              //character read from keyboard
int wordcount = 0;          //number of words read
cout << "Enter a phrase:\n";
do {
ch = getche();           //get character
if(ch==' ' || ch=='\r')  //if white space,
{
if( isWord == YES )   //and doing a word,
{                  //then it’s end of word
wordcount++;       //count the word
isWord = NO;       //reset flag
}
}                     //otherwise, it’s
else                     //normal character
if( isWord == NO )    //if start of word,
isWord = YES;      //then set flag
} while( ch != '\r' );   //quit on Enter key
cout <<endl<< "---Word count is " << wordcount << "---\n";

return 0;

}


If you feel any problem in program running then post in comment ,
i try my best to resolve this problem ,,,,,,,,,,,
Thanks for Visiting.

Tuesday, February 25, 2014

Debut Video Capture & Screen Recorder Software


Hi , in this article i gives you a Simple and Mostly Usable Program.
You can get many Advantage from this Program.
You can Capture your activities , which you do on your desktope.
Make your own tutorials and share with others.

Features :

  1.  My Screen Recorder is a simple program for all users .
  2. Which can record all desktop ( screen ) activities of users .
  3. Save these activities for future use .
  4. To Download this Software only Click on this Button ......


 

Copyright @ 2013 placeoflearn.