Twitter Feed Facebook Google Plus Youtube

Adsense responsive

Recent Post below header

Wednesday, 6 March 2013

HOW TO ENABLE / INSTALL MICROSOFT .NET FRAMEWORK 3.5 IN WINDOWS 8 OFFLINE

Windows 8 comes with Microsoft .NET Framework 4.0. But many application needs Microsoft .NET Framework 3.5. You didn't need to download it, as it is present in Windows 8 disc. You just need to enable it. You can do this by following steps given below:

1.Insert Windows 8 disc Or mount Windows 8 disc image. Open Start and type cmd.


2.Right click on Command Prompt. Click on Run as administrator.


4.Copy and paste this highlighted text in Command Prompt
dism.exe /online /enable-feature /featurename:NetFX3 /Source:G:\sources\sxs /LimitAccess


5.Replace letter G with your CD-ROM Drive letter in which you have inserted Windows 8 disc OR with virtual drive letter if you have mounted Windows 8 disc image. Then click enter and wait for few minutes until its progress is not completed.



NOTE: Click on image to view it correctly.


For any query or suggestion please comment below...

Tuesday, 5 March 2013

TORCH WEB BROWSER FEATURES

Torch is a free and unique software that offers you powerful browsing together with built-in media downloading and sharing features.

Torch Browser is based on the Chromium technology platform, giving it fast browsing capabilities. With Torch, you can share sites you like, download torrents, accelerate downloads and grab online media - all directly from the browser. Everything you need is a just click away with Torch, so you don't have to use or download additional programs and tools.

You can also use apps from Google Chrome web store.

You can download it from its official site http://www.torchbrowser.com/





For any query or suggestion please comment below...

Friday, 1 March 2013

JAVA PROGRAM: TO MULTIPLY TWO NUMBERS WITHOUT USING ARITHMETIC OPERATOR *


CODING OF MULTIPLY BUTTON(jButton1)
        int num1,num2,i,mul=0;
        num1=Integer.parseInt(jTextField1.getText());
        num2=Integer.parseInt(jTextField2.getText());
        for(i=1;i<=num2;i++)
         mul+=num1;
        jTextField3.setText(" "+mul);

CODING OF CLEAR BUTTON(jButton2)
        jTextField1.setText(" ");
        jTextField2.setText(" ");
        jTextField3.setText(" ");


CODING OF EXIT BUTTON(jButton3)
        System.exit(0);


CODING

RUNNING

We have used NetBeans IDE 7.2.1. To download it visit www.netbeans.org

For any query or suggestion please comment below...

HOW TO ENABLE HIBERNATE OPTION IN WINDOWS 8



 Click here for written tutorial.

For any query or suggestion please comment below...

C PROGRAM: TO MULTIPLY TWO NUMBERS WITHOUT USING ARITHMETIC OPERATOR *

CODING:
#include<conio.h>
#include<stdio.h>
void main()
{
 int num1,num2,i,prod=0;
 clrscr();
 printf("Enter 1st number: ");
 scanf("%d",&num1);
 printf("Enter 2nd number: ");
 scanf("%d",&num2);
 for(i=1;i<=num2;i++)
 {
  prod+=num1;
 }
 printf("\n\n\nProduct of %d and %d is %d",num1,num2,prod);
 getch();
}


CODING

OUTPUT


For any query or suggestion please comment below...