Facebook Twitter Google RSS

All Post

Advertise Here

C Language

C++ Language

Java

Computer Trickes

Gallery

Wednesday, 13 January 2016

How to Access Two Computers Using One Keyboard

Unknown     04:05  2 comments
How to Access Two Computers Using One KeyboardMouse Without Borders is a free utility developed by Microsoft's Garage project, an in-company program designed to encourage employees to develop projects they've cultivated during off-hours and while most of these projects do not make it to the public or just come bundled as a part of a larger project, Mouse Without Borders stands as an outline. 

Through this program, up to four computers can be synced into one, creating an environment where you can navigate, type, and share files easily from one PC to another and it will then give you a security code to enter when you download the software on to the remaining PC's you want synced.

You will have to make sure the computers are on the same local network and Microsoft suggests users utilize a wired Ethernet connection rather than connect over a local Wi-Fi network, as the former is generally considered more reliable.

However, I was able to connect over PC Mag Lab's wireless with little issue

1. Download Mouse Without Borders from Here
2. Once you download, install and open it. 
3. Now a Show a Security key and Device name, just note it down. 
4. Now turn on your other computer which you want to access and download Mouse without Borders in it. 
5. On setup page, select "Yes option, I have installed Mouse without borders on other computer". 
6. Now you can see box of Security and device name, just insert your Security key and device name which you copied in step 3.

Sunday, 10 January 2016

How to install Windows 8 in PC or Laptop

Tapan     10:21  No comments

 How to install Windows 8 in PC or Laptop
Step 19
Help protect and update your PC and choose your preferred option and click next.

Step 20
Send Microsoft info to help make Windows and apps better and choose your preferred options or leave the default settings and then click next to continue.

Step 21
Check online for solutions to problem and choose your preferred options or leave the default settings and then click next to continue.

Step 22
Sign in to your PC and then you can login to your PC using a Microsoft email account such as your Hotmail account.

If you do not have a Microsoft account you can create one by clicking Sign up for a new email address and Go to Step 23.
If you do not want to create an email account and prefer to create a local user name, click Sign in without a Microsoft account and Go to step 24.

Step 23
Sign up for a new email address and if you want to create a new email account you need to complete the form below.

Step 24
Click local account.

Step 25
Here you can choose a local user name and password and then Choose finish to continue.

Tuesday, 5 January 2016

How to install Windows 8

Tapan     10:08  No comments
You will notice that you have 3 partitions. Partition 1 is system reserved. Leave this partition alone. Partition 2 is 30 GB primary partition that was created in the last step. 

How to install Windows 8 in PC or LaptopThe third partition is unallocated which means it is not being used. You can however format it and use it as a second storage drive.

This can be done after windows installation is finished so I will leave it for now.
Choose partition 2 (Primary Partition). This is where I will install Windows 8. Click next to continue.

Step 12 
At this stage Windows starts to copy files to your hard drive and begins the installation. This process might take a few minutes depending on your computer specification. Now is a good time to grab yourself a coffee.

Step 13 
When all the necessary files are copied Windows 8 will automatically restart as shown.

Step 14
You will go through various progress bar and information messages as shown on the following images. Windows might restart automatically second time.

Step 15 
You are now presented with "Let's go through a few basics" screen. It will automatically select personalize option.

Step 16 
Choose your PC name and personalize the color.

Step 17 
Here you can choose express settings or choose customize. I will choose customize to make further customization.

Step 18 
Choose Yes, turn on sharing and connect to devices.

Next Page How to install Windows 8 in PC or Laptop (Part 3)

Friday, 1 January 2016

How to install Windows 8 in PC or Laptop

Tapan     10:07  No comments
Windows 8 is Microsoft's latest operating system which is completely redesigned and It moves away from the traditional interface to a completely new interface known as Metro User Interface.
Windows 8 and its variation RT works across multiple architectures and has been optimized for touch screen and so it will work on Intel based PCs or an ARM based tablet. 

This step-by-step guide demonstrates how to install Windows 8 and you can follow this guide if you have Windows 8 basic edition or any other version as the steps are very similar.

