473,770 Members | 1,652 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Web vs Windows Application

It is really painfull when migrating from Windows Application to Web
Application. it's because web application has so many weakness which have
the user to use 'more mouse' than 'keyboard' it self. it's really dont fit
for Point of Sale System which is need faster data entry. is it anyway we
can handle this ??

Thanks
Seth
Sep 28 '06 #1
12 1855
You might want to look into "ClickOnce" which is viable now in closed
organizational environments. Or you might want to look at the July CTP of
Atlas classes that implement AJAX that make the web experience smoother. I
have a couople of demos of AJAX at my website - one with and one without
Atlas.

--
Regards,
Gary Blakely
Dean Blakely & Associates
www.deanblakely.com
"Seth Bourne" <se*****@yahoo. comwrote in message
news:u4******** *****@TK2MSFTNG P06.phx.gbl...
It is really painfull when migrating from Windows Application to Web
Application. it's because web application has so many weakness which have
the user to use 'more mouse' than 'keyboard' it self. it's really dont fit
for Point of Sale System which is need faster data entry. is it anyway we
can handle this ??

Thanks
Seth

Sep 28 '06 #2
hi Seth,
you're absolutely right, a windows application can have a vastly superior
interface because it is not restricted to the limited web control set, as
well as being free of the form-postback model which can be difficult to work
with.

however having said all that, i have designed large scale data entry
applications based on web forms. if you code it right it can be very quick.
several people use the app all day every day and they have got very quick
using it. e.g. when a user saves a form, instead of showing a message
"Thank you" and then getting them to click to enter a new form, i have found
it faster to show a javascript alert (easy to dismiss by hitting 'Enter')
and then redirect the user automatically to enter another of the same form.
also, make sure to use the TabOrder properties of the input controls because
data entry people generally use these extensively to reduce mouse
clicks/movements.

you can embed a winform inside a web browser but your users still have to
have the .Net framework installed, in which case it would be simpler to just
use normal winforms.

have a look at AJAX technologies for .Net which allow for very dynamic web
forms, overcoming a lot of the clunkiness of the postback model.

if possible make sure your users all have up-level browsers, to make the
best use of client-side validation.

i hope this helps
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:u4******** *****@TK2MSFTNG P06.phx.gbl...
It is really painfull when migrating from Windows Application to Web
Application. it's because web application has so many weakness which have
the user to use 'more mouse' than 'keyboard' it self. it's really dont fit
for Point of Sale System which is need faster data entry. is it anyway we
can handle this ??

Thanks
Seth

Sep 28 '06 #3
Seth,

Migrating from Windows to web is indeed painful, like any other migration
from one country to another, from one culture to another.

With a bit of client-side programming you can setup quite comprehensive
keyboard support for your application. Many navigation controls provide
built-in support for keyboard navigation.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
"Seth Bourne" <se*****@yahoo. comwrote in message
news:u4******** *****@TK2MSFTNG P06.phx.gbl...
It is really painfull when migrating from Windows Application to Web
Application. it's because web application has so many weakness which have
the user to use 'more mouse' than 'keyboard' it self. it's really dont fit
for Point of Sale System which is need faster data entry. is it anyway we
can handle this ??

Thanks
Seth

Sep 28 '06 #4
I'm using MASTER-DETAIL method to do the job. where MASTER is detailview and
DETAIL is gridview. i think most user will got the problem when editing the
gridview. they have to 'click' EDIT to edit the row and 'click' ADD to add
the new row.. 'mouse-less' methodology will not be reached..

the win form is a good idea, but we've should install .net framework in the
client machine. it's a great idea, but the problem comes when i host the
application into third party hosting company. i dont think all my client
have .net framework cause of large operating system environment.

can i see your data entry application to compare with my needs ?

thanks.

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
hi Seth,
you're absolutely right, a windows application can have a vastly superior
interface because it is not restricted to the limited web control set, as
well as being free of the form-postback model which can be difficult to
work with.

however having said all that, i have designed large scale data entry
applications based on web forms. if you code it right it can be very
quick. several people use the app all day every day and they have got very
quick using it. e.g. when a user saves a form, instead of showing a
message "Thank you" and then getting them to click to enter a new form, i
have found it faster to show a javascript alert (easy to dismiss by
hitting 'Enter') and then redirect the user automatically to enter another
of the same form.
also, make sure to use the TabOrder properties of the input controls
because data entry people generally use these extensively to reduce mouse
clicks/movements.

you can embed a winform inside a web browser but your users still have to
have the .Net framework installed, in which case it would be simpler to
just use normal winforms.

have a look at AJAX technologies for .Net which allow for very dynamic web
forms, overcoming a lot of the clunkiness of the postback model.

if possible make sure your users all have up-level browsers, to make the
best use of client-side validation.

