Difference between window application and web application

What is the difference between window application and web application

TAGS: Web, Web application, Window, Window application, Window programming, web application programming

Web application is always accessed via any web browser, whether its google chorome, ms internet explorer, mozilla firefox or any, these applications are accessed over a network, they follow some TCP/IP protocols to run. While Window applications are run under microsoft operating system. they run under 32 bit window versions, nowdays web application are more popular than window application.

Read More

How to develop simple login control in window application with C#

Login Control for Window based application

Tags:Login Control, Develop Login Control, Develop Logn control in window application, Login control in c#

Login Control allows authorized users to access a particular window, whether its admin or any local user, Login control provides the user interface to log in a protected form or window to access assests of any software, Login controls are used both in web and window based application, These are very basic control to be used by every software or application, Here we will teach you how to create simple login control in window application using c# with SQl SERVER 2008.

Read More

How to develop simple login control in web application

Login Control for Web based application

Tags:Login Control, Develop Login Control, Develop Logn control in web application, Login control in c#

Login control in web based applications is very important control as it restricts unauthorized to get access of valuable online stuff, whether its admin section to maintain the website, or your mail account, Login control allows user to log into there accout to view/modify the desired changes. Here we will teach you to develop dynamic login control in web based applications using C# with MS sql server 2008.

Read More

What is the difference between app.config and web.config

Difference between app.config and web.config

Tags:Web.config, app.config, difference between app.config and web.config

The importance of config files is that all web.config, app.config and machine.config are those which store configuration data in XML format and need to configure data at application level. Web.config is used for asp.net projects wheras app.config is used in window applications, console application or WPF application.

Read More

Developing Crystals report with visual studio 2008 with c#

Developing Basic Crystal Report

Tags:Crystal Report, Crystal Repoort with Visual Studio 2008, Crystal Report with C#, Crystal Report with C# 2008

Those reports which are generated from wide datasources, and which is a business intelligence application that is used to design and generate report from various and wide range of datasource such as SQL SERVER, EXCEL are know are crystal report.

Read More

How to pass values between two different window form

Pass Values between two window form

TAGS:Pass values between forms, Forms, Window Application, Pass string between two forms, C# application development

In order to communicate between the forms, each of forms capable of generating an event contains declarations for a delegate and an event. A delegate may be thought of as a type safe function pointer and delegates are associated with methods that bear the same signature. An event is a device used to notify listening objects that something has happened; events are associated with a delegate when instantiated.

Read More

How to use list view control in window application with C#

Listview control in window application

TAGS:List view control in c#, List view control with window application with C#, how to use list view

The ListView class resides in the System.Windows.Forms namespace. It is a Windows control and is derived from the System.Windows.Forms.Control class. It has only one constructor, which is a no-argument constructor. You can add a ListView control to a Windows form just like you would other controls.

Read More

How to show SQL database values in a combobox

Retreive values in combobox from sql server

TAGS:Database, MS SQL 2008, Database values in a combobox, Show database values in a combobox, Integrate database field in combobox c#

Some times that are situations in which we have to call a column value from SQL server database table in a combobox, for example if i have employee table and i want to call CODE of all employee in a combobox then i have to integrate my combobox with that sql server table, In this artcile we will teach and will give you the source code to call column value in a combobox.

Read More

Developing mail sending application in window based application with C#

Mail sending application in window application

TAGS:Mail sending application, Sending mail by window application, send mail, window application, C# mail send.

E-mail sending is very vital and important tool for nowdays applications, whether its web based application or window based application, mail sending to clients or to internal employees is must. Here we will teach you how you can develop simple mail sending application with use of your SMTP, We will also tech you how you can send mail using your G-mail address.

Read More

How to create setup.exe of a window application project

Setup.exe in window application

TAGS:Setup.exe, creating setup.exe, window application in C#, setup.exe in C#

Setup.exe is a deployment project. It is the process by which you distribute a finished application or component to be installed on other computers. There are two type of deployment projects ClickOnce Deployment and Windows Installer.

Read More