How to install Windows 8 in PC or Laptop
The best way to install Windows 8 is to do a clean install and for you start the installation process I recommend that you check Windows 8 System Requirements to ensure that your hardware is supported by Windows 8. If you don't have Windows 8 drivers for all your hardware, it is a good idea to download all the drivers from the hardware manufacturers web site and save all the necessary drivers on a CD/DVD or a USB drive before you start the installation.

In order to boot from the DVD you need to set the boot sequence. Look for the boot sequence under your BIOS setup and make sure that the first boot device is set to CD-ROM/DVD-ROM.

Step 1
Place Windows 8 DVD in your dvd-rom drive and start your PC and Windows 8 will start to boot up and you will get the screen with a rotating progress bar.

Step 2
The next screen allows you to setup your language, time and currency format, keyboard or input method. Choose your required settings and click next to continue.

Step 3
The next screen allows you to install or repair Windows 8 and Since we are doing a clean install we will click on "install now".

Step 4
And then setup process will be starts.

Step 5
At this stage you need to type your product key that came with your copy of Windows 8. Click next once you have entered the product key correctly.

Step 6
Read the license terms and tick I accept license terms and then click next to continue.

Step 7
Choose the type of installation you want and since you are doing a clean install you need to click on custom.

Step 8
Choose where you would like to install Windows 8. If you have one hard drive you will get an option similar to the image below. You can click next to continue then go to step 12.

If you have more than one drive or partition then you need to select the appropriate drive and click next. At this stage you can go to step 12.
If you want to partition a large drive then do not click next. Go to step 9.

Step 9
If you want to partition an existing drive then click new. Choose the size of the partition and click apply.

Step 10
Click OK to create the partition. Windows will create additional system partition which you don't have to worry about.

Friday, 11 December 2015

Find Odd or Even Using Conditional Operator in C and C++

Tapan     20:27  2 comments
// WE USE THIS CODE IN C // 
  
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a;

printf("Enter Any no.");
scanf("%d",&a);

(a%2==0)?printf("Even No."):printf("Odd No.");

getch();
}

  
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a;

cout<<"Enter Any no.";
cin>>a;

(a%2==0)?cout<<"Even No.":cout<<"Odd No.";

getch();
}

Find Odd or Even Using Conditional Operator in C and C++

Thursday, 3 December 2015

C++ Program to Check a Character is Uppercase, Lowercase, Digit or Special Character

Tapan     04:54  No comments
#include<iostream.h>
#include<conio.h>

void main()

{      
char ch; clrscr();    
cout<<"Enter any character: ";
cin>>ch;

if(ch>=65&&ch<=90)    
{
cout<<endl<<"You entered an uppercase character";
}

else if(ch>=48&&ch<=57)

{
cout<<endl<<"You entered a digit";


else if(ch>=97&&ch<=122)

{
cout<<endl<<"You entered a lowercase character";
}

else

cout<<endl<<"You entered a special character";

getch();
}



First of all I read a character an then compare it with ASCII values given below.
Uppercase Alphabet: 65-90
Lowercase Alphabet: 97-122
Digit: 48-57
If ASCII value of character is other then the values mentioned above then it is a special character.

Tuesday, 3 February 2015

About Us

Tapan     02:31  No comments
BCA Developer provides IT services and Internet solutions in a dynamic environment to corporate and enterprises and we provide a unique and  large range, cost effective solutions, services and web development.

About Us >> BCA Developer
We have a dedicated and enthusiastic team of professionals who have deep knowledge of industry and are always ready to give their best to our 'valuable' clients. We excel in providing Web Development, Web Application Development, Graphics Designs and Development, E-commerce Solutions.

We have young, nimble team with passion for delivering all type of IT solutions, products and customer services. Our team member's experience varies from 3 years to 8 years in different domains and technologies.

Why us?

We have high qualified, certified professionals having expertise in various domains. From startups to international technology giants, our professionals have relevant experience in all latest technologies to satisfy our client's need. 

We provide them time to time training to keep them updated about latest technologies and market requirement. Our recruitment process considers global competence which helps us to give quality and dedicated resources.


                                                                                            Donate for Us.



Popular Post

Website Worth

Contact Us

Name

Email *

Message *

© 2014 BCA Developer. Powered by E Friends.