i hope this helps
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:u4******** *****@TK2MSFTNG P06.phx.gbl...
>It is really painfull when migrating from Windows Application to Web
Application. it's because web application has so many weakness which have
the user to use 'more mouse' than 'keyboard' it self. it's really dont
fit for Point of Sale System which is need faster data entry. is it
anyway we can handle this ??

Thanks
Seth


Sep 28 '06 #5
hi Seth,
sorry buddy, my app took several months to write and i was under contract
that whole time :)

honestly the main thing that would help is my suggestion to use javascript
pop up alerts to show messages (instead of requiring another click/postback)
and use tab order on all your textboxes/menus, and the shortcut keys as
Eliyahu suggested.
also, you should use Form.DefaultFoc us and Form.DefaultBut ton on all your
pages so that your users can start typing straight away, and hit enter to
achieve the desired result.

good luck.
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:OV******** ********@TK2MSF TNGP02.phx.gbl. ..
I'm using MASTER-DETAIL method to do the job. where MASTER is detailview
and DETAIL is gridview. i think most user will got the problem when
editing the gridview. they have to 'click' EDIT to edit the row and
'click' ADD to add the new row.. 'mouse-less' methodology will not be
reached..

the win form is a good idea, but we've should install .net framework in
the client machine. it's a great idea, but the problem comes when i host
the application into third party hosting company. i dont think all my
client have .net framework cause of large operating system environment.

can i see your data entry application to compare with my needs ?

thanks.

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
>hi Seth,
you're absolutely right, a windows application can have a vastly superior
interface because it is not restricted to the limited web control set, as
well as being free of the form-postback model which can be difficult to
work with.

however having said all that, i have designed large scale data entry
applications based on web forms. if you code it right it can be very
quick. several people use the app all day every day and they have got
very quick using it. e.g. when a user saves a form, instead of showing a
message "Thank you" and then getting them to click to enter a new form, i
have found it faster to show a javascript alert (easy to dismiss by
hitting 'Enter') and then redirect the user automatically to enter
another of the same form.
also, make sure to use the TabOrder properties of the input controls
because data entry people generally use these extensively to reduce mouse
clicks/movements.

you can embed a winform inside a web browser but your users still have to
have the .Net framework installed, in which case it would be simpler to
just use normal winforms.

have a look at AJAX technologies for .Net which allow for very dynamic
web forms, overcoming a lot of the clunkiness of the postback model.

if possible make sure your users all have up-level browsers, to make the
best use of client-side validation.

i hope this helps
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:u4******* ******@TK2MSFTN GP06.phx.gbl...
>>It is really painfull when migrating from Windows Application to Web
Application . it's because web application has so many weakness which
have the user to use 'more mouse' than 'keyboard' it self. it's really
dont fit for Point of Sale System which is need faster data entry. is it
anyway we can handle this ??

Thanks
Seth



Sep 28 '06 #6

How do you set the Form.DefaultFoc us and Form.DefaultBut ton?

THX

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:eT******** ******@TK2MSFTN GP06.phx.gbl...
hi Seth,
sorry buddy, my app took several months to write and i was under contract
that whole time :)

honestly the main thing that would help is my suggestion to use javascript
pop up alerts to show messages (instead of requiring another
click/postback) and use tab order on all your textboxes/menus, and the
shortcut keys as Eliyahu suggested.
also, you should use Form.DefaultFoc us and Form.DefaultBut ton on all your
pages so that your users can start typing straight away, and hit enter to
achieve the desired result.

good luck.
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:OV******** ********@TK2MSF TNGP02.phx.gbl. ..
>I'm using MASTER-DETAIL method to do the job. where MASTER is detailview
and DETAIL is gridview. i think most user will got the problem when
editing the gridview. they have to 'click' EDIT to edit the row and
'click' ADD to add the new row.. 'mouse-less' methodology will not be
reached..

the win form is a good idea, but we've should install .net framework in
the client machine. it's a great idea, but the problem comes when i host
the application into third party hosting company. i dont think all my
client have .net framework cause of large operating system environment.

can i see your data entry application to compare with my needs ?

thanks.

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:%2******* *********@TK2MS FTNGP05.phx.gbl ...
>>hi Seth,
you're absolutely right, a windows application can have a vastly
superior interface because it is not restricted to the limited web
control set, as well as being free of the form-postback model which can
be difficult to work with.

however having said all that, i have designed large scale data entry
application s based on web forms. if you code it right it can be very
quick. several people use the app all day every day and they have got
very quick using it. e.g. when a user saves a form, instead of showing
a message "Thank you" and then getting them to click to enter a new
form, i have found it faster to show a javascript alert (easy to dismiss
by hitting 'Enter') and then redirect the user automatically to enter
another of the same form.
also, make sure to use the TabOrder properties of the input controls
because data entry people generally use these extensively to reduce
mouse clicks/movements.

