473,396 Members | 1,858 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Winforms v webforms?

Hi all

First - I apologise if anyone recognises this from a previous post but
I never worded what I wanted to know properly and getting quick advice
is imperative to me now. In future I will never cross post but time is
a factor now and I appreciate any advice I have recieved

I am looking for some advice on when it is best to create a database
entry and management application using .net winforms or webforms

A scenario I am looking at is a LAN business network environment using
SQL Server to store the data. Users maintain and update their own
records

Are there some basic 'rules' as to when you use the ease of creating
and using a winforms application, as opposed to the ease of deployment
of a web forms application?

The known group of users is known and an Outlook group is easily
creatable for contact with the users.

Speed of development and ease of use for end users are major factors.
Users could number 60 and a typical size of the database would be a
total of 10,000 records

Thank you to anyone that can offer me any advice in an area I have
found to be quite a gray one :)

Regards

Dwight

May 7 '06 #1
5 1502
If you have .Net 2.0, you might look into building a ClickOnce application.
This is an executable that can automatically update itself with new
versions.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"dwight" <dw*********@gmail.com> wrote in message
news:11*********************@e56g2000cwe.googlegro ups.com...
Hi all

First - I apologise if anyone recognises this from a previous post but
I never worded what I wanted to know properly and getting quick advice
is imperative to me now. In future I will never cross post but time is
a factor now and I appreciate any advice I have recieved

I am looking for some advice on when it is best to create a database
entry and management application using .net winforms or webforms

A scenario I am looking at is a LAN business network environment using
SQL Server to store the data. Users maintain and update their own
records

Are there some basic 'rules' as to when you use the ease of creating
and using a winforms application, as opposed to the ease of deployment
of a web forms application?

The known group of users is known and an Outlook group is easily
creatable for contact with the users.

Speed of development and ease of use for end users are major factors.
Users could number 60 and a typical size of the database would be a
total of 10,000 records

Thank you to anyone that can offer me any advice in an area I have
found to be quite a gray one :)

Regards

Dwight

May 7 '06 #2
Dwight,
If you have .Net 2.0, you might look into building a ClickOnce
application. This is an executable that can automatically update itself
with new versions.
With what, Kevin like me sees probably not any advantages anymore for a
webform above a winform.

:-)

Cor

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> schreef in bericht
news:e0*************@TK2MSFTNGP05.phx.gbl... If you have .Net 2.0, you might look into building a ClickOnce
application. This is an executable that can automatically update itself
with new versions.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"dwight" <dw*********@gmail.com> wrote in message
news:11*********************@e56g2000cwe.googlegro ups.com...
Hi all

First - I apologise if anyone recognises this from a previous post but
I never worded what I wanted to know properly and getting quick advice
is imperative to me now. In future I will never cross post but time is
a factor now and I appreciate any advice I have recieved

I am looking for some advice on when it is best to create a database
entry and management application using .net winforms or webforms

A scenario I am looking at is a LAN business network environment using
SQL Server to store the data. Users maintain and update their own
records

Are there some basic 'rules' as to when you use the ease of creating
and using a winforms application, as opposed to the ease of deployment
of a web forms application?

The known group of users is known and an Outlook group is easily
creatable for contact with the users.

Speed of development and ease of use for end users are major factors.
Users could number 60 and a typical size of the database would be a
total of 10,000 records

Thank you to anyone that can offer me any advice in an area I have
found to be quite a gray one :)

Regards

Dwight


May 7 '06 #3
V
Consider this for web app:
1. Centrally managed application - Any logs, events, etc. will be
logged in a central place and can be managed more easily.
2. Licensing - Depending on how your licensing is structured, each one
of the windows applications might require a SQL Server CAL for
accessing the database.
3. Windows app Offline/Online mode - you would have to do additional
coding for scenarios where there is no or bad connectivity to the SQL
Server (for example, if it is down for maintenance)
4. Target environment - you will need to make sure that the target
framework (1.1 or 2.0) is installed on every desktop in case you go for
winforms. In case of webforms, of course you only need to take care of
1 server.
5. SQL Server connections - i am not too sure, but i suppose if every
windows client made a connection to the SQL server, it would have a
larger load then if a web-based app was using some kind of connection
pool and reusing connections. (Of course, you can also go ahead with a
windows client with web services on a server to fix this problem).
6. Performance - On a LAN-based network, you can provide a pretty
reactive, and fast performing UI in a web-based app.

Well these are a few things that I could quickly come up with.

Regards,
Vaibhav

May 7 '06 #4
> With what, Kevin like me sees probably not any advantages anymore for a
webform above a winform.
If I understand you correctly, you're saying that (in general) WebForms have
no advantages over WinForms. Well, I wouldn't say that. I would say that
WinForms are overall much easier to develop, and faster to use, but WebForms
definitely have their place. In a LAN environment, a WinForm would be the
logical choice, at least when you have ClickOnce to work with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Cor Ligthert [MVP]" <no************@planet.nl> wrote in message
news:em****************@TK2MSFTNGP02.phx.gbl... Dwight,
If you have .Net 2.0, you might look into building a ClickOnce
application. This is an executable that can automatically update itself
with new versions.

With what, Kevin like me sees probably not any advantages anymore for a
webform above a winform.

:-)

