C-Sharp: Changing font of all controls in run time

Thursday, 7 April 2011 07:26 by Anupama
Some time it required when we want to change font of all controls in windows forms or dialogs. For doing this there is one very simple method by using which you can change font of all controls. and by using some conditions and trick you can make this function more useful. [More]

Using SQLite Database With Dotnet C-Sharp

Thursday, 10 March 2011 06:08 by sheel
SQLite ado.net provider explaination with example in c sharp.
SQLite is an small database. It is ACID-compliant and very small in size and used as in process lib( dll/lib/so or any other library format). This database is used as part of application but not as separate process. [More]

C-Sharp : What is dynamic type and DLR ?

Wednesday, 9 March 2011 06:24 by sheel
Dynamic in c-sharp with simple description and use scenario example.
DLR provides set of services to CLR for supporting dynamic languages.
DLR has basically three services.
Expression trees: DRL uses expression trees to represent language semantics. [More]

C-Sharp: AutoComplete Text Box and Combo Box

Sunday, 20 February 2011 07:14 by sheel
I can remember in VB 6 for auto complete text in ComboBox and TextBox, we are writing codes for doing that. This auto complete features are also available with several web browse. [More]

C-Sharp: Calling Dotnet function from JavaScript and Accessing HTML element from Dotnet with Web browser control

Thursday, 6 January 2011 07:01 by Anupama
Some time it is required to access dotnet class methods from java script when working Web Browser control in dotnet and crolling web pages from dotnet program. For this dotnet Web browser control provides several properties and methods to do these kind of operations.javascript methods using dotnet program and accessing html controls using dotnet c#. [More]

C-Sharp : Useful tips to increase performance of program

Friday, 24 December 2010 19:05 by Anupama
In your dotnet program type casting is a costly operation in program execution and you should always try to reduce casting operation especially in loops.
For example suppose you want to find all text boxes on a form and want to manipulate some property of text boxes. For this i have written following code [More]

C-Sharp: Interesting Facts of Constants

Tuesday, 14 December 2010 06:41 by Anupama
Constant is a symbol which value will never change in program life cycle. Values of constants is determined at compile time. You can also say constant a static member not an instance member which value will never change. [More]

C-Sharp: How and When to use Dispose Pattern ?

Monday, 13 December 2010 12:25 by Admin
As we know, In dotnet program we don't need to delete(Cleanup) objects by our self because dotnet program is a managed code and there is garbage collector to do cleanups very efficiently for unused objects when required. [More]

C-sharp: When to mark class and members static

Thursday, 14 October 2010 09:22 by Anupama
This is very straight forward, when your object need to share some variable values then make them static. There will be only one memory allocation to that variable which will be accessible for all objects. For more clarity in c#, you can't access static members using object. You can access it by using class name. [More]

Very Basic .Net Interview Questions Part 2

Tuesday, 12 October 2010 08:16 by Anupama
Basic interview question of .net framework part 2 [More]