you can embed a winform inside a web browser but your users still have
to have the .Net framework installed, in which case it would be simpler
to just use normal winforms.

have a look at AJAX technologies for .Net which allow for very dynamic
web forms, overcoming a lot of the clunkiness of the postback model.

if possible make sure your users all have up-level browsers, to make the
best use of client-side validation.

i hope this helps
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:u4****** *******@TK2MSFT NGP06.phx.gbl.. .
It is really painfull when migrating from Windows Application to Web
Applicatio n. it's because web application has so many weakness which
have the user to use 'more mouse' than 'keyboard' it self. it's really
dont fit for Point of Sale System which is need faster data entry. is
it anyway we can handle this ??

Thanks
Seth



Sep 29 '06 #7

Seth Bourne wrote:
It is really painfully when migrating from Windows Application to Web
Application. it's because web application has so many weakness which have
the user to use 'more mouse' than 'keyboard' it self. it's really dint fit
for Point of Sale System which is need faster data entry. is it anyway we
can handle this ??

Thanks
Seth
Hi Seth,

I would like to introduce you to a new technology called Visual WebGui
which basically lets you develop in WinForms like API and design time
capabilities for creating a rich internet application. WebForms/ASP.NET
technology has evolved from being a web site developing environment to
being a enhanced web site developing environment but in no way has
eased building web sites that are actually applications.

Visual WebGui brings desktop methodologies to web development instead
of the current trend to try to enhance web environments to be able to
create web applications.

Visual WebGui is using the underlining web HTTP protocol but as opposed
to current web development environments does not require the developer
to architect his application using web concepts. The developer programs
in WinForms like environment and a runtime engine in turn uses the HTTP
protocol to reflect the application to the client browser. Visual
WebGui is not a code generator but rather a runtime environment )as
opposed to GWT for example) and by that allows unlimited application
complexity with no affect on band width consumption (again as opposed
to GWT which compiles the application to JavaScript).

Visual WebGui can help you migrate an existing WinForms application as
your architecture does not change. There are some differences that had
to be applied to support the asynchronous nature of AJAX.

