Quantcast
Channel: windows phone 8.1 – Developer Publish
Browsing all 23 articles
Browse latest View live

How to Hide the Status Bar in Windows Phone 8.1 Windows Runtime Apps ?

Do you want to hide the status bar in the Windows Phone 8.1 when targeting Windows Runtime app ? . Below is a sample code snippet that demonstrates how you can do it. How to Hide the Status Bar in...

View Article



How to Show the Status Bar in Windows Phone 8.1 Windows Runtime Apps ?

Do you want to display or show the status bar that was previously hidden from your Windows Phone 8.1 Windows runtime apps ? . Below is a code snippet that shows how to do it. How to Show the Status Bar...

View Article

How to Pass Information between Pages in Windows Phone 8.1 App ?

When navigating between pages in your Windows Phone project , sometimes , you might have to pass information to the other page as well. How to Pass Information between Pages in Windows Phone 8.1 App ?...

View Article

Image may be NSFW.
Clik here to view.

Expression as column in SQL Query

You can write an expression and place it in the SELECT list of a SQL Query. For example , you want to display the Total Leaves available for the user from the Employee table. Total Leaves in this case...

View Article

Image may be NSFW.
Clik here to view.

Listing all the tables that contain the specified column name in SQL Server

Here’s a query that can be used to list all the table names that contain the specified column name from the INFORMATION_SCHEMA.Columns table. SELECT COLUMN_NAME, TABLE_NAME FROM...

View Article


Image may be NSFW.
Clik here to view.

How to set an default value for an existing column in SQL Server ?

If you want to set an default value for an existing column in SQL Server , you can use the ALTER command and specify the CONSTRAINT. How to set an default value for an existing column in SQL Server ?...

View Article

Image may be NSFW.
Clik here to view.

Generating Insert script with data for a table in SQL Server

If you want to generate the insert script for a table in SQL Server along with the data , you can do that by setting the “Types of data to script” to data only at the database level in the SQL Server...

View Article

Image may be NSFW.
Clik here to view.

How to change the value of identity column values in SQL Server ?

There are times when you want to insert the value of the identity column as a part of the insert query instead of using the default identify value. In this case , you can set the identity_insert to ON...

View Article


Image may be NSFW.
Clik here to view.

Display a string in the Output Window in Visual Studio

You can use the Debug.WriteLine method that is defined in the System.Diagnostics namespace to display the string in the Visual Studio output window as shown. How to display a string in the Output...

View Article


Image may be NSFW.
Clik here to view.

How to Get the row and column number of cell in Excel?

In Microsoft Excel , the cell’s row number and the column number is identified from its address. For example , if the cell is G3 , then the column number is 7 and the row number is 3. But assume that...

View Article

Image may be NSFW.
Clik here to view.

Singapore SharePoint Community Meeting on November 2016

Microsoft User Groups (Singapore) is hosting its User Group meeting on November 22 , 2016 from 6.30 PM at Microsoft Singapore, One Marina Boulevard , Level 22, Meeting Room, Singapore. This meetup will...

View Article

Image may be NSFW.
Clik here to view.

How to change the border color of multiple cells in Excel?

By default , the cell border color in Microsoft Excel is grey. You can change the border color of the cell in Excel and this blog post will demonstrate how to change the border color of multiple cells....

View Article

Image may be NSFW.
Clik here to view.

How to use Server.MapPath in the external C# classes in ASP.NET Project ?

Here’s a sample code snippet demonstrating the usage of Server.MapPath() in the external C# classes in ASP.NET project. How to use Server.MapPath in the external C# classes in ASP.NET Project ?...

View Article


Windows Phone 8.1 and Windows Runtime Apps How to #12 – How to Add a...

If you are looking for a way to add Application Bar in your Windows Phone 8.1 App (Windows Runtime App) , you can use the BottomAppBar to add App Bar. Add the Command Bar under the BottomAppBar and...

View Article

Windows Phone 8.1 and Windows Runtime Apps How to #13 – How to Change the...

When you create a Windows Phone 8.1 app in Visual Studio 2013 , the MainPage.xaml is set as the default start page of the app . Sometimes , you might want to change the start page of the Windows Phone...

View Article


How to Use jQuery in Windows Store App ?

jQuery is one of the most popular JavaScript library and it can be used when building the Windows Store App as well. How to Add jQuery to a Windows Store Project ? You can add jQuery to a Windows Store...

View Article

Windows Phone 8.1 and Windows Runtime Apps How to #15 – Get screen resolution...

There are times when you want to get the windows phone device’s screen resolution programmatically from your Windows Phone 8.1 App . In some of my previous blog posts , i explained about the different...

View Article


Windows Phone 8.1 and Windows Runtime Apps How to #16 – Displaying External...

In Windows Phone 8 and earlier version , the developers could use the WebBrowser control or the WebBrowserTask to display external webpages within the app . If you want to display an external webpage...

View Article

Windows Phone 8.1 and Windows Runtime Apps How to #17 – Detect current User...

This article will demonstrate in simple steps in how to detect the current location of the use from a Windows Phone 8.1 App. Retrieving the current location in Windows Phone 8.1 is similar to...

View Article

Windows Phone 8.1 and Windows Runtime Apps How to #18 – Display Bing Map in...

Windows Phone 8.1 SDK provides the Uri scheme called bingmaps: which lets the developers to display a map using the built-in Maps apps from their app. The bingmaps Uri scheme in Windows Phone 8.1 is...

View Article
Browsing all 23 articles
Browse latest View live




Latest Images