Cor

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> schreef in bericht
news:e0*************@TK2MSFTNGP05.phx.gbl...
If you have .Net 2.0, you might look into building a ClickOnce
application. This is an executable that can automatically update itself
with new versions.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"dwight" <dw*********@gmail.com> wrote in message
news:11*********************@e56g2000cwe.googlegro ups.com...
Hi all

First - I apologise if anyone recognises this from a previous post but
I never worded what I wanted to know properly and getting quick advice
is imperative to me now. In future I will never cross post but time is
a factor now and I appreciate any advice I have recieved

I am looking for some advice on when it is best to create a database
entry and management application using .net winforms or webforms

A scenario I am looking at is a LAN business network environment using
SQL Server to store the data. Users maintain and update their own
records

Are there some basic 'rules' as to when you use the ease of creating
and using a winforms application, as opposed to the ease of deployment
of a web forms application?

The known group of users is known and an Outlook group is easily
creatable for contact with the users.

Speed of development and ease of use for end users are major factors.
Users could number 60 and a typical size of the database would be a
total of 10,000 records

Thank you to anyone that can offer me any advice in an area I have
found to be quite a gray one :)

Regards

Dwight



May 8 '06 #5
No you don't understand me correctly. I mean it in the context of the OP
inside a Lan. I could have added that however for me that is obvious outside
that area the Winform has only disadvantages in my opinion. Where a Lan is
for me as well a Wan, that can be used as Lan with whatever technology..

But it is not bad you point on it, it could have been understood wrong.

Cor

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> schreef in bericht
news:eH**************@TK2MSFTNGP05.phx.gbl...
With what, Kevin like me sees probably not any advantages anymore for a
webform above a winform.


If I understand you correctly, you're saying that (in general) WebForms
have no advantages over WinForms. Well, I wouldn't say that. I would say
that WinForms are overall much easier to develop, and faster to use, but
WebForms definitely have their place. In a LAN environment, a WinForm
would be the logical choice, at least when you have ClickOnce to work
with.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Cor Ligthert [MVP]" <no************@planet.nl> wrote in message
news:em****************@TK2MSFTNGP02.phx.gbl...
Dwight,
If you have .Net 2.0, you might look into building a ClickOnce
application. This is an executable that can automatically update itself
with new versions.

With what, Kevin like me sees probably not any advantages anymore for a
webform above a winform.

:-)

Cor

"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> schreef in bericht
news:e0*************@TK2MSFTNGP05.phx.gbl...
If you have .Net 2.0, you might look into building a ClickOnce
application. This is an executable that can automatically update itself
with new versions.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"dwight" <dw*********@gmail.com> wrote in message
news:11*********************@e56g2000cwe.googlegro ups.com...
Hi all

First - I apologise if anyone recognises this from a previous post but
I never worded what I wanted to know properly and getting quick advice
is imperative to me now. In future I will never cross post but time is
a factor now and I appreciate any advice I have recieved

I am looking for some advice on when it is best to create a database
entry and management application using .net winforms or webforms

A scenario I am looking at is a LAN business network environment using
SQL Server to store the data. Users maintain and update their own
records

Are there some basic 'rules' as to when you use the ease of creating
and using a winforms application, as opposed to the ease of deployment
of a web forms application?

The known group of users is known and an Outlook group is easily
creatable for contact with the users.

Speed of development and ease of use for end users are major factors.
Users could number 60 and a typical size of the database would be a
total of 10,000 records

Thank you to anyone that can offer me any advice in an area I have
found to be quite a gray one :)

Regards

Dwight



May 8 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: BillyTheKid | last post by:
Are there any rules of thumb for when it is more appropriate to use WinForms over WebForms. It strikes me that WinForms is best suited for many/most "Intranet" and some "Extranet" scenarios but...
20
by: Martin Rosén-Lidholm | last post by:
Although an impossible question to answer, I fell urged to raise it anyhow. Given a fairly complex ERP application scenario, what's your estimation for the X-ratio dev. time for...
2
by: Mahesh Kumar.R | last post by:
I'm into designing an application in winforms but in near future my client may request the same thing in webforms. so (1) what are all the design guidelines and ways are there to migrate easily in...
4
by: 3Cooks | last post by:
I have a windows application written in Visual Basic 6.0 that is going to be redeveloped in dotNET. We are trying to decide if we should deploy using Webforms or Winforms and I need advice from...
2
by: Mark Rae | last post by:
Hi, Just looking for some v2 guidance here... In WebForms, the DropDownList control has an Items collection which contains ListItem objects which, in turn, very conveniently contain a text...
1
by: dwight | last post by:
Hi all I am looking for some advice on when it is best to create a database entry and management application using .net winforms or webforms A scenario I am looking at is a LAN business...
5
by: brian.wilson4 | last post by:
Our group is currently comparing winforms vs webforms.....app is Corp LAN based - we have control of desktops.....Below is pros and cons list we have come up with - if anything strikes you as...
5
by: Bit byte | last post by:
Can I use C# (Winforms) to design a website?. I am from C/C++ background but know nothing about Internet programming. My understanding of WebForms are that they are similar to WinForms in that...
4
by: Dean Slindee | last post by:
I would like to build a WinForm demo form to demonstrate the various controls, events, etc that WinForms can do that WebForms cannot. This is intended as an objective way to compare the various...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.