Archive for 2013
Tips to create youtube videos for good traffic, visits, and visitors

Tips to follow to create good youtube videos that can attract visitors1. Length of the video should be short and not more than 1 hour.2. Ask users to subscribe, share, like and comment after watching the video.3. Upload videos at regular intervals of.
WPF Browse Image with OpenFileDialog and saving it in SQL Server database using C# ADO.NET Code

SQL Query to create table in SQL Server database to save image selected from WPF application
CREATE TABLE [dbo].[saveimage](
[sno] [int] IDENTITY(1,1) NOT NULL,
[img] [varchar](max) NULL
)
XAML Code in WPF application containing browse button,.
Windows store app code to consume web service data to display in gridview

C# code in Web service [WebMethod] public donardetails Required(string m) { SqlCommand cmd = new SqlCommand("select* from tbl_DonateBlood where BloodGroup='" + m + "'", con); .
Windows phone c# code to Call and Message from windows phone

C# code for sending message: SmsComposeTask smsComposeTask = new SmsComposeTask(); smsComposeTask.To = "6786543672"; // phone number to whom the sms is to.
Windows phone C# code to get selected data by selecting checkbox in listbox

Here is the example to get selected data by selecting checkbox in listbox:xaml code<ListBox Height="600" Name="listBox1" Margin="0,0,0,0" > <ListBox.ItemTemplate> .
WIndows phone and store game ratings

use the below link to add app nameand other details of app.Rating certificate will be send to the mail id which you have during registeration of app.http://msdn.microsoft.com/en-us/library/windowsphone/help/jj206734(v=vs.105).as.
Privacy Policy of Truth or Dare Windows phone app

Truth or Dare 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 devsupport@primaccess.c.
Privacy policy of Christmas Fever windows phone app

Christmas Fever 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 devsupport@primaccess.c.
Privacy policy of Hash Codes windows phone app

Hash Codes 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 support@primaccess.c.
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.