Blog
-
Recovering a SQL Server Database from Suspect Mode
USE Master GO EXEC sp_configure ‘allow updates’, 1 RECONFIGURE WITH OVERRIDE GO BEGIN TRAN UPDATE master..sysdatabases…
-
Silverlight data grid extensions
Data Grid Ex Support two new events Commit (An event that indicates that a selection is complete…
-
3d Lenticular (3d Without Glasses)
After Anaglyph 3DPlayer from last month, the next challenge is to create 3d without glasses using lenticular…
-
LINQ Dynamic Query
LINQ dynamic query code //Input : str=> string to search some text (First Name,Last Name,Date of…
-
Capitalization of string
To convert string to title case (capitalize initial letters of the string), there is not string…
-
Call WCF RIA Methods
Code snippet to call WCF RIA Methods private void LoadExplorer(string path) { Web.Services.ExplorerContext context = new…
-
Reading csv file – LINQ
Let say you have csv file with two columns “Name” and “EmpID” and you want to…
-
3d Player
Silverlight 3d Player: Anaglyph 3DPlayer. Why objects looks 3d in real world and why they look…
-
LG Remote Control
LG LCD TV(LD35 Series) Remote Control Few weeks’ back I have purchased new LG LCD…
-
Silverlight 4.0 with WCF Ria (2008)
Visual studio 2010 comes with nice Silverlight designer, But for LOB applications you always need data…
-
Network Indicator
Silverlight application can be designed in a way to work even in offline mode. Essentially Silverlight…
-
Button Click Event
Here is small code to trigger button’s Click event using automation peer from source code :…