Showing posts with label flashing. Show all posts
Showing posts with label flashing. Show all posts

Tuesday, May 16, 2017

Android Mobiles Flashing Software Download Free For All Andriod Devices

Android Mobiles Flashing Software Download Free For All Andriod Devices



Go to link for download

Read more »

Monday, May 1, 2017

New Phoenix Service Software Cracked Nokia Flashing Software 2016 Free Download For Windows 7 8 Xp Vista By Finalevil2009

New Phoenix Service Software Cracked Nokia Flashing Software 2016 Free Download For Windows 7 8 Xp Vista By Finalevil2009


Phoenix service software is a free and amazing tool for flashing Nokia phones using a Usb data cable.  You can flash easily your Nokia phone using phoenix service software free tool. It is completey free and without waiting to download.
Nokia Phoenix Service Software 2014/15 Free Download

Download phoenix service software from here and install it on your computer, connect your phone to computer using a Usb data cable, choose flash file for your selected phone and start flashing your phone. 

Before starting flashing your Nokia phone don,t  forgot to get backup of your important data, Because after flashing your Nokia phones your all important data will deleted and your can,t get it again.

Phoenix service software 2014/15/16 you can free download from the given download link, which is available at the end of the post. The provided download link is free and risk free, So you can download phoenix service software by clicking on the download link below.


Download Phoenix Service Software 2011, 2012, 2013, 2014, 2015, 2016

Phoenix service software 2016 latest version is not recently released, When Phoenix Service Software latest update version 2015 is released you can download updated version of Phoenix service software from here.

Go to link for download

Read more »

Saturday, March 25, 2017

GUIDE Fix status 6 while flashing ROMs

GUIDE Fix status 6 while flashing ROMs


I often find myself needing to query the phones screen dimensions or needing to take a screen shot for demo purposes. This usually resulted in me recycling some of the screen scraping code I wrote for Omnipresence (a prototype cross platform remote desktop type client). I figured I may as well post this code since its been pretty handy to me, and that others may find it handy as well.

The code below lets you do just that:

  • PixelDimensions - Returns the devices resolution.
  • GetScreenCapture - Capture the current contents of a screen to a bitmap that can then be saved/manipulated however you please.
using System; using System.Runtime.InteropServices; using System.Drawing; using System.Drawing.Imaging; namespace WindowsMobile.Utilities { public class DeviceScreen { enum RasterOperation : uint { SRC_COPY = 0x00CC0020 } [DllImport("coredll.dll")] static extern int BitBlt(IntPtr hdcDest, int nXDest, int nYDest, int nWidth, int nHeight, IntPtr hdcSrc, int nXSrc, int nYSrc, RasterOperation rasterOperation); [DllImport("coredll.dll")] private static extern IntPtr GetDC(IntPtr hwnd); [DllImport("coredll.dll")] private static extern int GetDeviceCaps(IntPtr hdc, DeviceCapsIndex nIndex); enum DeviceCapsIndex : int { HORZRES = 8, VERTRES = 10, } public static Size PixelDimensions { get { IntPtr hdc = GetDC(IntPtr.Zero); return new Size(GetDeviceCaps(hdc, DeviceCapsIndex.HORZRES), GetDeviceCaps(hdc, DeviceCapsIndex.VERTRES)); } } public static Bitmap GetScreenCapture() { IntPtr hdc = GetDC(IntPtr.Zero); Size size = PixelDimensions; Bitmap bitmap = new Bitmap(size.Width, size.Height, PixelFormat.Format16bppRgb565); using (Graphics graphics = Graphics.FromImage(bitmap)) { IntPtr dstHdc = graphics.GetHdc(); BitBlt(dstHdc, 0, 0, size.Width, size.Height, hdc, 0, 0, RasterOperation.SRC_COPY); graphics.ReleaseHdc(dstHdc); } return bitmap; } } }

Go to link for download

Read more »