You can see a live sample app here
(http://samples.visualwebgui.com/mainform.wgx) and learn some more here
(http://www.visualwebgui.com). There are some very useful videos that
gives you a quick understanding of the Visual WebGui environment.

Sincerely,
Guy Peled

Sep 29 '06 #8
q
Either use Ajax or WPF. Both rock. If you use WPF, you can use WPF/E
to expose it to your clients (Firefox, Safari, IE). My primary
specialty for the past 6 years has been Ajax development and I've done
all kinds of crazy stuff like that, but WPF is too awesome for words
and I've switched. Seriously, look into it...

Seth Bourne wrote:
It is really painfull when migrating from Windows Application to Web
Application. it's because web application has so many weakness which have
the user to use 'more mouse' than 'keyboard' it self. it's really dont fit
for Point of Sale System which is need faster data entry. is it anyway we
can handle this ??

Thanks
Seth
Sep 29 '06 #9
hi Scott,
the 'Form' object is a new property of the Page object in .Net 2.0.
so you can use code like this (all equivalent):

Page.Form.Defau ltFocus = this.textbox1.C lientID;
this.Page.Form. DefaultFocus = this.textbox1.C lientID;
this.Form.Defau ltFocus = this.textbox1.C lientID;

the same goes for DefaultButton.
hope this helps
tim

"Scott D Johnson" <sc*****@comcas t.netwrote in message
news:et******** ******@TK2MSFTN GP03.phx.gbl...
>
How do you set the Form.DefaultFoc us and Form.DefaultBut ton?

THX

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:eT******** ******@TK2MSFTN GP06.phx.gbl...
>hi Seth,
sorry buddy, my app took several months to write and i was under contract
that whole time :)

honestly the main thing that would help is my suggestion to use
javascript pop up alerts to show messages (instead of requiring another
click/postback) and use tab order on all your textboxes/menus, and the
shortcut keys as Eliyahu suggested.
also, you should use Form.DefaultFoc us and Form.DefaultBut ton on all your
pages so that your users can start typing straight away, and hit enter to
achieve the desired result.

good luck.
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:OV******* *********@TK2MS FTNGP02.phx.gbl ...
>>I'm using MASTER-DETAIL method to do the job. where MASTER is detailview
and DETAIL is gridview. i think most user will got the problem when
editing the gridview. they have to 'click' EDIT to edit the row and
'click' ADD to add the new row.. 'mouse-less' methodology will not be
reached..

the win form is a good idea, but we've should install .net framework in
the client machine. it's a great idea, but the problem comes when i host
the application into third party hosting company. i dont think all my
client have .net framework cause of large operating system environment.

can i see your data entry application to compare with my needs ?

thanks.

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:%2****** **********@TK2M SFTNGP05.phx.gb l...
hi Seth,
you're absolutely right, a windows application can have a vastly
superior interface because it is not restricted to the limited web
control set, as well as being free of the form-postback model which can
be difficult to work with.

however having said all that, i have designed large scale data entry
applicatio ns based on web forms. if you code it right it can be very
quick. several people use the app all day every day and they have got
very quick using it. e.g. when a user saves a form, instead of showing
a message "Thank you" and then getting them to click to enter a new
form, i have found it faster to show a javascript alert (easy to
dismiss by hitting 'Enter') and then redirect the user automatically to
enter another of the same form.
also, make sure to use the TabOrder properties of the input controls
because data entry people generally use these extensively to reduce
mouse clicks/movements.

you can embed a winform inside a web browser but your users still have
to have the .Net framework installed, in which case it would be simpler
to just use normal winforms.

have a look at AJAX technologies for .Net which allow for very dynamic
web forms, overcoming a lot of the clunkiness of the postback model.

if possible make sure your users all have up-level browsers, to make
the best use of client-side validation.

i hope this helps
tim

"Seth Bourne" <se*****@yahoo. comwrote in message
news:u4***** ********@TK2MSF TNGP06.phx.gbl. ..
It is really painfull when migrating from Windows Application to Web
Application . it's because web application has so many weakness which
have the user to use 'more mouse' than 'keyboard' it self. it's really
dont fit for Point of Sale System which is need faster data entry. is
it anyway we can handle this ??
>
Thanks
Seth
>




Sep 29 '06 #10

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

Similar topics

3
2669
by: Michael | last post by:
Hi, I have a windows service developed using c# and it needs to lunch another windows application. I have been trying to use Process class to do it but the problem is becase windows service running at background and using system account, so the applcation it lunchs is also running at the background. is there a way to lunch the windows application as current logged in user? Thanks
9
2823
by: Rajat Tandon | last post by:
Hello there, I am relatively new to the newsgroups and C#. I have never been disappointed with the groups and always got the prompt replies to my queries.This is yet another strange issue, I am facing. Please please help me to solve this as soon as possible. So here we go ... I am not able to take the screen shot of the windows form based "Smart
9
7272
by: SP | last post by:
Hi All, I wrote a windows service which is supposed to stop after specified amount of time. I am calling OnStop() after specified time. OnStop() methods executed but I dont see the service stopping. Please advise how to stop the service. Thanks, SP
4
2423
by: Kristof Despiere | last post by:
Suppose you have one domain, filled with a couple of users. What needs to be done now is I need to start a windows application from a webform by pressing a button on the webform (for example). The problem is that the user who "owns" the service is always the ASPNET account. That's not good since you don't see the actual application (because it's owned by ASPNET). I've tried changed the processmodel section in the machine.config file to...
4
4182
by: tshad | last post by:
What would be a good way to check programmatically whether a service was running? We have a service that dies periodically and I need to check to see if this service is running. I know how to check to see if the status is in stopped or running mode. But that doesn't tell me if it is actually running. I need to know this so that if it happens I can programmatically start the same service on another machine.
15
7088
by: =?Utf-8?B?TVNU?= | last post by:
To demonstrate my problem, I have a very simple VB Windows application. It has a text box that is used to display a counter, a button to reset the counter, and a timer that increments the counter every second. I remote desktop to the computer hosting this application and run the application. It starts up and displays the counter incrementing every second. If I disconnect the network cable between the two computers for 10 seconds and...
2
4498
by: =?Utf-8?B?dmlzaHJ1dGg=?= | last post by:
Hi, I have 2 applications running, one Windows application project and the other windows services project. I want to call my Windows application in my windows services. I want to run them as seperate process. If my windows application starts running,only if it completes fully, then my windows services should continue its execution. My main process is Windows service.
1
4852
by: =?Utf-8?B?dmlzaHJ1dGg=?= | last post by:
Hi, I have 2 applications running, one Windows application project and the other windows services project. I want to call my Windows application in my windows services. I want to run them as seperate process. If my windows application starts running,only if it completes fully, then my windows services should continue its execution. My main process is Windows service.
0
30244
AmberJain
by: AmberJain | last post by:
Windows Autorun FAQs: List of autostart locations Linked from the Original article- "Windows Autorun FAQs: Description". Que: Can you list all the autostart locations for windows? Ans: Here is a comprehensive list of all autostart locations for Windows OSes: NOTE : These are some abbreviations used in this list. Please note them carefully: HKCU = HKEY_CURRENT_USER HKLM = HKEY_LOCAL_MACHINE
0
9432
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10232
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10059
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9873
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8891
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6682
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5313
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5454
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3578
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.