Sunday, November 27, 2016

WhatsApp Will No Longer Work On These Phones

It might be bad news for few WhatsApp users! The company is ending support to a number of devices which will no longer be able to run WhatsApp from December 31. That means if you are right now using older smartphones then you need to replace it right before the year 2016 ends.

The devices that will no longer get support from WhatsApp are:
  1. BlackBerry OS and BlackBerry 10
  2. Nokia S40
  3. Nokia Symbian S60
  4. Android 2.1 and Android 2.2
  5. Windows Phone 7.1
  6. iPhone 3GS/iOS 6

So, those who are using older phones need to upgrade to a newer Android, iPhone or Windows Phone to continue using WhatsApp after December 31, 2016.

EXCEPT and INTERSECT in T-SQL

The UNION, EXCEPT and INTERSECT operators of SQL enable you to combine more than one SELECT statement to form a single result set. The UNION operator returns all rows.

EXCEPT
Returns any distinct values from the query to the left of the EXCEPT operator that are not also returned from the right query.
INTERSECT
Returns any distinct values that are returned by both the query on the left and right sides of the INTERSECT operator.

The INTERSECT operator returns all rows that are in both result sets. The EXCEPT operator returns the rows that are only in the first result set but not in the second

EXCEPT operator is another most important feature in SQL Server which is used to returns distinct rows by comparing the results of two input queries. Both SQL queries within the EXCEPT query, the number and the order of the columns must be the same in the result sets within similar data types.  EXCEPT operator is a very quick and easy way to find differences, especially when needing to get all differences including null.

When using INTERSECT operator the number and the order of the columns must be the same in all queries as well data type must be compatible.

For more Information check MSDN site

Monday, November 21, 2016

Targeting .NET Platforms

You can build apps for many platforms and services by downloading .NET Framework targeting packs and SDKs and using them with Visual Studio.

Check this link for relevant platforms

Tuesday, November 15, 2016

What’s new in Visual Studio 2015 Update 3?

Microsoft released Visual Studio 2015 Update 3, Team Foundation Server (TFS) 2015 Update 3 along with .NET Core 1.0

If you want to know what has been changed, improved in the latest version of Visual Studio 2015 (i.e. in the Update 3), check out the following Microsoft pages which also includes the list of other changes like performance improvements, responsiveness, bug fixes and the known issues currently available:

Before installing this build of Visual Studio 2015 Update 3, I would recommend to checkout the Known Issues currently available in this build. Also checkout the complete Release Notes.

Point to note that, Visual Studio 2015 Update 3 now includes Xamarin 4.1. In addition to a number of bug fixes, this release adds support for tvOS, improves the iOS Assets Catalog support, improves the XML editing experience and adds selectors for SSL/TLS and HttpClient implementations when creating iOS apps.

Wednesday, November 09, 2016

How to: Uninstall vs2013 or vs2015 completely

When you uninstall from control panel there will be some packages do get left behind. Some are packages that do not participate in package ref-counting – often those that we do not build. Some package may be left behind because uninstalling packages in Visual Studio. If a package fails, uninstall will move on to uninstall the next package. Some are just too essential for other products to uninstall like the .NET Framework and Visual C runtimes: of the vast number of installers that chain them, too few ref-count them to rely on that feature.

Whatever the cause, having components left behind will consume disk space and may cause troubles upgrading to Visual Studio RTM.

This is how we can completely removing Visual Studio components left behind after an uninstall.

Forcibly uninstall using original installer

You do not need to have a bundle installed to forcibly uninstall packages by default. If you have the original installer – say, a previous download – you can run it directly like so:

vs_enterprise.exe /uninstall /force

Friday, November 04, 2016

Outlook: Copy email signatures to another computer

Recently i have switched my computers i could able to get outlook backup files abut not signatures. But i found a way to get all previous signatures to new computer.

Here is how you can do it, If you have created email signatures that you add to outgoing messages, these signatures can be copied to another computer. You can then use the signatures with Outlook on another computer.

Step 1: Copy email signatures from the original computer
  1. Exit Outlook.

  2. Open the folder where signatures are saved.

Because the Signatures folder is a hidden folder, the easiest way to open the folder is to use the command %APPDATA%\Microsoft\Signatures on the Start menu.

  • On Windows 7/8.1/10,  Click Start. Next to the Shut down button, in the Search programs and files box, type %APPDATA%\Microsoft\Signatures and then press Enter.

    search

  • Windows Vista    Click Start. Next to the Shut Down button, in the Search box, type %APPDATA%\Microsoft\Signatures and then press Enter.

    Windows Vista start menu with search box

  • Windows XP    Click Start, click Run, type %APPDATA%\Microsoft\Signatures and then press Enter.

    Windows XP start menu with search box

  • Copy the signature files.

    There are three files for each email signature — an HTML Document (.htm), Rich Text File (.rtf), and Text Document (.txt).
Step 2: Copy signatures to the destination computer
  1. Exit Outlook.

  2. On the destination computer, open the folder %APPDATA%\Microsoft\Signatures.

Because the Signatures folder is a hidden folder, the easiest way to open the folder is to use the command %APPDATA%\Microsoft\Signatures on the Start menu.

  • Windows 7    Click Start. Next to the Shut down button, in the Search programs and files box, type %APPDATA%\Microsoft\Signatures and then press Enter.

    search

  • Windows Vista    Click Start. Next to the Shut Down button, in the Search box, type %APPDATA%\Microsoft\Signatures and then press Enter.

    Windows Vista start menu with search box

  • Windows XP    Click Start, click Run, type %APPDATA%\Microsoft\Signatures and then press Enter.

    Windows XP start menu with search box

  • Start Outlook.

    Your stationery is now available in Outlook on the destination computer.
Step 3: Update older signatures

For signatures created in older versions of Outlook, you should update the signature files so that they use revised HTML code that uses cascading style sheets (CSS). This helps prevent potential problems when switching or deleting signatures in a message.

  1. Click the File tab.

  2. Click Options.

  3. Click Mail.

  4. Under Compose messages, click Signatures.

  5. In the Signatures and Stationery dialog box, in the Select signature to edit list, click a signature.

  6. Click in the Edit signature box, and then click Save.

Hope this helps!!!