Sunday, September 27, 2009
Thursday, September 24, 2009
OledbException: " Data type mismatch in criteria expression"
This exception happens today when I have columns with characters "." (Dot) or "-" (Hyphen).
Try to avoid this if possible.
Try to avoid this if possible.
Wednesday, September 23, 2009
Office Open XML examples
http://blogs.msdn.com/brian_jones/archive/tags/Zeyad_2700_s+SDK+Examples/default.aspx
http://social.msdn.microsoft.com/Forums/en-US/oxmlsdk/thread/b88e07f6-c146-4990-8f61-c73ceafa186d
MSDN How do I
http://msdn.microsoft.com/en-us/library/cc850837%28office.14%29.aspx
Open XML format resources center
http://msdn.microsoft.com/en-us/office/bb265236.aspx
Creating pivot table in excel 2007
http://msdn.microsoft.com/en-us/library/dd891207.aspx
Office Developer Community Submitted Content
http://msdn.microsoft.com/en-us/office/cc441428.aspx
http://social.msdn.microsoft.com/Forums/en-US/oxmlsdk/thread/b88e07f6-c146-4990-8f61-c73ceafa186d
MSDN How do I
http://msdn.microsoft.com/en-us/library/cc850837%28office.14%29.aspx
Open XML format resources center
http://msdn.microsoft.com/en-us/office/bb265236.aspx
Creating pivot table in excel 2007
http://msdn.microsoft.com/en-us/library/dd891207.aspx
Office Developer Community Submitted Content
http://msdn.microsoft.com/en-us/office/cc441428.aspx
SMS length problem
if a sms contains a double-byte (chinese) characters, all the characters in the sms will be counted as double byte characters.
Sunday, September 20, 2009
Build iphone app with C# using monotouch
YouTube - MonoTouch iPhone Hello World
http://www.youtube.com/watch?v=M0VoyhKFmWg
http://www.youtube.com/watch?v=M0VoyhKFmWg
Speed up your javascript Tutorial
Speed up your javascript:
http://www.youtube.com/watch?v=mHtdZgou0qU&feature=channel_page
Great Tutorial!
http://www.youtube.com/watch?v=mHtdZgou0qU&feature=channel_page
Great Tutorial!
Friday, September 18, 2009
Thursday, September 17, 2009
jQuery UI datepicker js error: length is null or not an object
This bug happens when using jQuery UI datepicker together with asp.net validator
http://code.google.com/p/jquery-datepicker/issues/detail?id=56
http://dev.jqueryui.com/ticket/4071
http://code.google.com/p/jquery-datepicker/issues/detail?id=56
http://dev.jqueryui.com/ticket/4071
Wednesday, September 16, 2009
Tuesday, September 15, 2009
Monday, September 14, 2009
Select 30% of records randomly in SQL Server
select top 30 percent * from [table_name] ORDER BY NEWID()
select 30% of records of last month
select top 30 percent * from[table_name]
and DatePart(""m"", date_created) = DatePart(""m"", DateAdd(""m"", -1, getdate()))
AND DatePart(""yyyy"", date_created) = DatePart(""yyyy"", DateAdd(""m"", -1, getdate()))
ORDER BY NEWID()
select 30% of records of last month
select top 30 percent * from[table_name]
and DatePart(""m"", date_created) = DatePart(""m"", DateAdd(""m"", -1, getdate()))
AND DatePart(""yyyy"", date_created) = DatePart(""yyyy"", DateAdd(""m"", -1, getdate()))
ORDER BY NEWID()
Sunday, September 13, 2009
HttpContext.Current.Cache.Insert
HttpContext.Current.Cache.Insert
this.Page.ClientScript.RegisterClientScriptBlock
this.Page.ClientScript.RegisterClientScriptBlock
Wednesday, September 9, 2009
Is the Internet Killing Critical Thinking?
http://www.technewsworld.com/rsstory/68059.html?wlc=1252563156
Tuesday, September 8, 2009
Sunday, September 6, 2009
Subscribe to:
Posts (Atom)