Archive for November 2013
Windows phone 8 C# code to check network or internet or wifi availablility

C# code in Windows phone 8 apps to display message in message box saying Network not available to update data when internet is not available in phone.bool isNetwork = NetworkInterface.GetIsNetworkAvailable(); .
Privacy policy of Photo Viewer windows store app

Privacy policy of Photo Viewer windows store appPhoto Viewer is a windows store app that does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy, please.
Windows phone 8 Sqlite queries to insert update delete in C# xaml app

C# code in windows phone 8 app with sqlite commands string dbPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "db.sqlite"); private void BtnUpdate_OnClick(object sender, RoutedEventArgs e) .
Windows Phone 8 C# code to consume asmx webservice with ADO.NET code

I added web service in references of my windows phone 8 app.DbakingsReference is the ServiceName i gave. This is used as namespace in C# code.RechargePlansService is the class inside my webservice.GetData is the web method i created in webservice which.
MVC 4 Part-2 Creating first MVC4 application

Step by Step demo to create MVC 4 applicationFile - New Project - Select C# - Web - ASP.NET MVC 4 Web ApplicationProject types - Empty contains nothing recommended for experts.Basic contains some important MVC elements to use.Internet application contains.
MVC 4 Overview Part-1

MVC stands for Model View Controller.MVC is built on ASP.NET. In ASP.NET we create websites using webpages or web forms.Web Pages applications can be created using Web Matrix or Visual studio. They will have .CSHTML as extension. Javascript and C# razor.
Privacy policy of Flash Back windows store app

Privacy policy of Flash Back windows store appFlash Back is a windows store app that does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy,.
SQL Server 2012 Select query

Selectselect 'test'When you execute the above select query it will print test as outputselect * from tbl_registerThe above query is used to print the whole table data named as tbl_register.select name from tbl_registerThe above query is used.
Privacy policy of Bhagawadh Geetha windows store app

Privacy policy of Bhagawadh Geetha windows store appBhagawadh Geetha is a windows store app that does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy,.
SQL Server 2012

OperatorsPredicates - in, between, likeComparision operators - <, >, =, <=, >=, <>, !=, !<, !>Logical operators - and, or, notArthimetic operators - +, -, * , /, %Concatenation - +FunctionsString function - substring,.
Privacy policy of Scientific Calculator

Privacy policy of Scientific Calculator:Scientific Calculator is a windows phone app that does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy, please.
Windows phone 8 apps using common template for all longlistselectors in pivot app xaml c#

In this example i created a template with grid and textblock to use it in 2 longlist selectors in pivot app.XAML code with template in pivot page<phone:PhoneApplicationPage x:Class="PivotApp1.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" .
Windows Phone apps pivot template with grid tiles inside it

By default every pivot app contains a long list selector with row template i.e., items inside it will be displayed in listview format. Now in this example i modified the xaml code to convert that list format to grid format using the below code.In this.
Privacy policy of Time Converter

Privacy policy of Time Converter:Time Converter is a windows phone app that does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy, please contact us at.
Privacy policy of Bhagawath geetha:

Privacy policy of Bhagawath geetha:Bhagawath geetha app does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy, please contact us at sudhir.chekuri@tecminds.
Privacy policy of C# Tutorial Windows Phone app

Privacy policy of C# Tutorial Windows Phone app:C# Tutorial windows phone app does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy, please contact us.
What is Blend in Visual Studio?

MS Visual Studio is a development tool used to create different kinds of applications using technologies present in .NET framework.MS Blend for Visual Studio is a tool used for designing some application which we develop using MS Visual Studio.When.
HTML5 audio and video tags

HTML5 contains audio and video tags to play audio files and video files directly on the webpage without using any plugins.Example HTML5 code with audio and video tags<!DOCTYPE HTML><html><body> <audio controls> .
HTML5 Introduction

HTML5 is used to create static webpages with 2d graphics, audio and video players which can be played without installing any flash plugins in browser.It also have lot of new features like local storage, css3 support and so on.Basic structure of HTML5.
C# Windows store app code to login by checking data in sql server database using webservice

C# code in Windows store app to login into app by checking data in sql server database using webservice private async void btn_login_Click_1(object sender, RoutedEventArgs e) { .
Recharge Plans WIndows Phone app Privacy Policy

Privacy policy of Recharge Plans Windows Phone app:Recharge plans windows phone app does not collect or publish any personal information.Your privacy is our at-most concern.If you would like to report any violations of this policy, please contact us.
Creating Child forms inside parent Windows form

Create a new windows form applicationSelect form and click on F4 to open its properties.set the IsMDIContainer property to true.Drag and drop menu control and add New and Close options under file in menu using autogenerated textboxes as shown in.
XAMLC# code to play audio using MediaElement in Windows Phone 8 apps

Playing Audio using MediaElementAdd audio files required to Assets folder.XAML code for button with click event and media element with audio file as source <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> <StackPanel> <Button Height="200" Width="200" VerticalAlignment="Top" HorizontalAlignment="Left" Background="Red" Click="Button_Click_1" >Play</Button> <Button Height="200" Width="200" VerticalAlignment="Top" HorizontalAlignment="Left" Background="Red" Click="Button_Click_2" >Stop</Button> </StackPanel> <MediaElement x:Name="MElement" Source="/Assets/Krrish.mp3" Volume="50" AutoPlay="False" > </MediaElement> </Grid>CSharp.net.