c#

c# (9)

c# tips

Sunday, 30 December 2012 13:56

how to run c# desktop application with full screen

Written by
Rate this item
(0 votes)

If you want to run your software with same width and
height as your monitor's width and height then
implement the following technique in your application-

Monday, 14 January 2013 13:56

how to use verbatim string

Written by
Rate this item
(0 votes)

verbatim string is a string which is interpreted
by the compiler exactly as it is written, meaning
that even if the string spans multiple lines
or keeps escape characters,etc.

Monday, 15 April 2013 13:56

how to validate a email address by c#

Written by
Rate this item
(0 votes)

It's a very logical requirement to validate user entered email
address before processing anything.in this way you will
never get a invalid email address when you do something
with email address like send email,etc.

Rate this item
(0 votes)

access database file is easy to use than sql server
or MySql server databases.for accessing access db
System.Data.OleDb namespace used.following are
steps are needed to use access db in .net
application.

Friday, 28 December 2012 13:56

keyword base

Written by
Rate this item
(0 votes)

the base keyword is used to access base class
members inside derived class.

Saturday, 29 December 2012 13:54

how to display plain text removing all html tags

Written by
Rate this item
(0 votes)

if you having a lot html strings,you may want to
have only plain text removing all html tags.you
can do it using REGEX

Monday, 14 January 2013 18:14

how to show tips when windows application starts

Written by
Rate this item
(0 votes)

It's a great idea to show application related tips
when users run your application.you may show tips
about how to use your application efficiently,details
of your application terms,etc.

Rate this item
(0 votes)

if you want to prevent running multiple instance
of the same c# application then check the
following lines.It's sometime necessary to prevent
running multiple instances of the same application.

Rate this item
(0 votes)

It's nice to show cool gradient color as a
background color of the form in c#.net desktop
application.you can set different colors.


Latest discussions

  • No posts to display.