473,785 Members | 2,396 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
12 1856
No wonder I couldn't find it. I was using VS .NET 2003.

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:u%******** ********@TK2MSF TNGP04.phx.gbl. ..
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******* *******@TK2MSFT NGP06.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****** **********@TK2M SFTNGP02.phx.gb l...
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
environmen t.

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

thanks.

"Tim_Mac" <ti********@com munity.nospamwr ote in message
news:%2***** ***********@TK2 MSFTNGP05.phx.g bl...
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**** *********@TK2MS FTNGP06.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 30 '06 #11
Guy,
I think this is the best solution i've ever known. I think this is the
answer what i need.

Thanks

Seth.

"Guy Peled" <du*******@gmai l.comwrote in message
news:11******** **************@ h48g2000cwc.goo glegroups.com.. .
>
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 30 '06 #12
where i can find the information about WPF ?

"q" <ag******@gmail .comwrote in message
news:11******** **************@ b28g2000cwb.goo glegroups.com.. .
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

Oct 2 '06 #13

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

Similar topics

3
2670
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
2824
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
7273
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
2424
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
4184
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
30247
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
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9481
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
10155
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...
1
10095
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8979
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...
1
7502
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5383
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
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4054
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.