Sunday 20 January 2013

Samsung Galaxy S3 Useful Codes to Test Your Handset Hardware





*#1234# (View SW Version PDA, CSC, MODEM)
*#0*# (General Test Mode)
*#12580369# (SW & HW Info)
*#197328640# (Service Mode)
*#0228# (ADC Reading)
*#32489# (Ciphering Info)
*#232337# (Bluetooth Address)
*#232331# (Bluetooth Test Mode)
*#232338# (WLAN MAC Address)
*#232339# (WLAN Test Mode)
*#0842# (Vibra Motor Test Mode)
*#0782# (Real Time Clock Test)
*#0673# (Audio Test Mode)
*#2263# (RF Band Selection)
*#9090# (Diagnostic ConfiguratioN)
*#7284# (USB I2C Mode Control)
*#872564# (USB Logging Control)
*#4238378# (GCF Configuration)
*#0283# (Audio Loopback Control)
*#1575# (GPS Control Menu)
*#3214789650# (LBS Test Mode)
*#745# (RIL Dump Menu)
*#746# (Debug Dump Menu)
*#9900# (System Dump Mode)
*#44336# (Sofware Version Info)
*#7780# (Factory Reset)
*27673855# (Full Factory Reset)
*#0289# (Melody Test Mode)
*#2663# (TSP / TSK firmware update)
*#03# (NAND Flash S/N)
*#0589# (Light Sensor Test Mode)
*#0588# (Proximity Sensor Test Mode)
*#2732832553282*# (Data Create Menu)
*#273283255663282*# (Data Create SD Card)
*#3282727336*# (Data Usage Status)
*#7594# (Remap Shutdown to End Call TSK)
*#34971539# (Camera Firmware Update)
*#526# (WLAN Engineering Mode)
*#528# (WLAN Engineering Mode)
*#7412365# (Camera Firmware Menu)
*#80# (Unknown)
*#07# (Test History)
*#3214789# (GCF Mode Status)
*#272886# (Auto Answer Selection)
*#8736364# (OTA Update Menu)
*#301279# (HSDPA/HSUPA Control Menu)
*#7353# (Quick Test Menu)
*27674387264636# (Sellout SMS / PCODE view)
*#7465625# (View Phone Lock Status)
*7465625638*# (Configure Network Lock MCC/MNC)
#7465625638*# (Insert Network Lock Keycode)
*7465625782*# (Configure Network Lock NSP)
#7465625782*# (Insert Partitial Network Lock Keycode)
*746562577*# (Insert Network Lock Keycode SP)
#746562577*# (Insert Operator Lock Keycode)
*746562527*# (Insert Network Lock Keycode NSP/CP)
#746562527*# (Insert Content Provider Keycode)
*#272imei#* Product code

Among all those 58 key codes, there is one which is very important for every new owners of SGS3. That key is *#0*# which is a general test to find out basic current state of phone’s LCD. We knew that LCD is the most important aspect of a touch-based smartphone. Anyway, just give it a try..

Thursday 17 January 2013

How To Transfer Word Form Data to an Excel Spreadsheet

 

Takeaway: When you need to transfer a data record to Excel, a Word form — and a little VBA — makes the process a snap.
Data transfer often comes in bulk jobs with multiple records and data fields. But occasionally, you’ll need to transfer only one record at a time. For example, you might need to transfer details from a data entry order form to a larger purchasing database. In that case, you transfer details as each order is processed, one at a time. When you’re facing such a task, you can use VBA code — and you can set it all up in 10 quick steps.

Analyze your needs

 
There are several parts to a transfer task. The scenarios are unique, but the components are generally the same:
  • The data you’re transferring
  • The source file that contains the data
  • The destination file to which you’re transferring the data
  • The transfer medium used to make the switch; usually, it’s code
You’ll need to identify these four components before you do a thing.
Our example uses a Word form to gather data (input values), but you might use a Web form, an Excel userform, or some other format. The transferring code and process will be mostly the same, regardless of the input’s format. This exercise is less about the source and more about the ability to transfer records, one at a time, to a destination file.

Determine the destination format

 
 
After ensuring that you have all the pieces you need to begin your work, determine the physical dynamics of the destination file. Usually, this format is predetermined. We’ll transfer two text elements, a company’s name and phone number, record by record, into the simple Excel sheet shown in Figure A.

Figure A

Our example sheet is simple on purpose. Transferring the data is the job; the number of fields is usually irrelevant.

Identify the destination data types

 
 
Once you know the format, note the data types the source file expects to receive. You might have to convert data types before actually transferring the data. We won’t do so in this example. Both fields in this destination sheet are text using the General format. But it’s important to note this information before beginning because the data might need special handling. For instance, strings and dates must be delimited property.

Note the destination file’s location

 
The next bit of information you’ll need is the path to the destination file. In this example, both files will be on the same drive but in different folders. Some data must travel long distances to get from the source to its destination file, and you’ll need to know every node of that journey. If you’re using a network, you might need to code in special permissions and passwords to use along the way. Our example destination workbook resides at E:\Examples and isn’t password protected.

Create the source form

 
If you’re lucky, you’ll have some flexibility when choosing the source format (but not always). In this case, we’ll use the simple Word form shown in Figure B to collect two pieces of data.

