Posts
Secret Codes For Android Mobile Phones
- Get link
- X
- Other Apps
Secret Codes For Android Mobile Phones: 1. Complete Information About your Phone *#*#4636#*#* This code can be used to get some interesting information about your phone and battery. Usage statistics 2. Factory data reset *#*#7780#*#* This code can be used for a factory data reset. It'll remove following things: Google account settings stored in your phone System and application data and settings Downloaded applications It'll NOT remove: Current system software and bundled application SD card files e.g. photos, music files, etc. Note: Once you give this code, you get a prompt screen asking you to click on "Reset phone" button. So you get a chance to cancel your operation. 3. Format Android Phone *2767*3855# Think before you give this code. This code is used for factory format. It'll remove all files and settings including the internal memory storage. It'll also reinstall the phone firmware. Note: Once you give this code, there is no wa...
Excel sheet_merger
- Get link
- X
- Other Apps
Sub SheetMerger() Dim objCol As Collection Dim Sht As Worksheet Dim newSht As Worksheet Dim Rng As Range Dim PT As Range Dim theName As Name On Error Resume Next Application.DisplayAlerts = False For Each theName In ThisWorkbook.Names theName.Delete Next Worksheets("AllData").Delete Application.DisplayAlerts = True On Error GoTo 0 Set objCol = New Collection For Each Sht In ThisWorkbook.Worksheets For Each Rng In Sht.Range(Sht.[a1], Sht.[a1].End(xlToRight)) On Error Resume Next If Rng <> "" Then objCol.Add Rng, CStr(Rng.Value) ...
Days of Celebration
- Get link
- X
- Other Apps
There are months missing because obviously Elise, like myself, does not attend a year round school. January January 1 New Year's Day, Betsy Ross's birthday (1752), Paul Revere's birthday(1735) January 3 J.R.R. Tolkien's birthday (1892), Festival of Sleep Day January 4 Louis Braille's birthday (1809), Jakob Grimm's birthday (1785), Trivia Day January 5 National Bird Day January 6 Bean Day, Sherlocke Holmes' birthday January 7 Moons of Jupiter discovered by Galileo 1610 January 8 Elvis Presley's birthday (1935) January 10 First Meeting of United Nations in London 1946 January 11 National Thank-You Day, Milk Day (milk delivered in bottles forthe first time in 1878 January 12 First Xray machine made - 1896 January 13 Poetry Day, Make Your Dreams Come True Day, Rubber Duckie's birthday January 14 National Dress Up Your Pet Day January 15 Martin Luther King's birthday (1929) January 17 Benjam...
Store proc
- Get link
- X
- Other Apps
Overview A stored procedure is nothing more than prepared SQL code that you save so you can reuse the code over and over again. So if you think about a query that you write over and over again, instead of having to write that query each time you would save it as a stored procedure and then just call the stored procedure to execute the SQL code that you saved as part of the stored procedure. In addition to running the same SQL code over and over again you also have the ability to pass parameters to the stored procedure, so depending on what the need is the stored procedure can act accordingly based on the parameter values that were passed. CREATE PROCEDURE sp_name AS SELECT * FROM AdventureWorks.Person.Address GO EXEC sp_name input parameter@@@ CREATE PROCEDURE sp_name @City nvarchar(30) AS SELECT * FROM AdventureWorks.Person.Address WHERE City = @City GO EXEC sp_name @City = 'Delhi' default parameter:--- CREATE PROCEDURE Sp_name @City nvarchar(30) = NULL AS SEL...
create a table
- Get link
- X
- Other Apps
USE [MSSQLTIPS] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[TipCategories]( [Category_ID] [int] IDENTITY(1,1) NOT NULL, [Category_Desc] [varchar](200) NOT NULL, [InActive] [nchar](10) NOT NULL, [CreatedBy] [varchar](50) NULL, [DateCreated] [datetime] NULL, [DateUpdated] [datetime] NULL, [UpdatedBy] [varchar](50) NULL ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO
useful site link
- Get link
- X
- Other Apps
Books Americabookshelf.com – One of the largest book exchange clubs across the US. BooksConnect – A book sharing community site connecting readers, authors, publishers, librarians and booksellers. BookCrossing.com – A community of users from over 130 countries who exchange books with each other at public places like cafes, parks etc. Bookhopper.co.uk – Free community for UK residents to share used books with each other. Bookins.com – Book sharing website that enables members to exchange used books with each other in real time. BookMooch.com – An interesting concept where users can exchange books with others through points. Users gain points when they give books to others. Booksalescout.com – Online community of users allowing them to sell books in the US. Bookswim.com – Book borrowing service with free shipping for registered website. ConnectViaBooks – A social networking site connecting book lovers and enabling them to discover other similar in...