Posts

Network adapter does not showing in device manager

  Network adapter does not showing in device manager If all else fails, add a PCI or PCI-E Network card. That should fix the problem. 1.Before doing that though, open a Elevated Command Prompt. 2.Type set devmgr_show_nonpresent_devices=1 and press Enter. 3.Type devmgmt.msc and press Enter to open Device Manager. 4.Click on View then Show Hidden Devices.  5.Scroll down and see if Network Adapter is present now or if an Unknown Device shows up. Which ever it is, right click on it and select Uninstall. Reboot and see if Win 7 redetects the device and reloads the driver for it

How to Create a Bootable Pendrive using cmd(command-prompt)?

  How to Create a Bootable Pendrive using cmd(command-prompt)? Step 1:  Run command-prompt in  Administrator  mode.  Step 2:  Connect the USB device to the computer that is to be made bootable. Step 3:  Type the command  ‘diskpart’  and then press Enter. Step 4:  Type the command  ‘list disk’  to display a list of all the available storage devices on your system. Press Enter to continue. Step 5:  Select the disk that is your pen drive. Generally, it is marked as Disk 1, it might vary system to system. Make sure not to select any other available disk as it will get formatted. To choose the disk, type the command  ‘select disk 1’  and press Enter. Step 6:  To make a pendrive bootable, there is a need to format it to clean the existing data. This can be done by the use of  ‘clean’  command. Step 7:  Type the command  ‘create partition primary’  and press Enter. This will make the disk p...

Cannot start this animator on a detached view onCreate

 Cannot start this animator on a detached view onCreate 1. Select main layout of xml file in your activity Like my main layout activity id is "layoumain" 2. Then after paste this code under onCreate  ( protected void onCreate(Bundle savedInstanceState) )     Code is this.     layoutMain.Post(new Runnable(){     @Override     public void run()          {               viewMenu1(); // this my animation method           }      });

How to Install Json.Net in Visual Studio Projects

Image
 Install  Json.Net in Visual Studio Projects 1. Go to tools  > NuGet Package Manager > Package Manager Console  command. 2. Type PM> Install-Package Newtonsoft.Json and hit enter. Wait for some time. It will show this message.