Figure B

Use Word’s form fields to collect data.
A Word form is a document that contains fill-in blanks called fields. Each field is a predefined cell that stores data input. To create the example Word form, insert two text fields into a blank Word document as follows:
  1. Click the Developer tab and then choose the ab field from the Legacy Tools drop-down in the Controls group (circled in Figure B). In Word 2003, choose Toolbars from the View menu and select Forms, where you’ll find the Text Form Field control.
  2. Click Properties in the Controls group or double-click the field to display its properties.
  3. Enter txtCompanyName in the Bookmark property, as shown in Figure C.
  4. Click OK.
  5. Repeat steps 1 through 4, entering txtPhone in step 3.
  6. Save the form.

Figure C

The text form field is a legacy tool in the Ribbon versions.

Add the basic code

 
To add the code that transfers a single record from the fields to the example workbook, do the following:
  1. With the Word form open, press [Alt]+[F11] to launch the Visual Basic Editor (VBE).
  2. From the Insert menu, choose Module.
  3. Enter the code in Listing A.
  4. Save the module and return to the Word form.

Listing A: The transferring macro

Sub TransferToExcel()
'Transfer a single record from the form fields to an Excel workbook.
  Dim doc As Document
  Dim strCompanyName As String
  Dim strPhone As String
  Dim strSQL As String
  Dim cnn As ADODB.Connection
  'Get data.
  Set doc = ThisDocument
  On Error GoTo ErrHandler
  strCompanyName = Chr(39) & doc.FormFields("txtCompanyName").Result & Chr(39)
  strPhone = Chr(39) & doc.FormFields("txtPhone").Result & Chr(39)
  'Define sql string used to insert each record in the destination workbook.
  'Don't omit the $ in the sheet identifier.
  strSQL = "INSERT INTO [PhoneList$]" _
    & " (CompanyName, Phone)" _
    & " VALUES (" _
    & strCompanyName & ", " _
    & strPhone _
    & ")"
  Debug.Print strSQL
  'Define connection string and open connection to destination workbook file.
  Set cnn = New ADODB.Connection
  With cnn
    .Provider = "Microsoft.ACE.OLEDB.12.0"
    .ConnectionString = "Data Source=E:\Examples\Sales.xlsx;" & _
      "Extended Properties=Excel 8.0;"
    .Open
    'Transfer data.
    .Execute strSQL
  End With
  Set doc = Nothing
  Set cnn = Nothing
  Exit Sub
ErrHandler:
  MsgBox Err.Number & ": " & Err.Description, _
    vbOKOnly, "Error"
  On Error GoTo 0
  On Error Resume Next
  cnn.Close
  Set doc = Nothing
  Set cnn = Nothing
End Sub

Add a way to execute the macro

 
You could add a macro button to the Ribbon or even a command button to the document. But using form fields, you can bypass the interface tools and let one of the fields execute the macro as follows:
  1. Double-click the phone field (txtPhone) to open its property sheet.
  2. From the Exit drop-down, select the transfer macro from Listing A, TransferToExcel, as shown in Figure D.
  3. Click OK.
Pressing [Tab] to leave the phone field will execute TransferToExcel(), which will copy the text in the company name and phone fields to Sales.xlsx. When applying this code to your own work, be sure to update the path appropriately.

Figure D

Select the transfer macro from the Exit drop-down.

Protect the Word document

 
Before using the Word form, restrict its use by limiting changes to the form fields as follows:
  1. Click the Developer tab and then click Restrict Editing in the Protect group. In Word 2003, click Protect on the Form toolbar.
  2. In the resulting task pane, click Allow Only This Type Of Editing In This Document.
  3. From the drop-down, select Filling In Forms, as shown in Figure E.
  4. Click Yes, Start Enforcing Protection.
  5. Enter a password twice. Or leave both password entries blank if you don’t need password protection.
  6. Click OK.

Figure E

Enable protection to restrict data entry to the form fields.

Use the form

 
All your basic components are in place and you’re ready to use the form. To do so, tab into the first field (if necessary) and enter a company name. Press [Tab] and enter a phone number, as shown in Figure F. After entering the phone number, press [Tab] to execute the code. Then, check the Sales.xlsx Excel workbook. As you can see in Figure G, the code transferred the record, as expected. The code appends each record as transferred, allowing you to accommodate existing data.

Figure F

Using form fields to collect data is easy.

Figure G

Our macro code copied the data from the Word form to an Excel sheet.

The rest of the story

 
The macro in Listing A covers the basics. It identifies the data and transfers it, as is, to a destination workbook. That part’s common to almost all transfer tasks where you’re moving one record at a time. There’s much more to consider. For instance, there’s no data validation; there’s nothing to force users to enter a valid phone number in the right format. To ensure consistent and valid data, include code that validates the data (usually before transferring).
You also might want to include a confirmation message that asks users to confirm the transfer before actually executing the code. Right now, the transfer is automatic. The error handling is bare bones. You’ll need to test your code thoroughly for all possible problems. These are just a few of the areas you’ll want to customize.


Just Hit The Share Button It Doesn't Bite Your Finger