ksenthilraja.blogspot.com
Crazy $enthi£'s ...: February 2012
http://ksenthilraja.blogspot.com/2012_02_01_archive.html
Crazy $enthi£'s . Thursday, February 2, 2012. Disable Auto sync of Picasa Web albums in Samsung Galaxy s2. Settings Accounts and Sync. Tap your Google Account. Then uncheck Sync Picasa Web Albums. Back Tap Activate auto-sync for uncheck. After this, the picasa web albums from your gallery will be lost from your phone. Subscribe to: Posts (Atom). View my complete profile. Disable Auto sync of Picasa Web albums in Samsung . Word of the Day.
ksenthilraja.blogspot.com
Crazy $enthi£'s ...: Disable Auto sync of Picasa Web albums in Samsung Galaxy s2
http://ksenthilraja.blogspot.com/2012/02/disable-auto-sync-of-picasa-web-albums.html
Crazy $enthi£'s . Thursday, February 2, 2012. Disable Auto sync of Picasa Web albums in Samsung Galaxy s2. Settings Accounts and Sync. Tap your Google Account. Then uncheck Sync Picasa Web Albums. Back Tap Activate auto-sync for uncheck. After this, the picasa web albums from your gallery will be lost from your phone. I am trying to develop facebook,gmail style chat for my web site user.And also i want to entegrate facebook and gmail chat to my web site. So i install ejabberd server to localhost….
ksenthilraja.blogspot.com
Crazy $enthi£'s ...: March 2011
http://ksenthilraja.blogspot.com/2011_03_01_archive.html
Crazy $enthi£'s . Monday, March 14, 2011. Samsung I9100 Galaxy S II. Nowadays everything comes into our palm with the help of mobiles. Here is such a great mobile from Samsung I9100 Galaxy S II. Here are some of the attacting features of this phone. Dual-Core 1GHz ARM Cortex-A9 processor with 1GB RAM. Android OS V2.3 (Gingerbread). 8MP Primary camera with LED Flash, face and smile detection. 2MP secondary camera for video calls (3G). Web pages with flash player support. Labels: galaxy S II.
s-krishnakumar.blogspot.com
Krishna: Sql Data Types Equivalent to C# Data Type
http://s-krishnakumar.blogspot.com/2008/11/sql-data-types-equivalent-to-c-data.html
Monday, November 10, 2008. Sql Data Types Equivalent to C# Data Type. The Following things are to be useful for know the c# Data types which is equivalent to Sql Data types. Tiny int - - byte. Small int - - short. Int - - int. Bigint - - long. Varchar - - string. Bit - - bool. Small money - - decimal. Money - - decimal. Numeric - - decimal. Decimal - - decimal. Datetime - - datetime. Smalldatetime - - datetime. I hope its little bit useful for u all. Labels: Sql Data Types Equivalent to C# Data Type.
poornis.blogspot.com
Poornima: To create Dynamic DataTable and display in GridView
http://poornis.blogspot.com/2009/01/to-create-dynamic-datatable-and-display.html
Thursday, January 22, 2009. To create Dynamic DataTable and display in GridView. We can create DataTable dynamically and display the content either in GridView or DataList or in Repeater. DataTable dataTable = new DataTable();. DataTable.Columns.Add(new DataColumn("Title", typeof(string) );. DataTable.Columns.Add(new DataColumn("Description", typeof(string) );. DataTable.Columns.Add(new DataColumn("Author", typeof(string) );. DataRow = dataTable.NewRow();. DataRow[0] = post.Title;.
poornis.blogspot.com
Poornima: December 2008
http://poornis.blogspot.com/2008_12_01_archive.html
Friday, December 26, 2008. To avoid overflow of div without using overflow:hidden. If you are using div. Sometimes the div may overflow in IE6 browser.This is due to nesting of various div.So check the div top position.If u find placing of any div, overflows the existing div. Plz change the top. Property to avoid overflow of particular div. Friday, December 19, 2008. Refresh() method in Windows Application. Wednesday, December 17, 2008. To get ShortMonth in C#.net. DateTime actualDate = (DateTime)aDate;.
shaalinis.blogspot.com
Shaalini: Charts in Silverlight
http://shaalinis.blogspot.com/2010/09/charts-in-silverlight.html
Share your Knowledge in c#,Silverlight,.net. Sunday, September 12, 2010. I have been searching for a different types of charts in silverlight .I found a open source control called Visifire that supports WPF and Silverlight with the option of 3D View. Here is the link to draw the chart control. Http:/ visifire.codeplex.com/. Labels: Chart in Silverlight. That Link not Working as per now :(. June 7, 2011 at 5:52 AM. Subscribe to: Post Comments (Atom). View my complete profile.
shaalinis.blogspot.com
Shaalini: ErrorCode:4001 ErrorType:MediaError AG_E_NETWORK_ERROR
http://shaalinis.blogspot.com/2009/10/errorcode4001-errortypemediaerror.html
Share your Knowledge in c#,Silverlight,.net. Wednesday, October 14, 2009. ErrorCode:4001 ErrorType:MediaError AG E NETWORK ERROR. ErrorCode:4001 ErrorType:MediaError AG E NETWORK ERROR. I get the above error when i play a media file. It ruins my whole day. At last i found by adding the media file in the Bin Debug/Release folder and in the web i have added in the client bin folder. It solve my issue. Labels: 4001 ErrorType:MediaError AG E NETWORK ERROR. Subscribe to: Post Comments (Atom).
shaalinis.blogspot.com
Shaalini: September 2009
http://shaalinis.blogspot.com/2009_09_01_archive.html
Share your Knowledge in c#,Silverlight,.net. Wednesday, September 2, 2009. Search Query in sql. Hi ,I have the table name stipr and category with the following fields as follows. And category table with the field of. Now my requirement is i have to write the query with the different combination as followsfor ex:. Declare @IPRdate datetime,@IPRNo nvarchar(50),@DeliveredTo nvarchar(50),@Classification nvarchar(50),@RequiredFor nvarchar(50),@STCategoryID nvarchar(50),@MainStatus nvarchar(50). StcategoryID =...
shaalinis.blogspot.com
Shaalini: May 2009
http://shaalinis.blogspot.com/2009_05_01_archive.html
Share your Knowledge in c#,Silverlight,.net. Wednesday, May 20, 2009. SqlQuery To Export Data from Excel to Sql. Here is the query to. Export the data from Excel to sqlserver. CREATE TABLE [dbo].[Addresses Temp] (. INSERT INTO [dbo].[Address Temp] ( [FirstName], [LastName], [Address], [City], [State], [ZIP] ). SELECT [FirstName], [LastName], [Address], [City], [State], [ZIP]. FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',. Excel 8.0;Database=C: Source Addresses.xls;IMEX=1',. SELECT * FROM [Sheet1$]'). TimeSp...