shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: Quick note on Microsoft.Net Thread.Start, Delegate.BeginInvoke, Control.BeginInvoke
http://shaikhnizam.blogspot.com/2014/02/quick-note-on-microsoftnet-threadstart.html
Tuesday, February 18, 2014. Quick note on Microsoft.Net Thread.Start, Delegate.BeginInvoke, Control.BeginInvoke. Starts a new OS thread to execute the delegate. When the delegate returns, the thread is destroyed. This is quite a heavy-weight operation (starting and destroying a thread) so you typically only do it if the method is going to be long-running. Posted by Shaikh Nizam Mohammad. July 18, 2016 at 6:15 AM. Optimized360 specialize in creating stunning custom designs for Funeral Homes.
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: April 2010
http://shaikhnizam.blogspot.com/2010_04_01_archive.html
Tuesday, April 13, 2010. Disaster Recovery Plan in SQL Server. We don't want to lose our data so is the disaster recovery plan comes into the picture, you can restore your data even your current database machine is dead. Busy database administrators can easily push this task onto the back burner with promises to themselves that they'll "take care of backups right after I finish this big project." However, take a moment and consider the value of your data to your organization? The first step in developing...
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: September 2009
http://shaikhnizam.blogspot.com/2009_09_01_archive.html
Sunday, September 6, 2009. Clear cache before generating the execution plan in SQL Server. Are you doing SQL query tuning? So you must be generating execution plan. Ok .so before generating execution plan of your SQL query you shoud flush the proc out of your database and clear cache/buffers.below are the script for that. 1 Command to flush the proc out of database. DBCC FLUSHPROCINDB (db id. Here db id you can find by using following query in you database. Now you will get exact execution plan. Insert i...
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: January 2014
http://shaikhnizam.blogspot.com/2014_01_01_archive.html
Monday, January 20, 2014. How to make asynchronous method call in C#. I created an application wherein I needed to call a method and forget it; the called method will perform several operations in background. I don’t want to wait for all the operation to be completed and then proceed. I wanted to call the method to perform the operations in background and meanwhile I can proceed with other operations. Demo Console Application: Programm.CS class. System.Collections.Generic;. Capture( "Call from Method A".
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: June 2011
http://shaikhnizam.blogspot.com/2011_06_01_archive.html
Saturday, June 4, 2011. Modifying Web.Config file and IIS Reset. What do you think changing in web.config file reset the IIS? When you say IIS RESET do you know IIS Reset stops and restarts the entire web server. Lets take a look at IIS. The Answer to the above question is NO. Another question is when you change/update dlls/drop new dlls in the bin directory of your web application, is that will reset IIS? Again the answer is NO, it. Posted by Shaikh Nizam Mohammad. Subscribe to: Posts (Atom).
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: Unable to cast COM object of type 'Microsoft.Office.Interop.PowerPoint.ApplicationClass' to interface type 'Microsoft.Office.Interop.PowerPoint._Application
http://shaikhnizam.blogspot.com/2013/08/unable-to-cast-com-object-of-type.html
Monday, August 5, 2013. Unable to cast COM object of type 'Microsoft.Office.Interop.PowerPoint.ApplicationClass' to interface type 'Microsoft.Office.Interop.PowerPoint. Application. Exception thrown by the system:-. Below is the most boring exception frustrated me every time when I debug the code. System.InvalidCastException was unhandled. Source=Microsoft.Office.Interop.PowerPoint. Read the entire post at :. Posted by Shaikh Nizam Mohammad. Subscribe to: Post Comments (Atom). SQL Reports and C#.Net.
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: Modifying Web.Config file and IIS Reset
http://shaikhnizam.blogspot.com/2011/06/modifying-webconfig-file-and-iis-reset.html
Saturday, June 4, 2011. Modifying Web.Config file and IIS Reset. What do you think changing in web.config file reset the IIS? When you say IIS RESET do you know IIS Reset stops and restarts the entire web server. Lets take a look at IIS. The Answer to the above question is NO. Another question is when you change/update dlls/drop new dlls in the bin directory of your web application, is that will reset IIS? Again the answer is NO, it. Posted by Shaikh Nizam Mohammad. Subscribe to: Post Comments (Atom).
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: March 2010
http://shaikhnizam.blogspot.com/2010_03_01_archive.html
Thursday, March 4, 2010. SQL server best practices and code review check list. I never forget one of my sproc in which i used cursor inside cursor and two temp table for each cursors, and processing huge records in the cursor now you can imagine performance of my sproc. Anyhow first phase of my application was developed and deployed successfully. Thank God it was not a customer project it was internal application for training purpose. At the end DB was stabilized. Validate all of the foreign keys are est...
shaikhnizam.blogspot.com
Shaikh Nizam's Microsoft.Net Blogs: May 2011
http://shaikhnizam.blogspot.com/2011_05_01_archive.html
Thursday, May 19, 2011. How to copy an image from an URL to own server and resize it. First: Download the image with Url. Second: Resize the image and save it into disk. For the first requirement, you can use WebClient class. Refer to the following code. Sender, System. EventArgs. WebClient wc = new. Data = wc.DownloadData( "http:/ www.google.cn/intl/en-us/images/logo cn.gif". System.Drawing.Image img = System.Drawing.Image.FromStream(ms);. GetThumbnailImage(img); / Resize Image. ImgHeight / 100 : ( float.