markand-bhatt.blogspot.com
Developer's Help: String To Pdf Converter
http://markand-bhatt.blogspot.com/2010/03/string-to-pdf-converter_12.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Friday, March 12, 2010. String To Pdf Converter. This dll helps you to convert your string format data into pdf file. Follow the steps to implement it. The Pdf will be available from http:/ www.box.net/CSharpControls. Download StringToPdf.dll to your computer. 2 Click on Add Reference and the following window will be opened. Here is the example.
markand-bhatt.blogspot.com
Developer's Help: Days gap between two dates in ORACLE
http://markand-bhatt.blogspot.com/2011/01/days-gap-between-to-dates-in-oracle.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Wednesday, January 5, 2011. Days gap between two dates in ORACLE. To find out days gap between two dates excluding business holidays in oracle use following query. SELECT TO DATE(StartDate) level - 1 dt FROM dual CONNECT BY level =(TO DATE(EndDate)-TO DATE(StartDate) ). Where to char (dt,'D') 1. Below written query is the example of it. Game - word guess.
markand-bhatt.blogspot.com
Developer's Help: Random Color Generator in C# .net
http://markand-bhatt.blogspot.com/p/random-color-generator-in-c-net.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Random Color Generator in C# .net. This dll helps to generate random color in windows as well as web application. This dll helps you to generate random colors out of 10 million colors. There are 2 methods. 2 RotateBackColor(control, interval) 1 overload method. 3 RotateForeColor(control,interval) 1 overload method. This method will generate Random color.
markand-bhatt.blogspot.com
Developer's Help: Failed To Load Viewstate
http://markand-bhatt.blogspot.com/2011/12/failed-to-load-viewstate.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Thursday, December 22, 2011. Failed To Load Viewstate. Once I encountered the following error. Failed to load viewstate. The control tree into which viewstate is being loaded must match the control tree that was used to save viewstate during the previous request. I searched a lot on google and finally i found one solution. Online Exclusive for New Custome...
markand-bhatt.blogspot.com
Developer's Help: January 2011
http://markand-bhatt.blogspot.com/2011_01_01_archive.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Wednesday, January 5, 2011. Days gap between two dates in ORACLE. To find out days gap between two dates excluding business holidays in oracle use following query. SELECT TO DATE(StartDate) level - 1 dt FROM dual CONNECT BY level =(TO DATE(EndDate)-TO DATE(StartDate) ). Where to char (dt,'D') 1. Below written query is the example of it. Game - word guess.
markand-bhatt.blogspot.com
Developer's Help: October 2011
http://markand-bhatt.blogspot.com/2011_10_01_archive.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Saturday, October 1, 2011. Maintain tabs in SpryTabbedPanels. This post helps you to maintain the tab index of spry tabpanal at every post back event. I have done small changes in SpryTabbedPanels.js for this post back purpose. You can download the upgraded version of SpryTabbedPanels.js at. To use this script follow the steps. Subscribe to: Posts (Atom).
markand-bhatt.blogspot.com
Developer's Help: November 2012
http://markand-bhatt.blogspot.com/2012_11_01_archive.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Tuesday, November 27, 2012. Find Height and Width of image using C#. I know, there are some requirements in which we need to find out the image's height and width. Either the image is on server or it's been uploaded using fileupload control in asp.net using C#. My favourite language is C#, so this code is also written in C#. System.Drawing. Image. Simple ...
markand-bhatt.blogspot.com
Developer's Help: December 2011
http://markand-bhatt.blogspot.com/2011_12_01_archive.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Thursday, December 22, 2011. Failed To Load Viewstate. Once I encountered the following error. Failed to load viewstate. The control tree into which viewstate is being loaded must match the control tree that was used to save viewstate during the previous request. I searched a lot on google and finally i found one solution. Online Exclusive for New Custome...
markand-bhatt.blogspot.com
Developer's Help: Shortcuts of visual studio
http://markand-bhatt.blogspot.com/p/shortcuts-of-visual-studio.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Shortcuts of visual studio. Shortcuts after selecting some code area. 1 Comment = ctrl k c. 2 Remove comment ctrl k u. 3 Make region of Selected code ctrl K S. 4 Make function of selected code Ctrl R M. 1 Delete all break points Ctrl shift f9. 2 To put break point or to remove break point = F9. 3 Solution Explorer =ctrl alt L. 4 Properties bar= F4.
markand-bhatt.blogspot.com
Developer's Help: Delete file which is already in use using C#.net
http://markand-bhatt.blogspot.com/2011/02/delete-file-which-is-already-in-use.html
This blog provides free C# controls as well as some tips and tricks to play with code. Feel free to use it any time. There was an error in this gadget. Friday, February 11, 2011. Delete file which is already in use using C#.net. Sometime scenario arises where we need to delete a file using C#. But sometime an error is thrown like "File is already in use. Not able to delete". Here is the solution to delete that file. FileInfo f = new FileInfo(FullFileName);. October 31, 2011 at 3:21 PM. Game - word guess.