Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When to choose between web interface and native GUI? [closed]

Many applications (especially the networks' ones e.g. file sharing, sql query program, some multiplayer games) as we know today can be easily provided by using a web interface.

My question is when should I make an application accessible using a browser?

When it will be wise to use a desktop application being built using interfaces like Qt, Visual Basic etc.

like image 500
Xolve Avatar asked Mar 15 '09 18:03

Xolve


People also ask

Which is better GUI or Web interface?

GUI system are targeted to a specific audience performing specific task,efficiency of performing task is only limited. Web systems tasks limited by the browser and the network. Websites are intended for everyone.

Is a Web page a GUI?

A web user interface, or web-based graphical user interface, refers to the interaction between a user and software running on a web server wherein the user interface is the web browser and the web page it downloaded and rendered.

Is HTML a GUI?

The HTML GUI SDK is a library of extensions used to create the graphical user interface (GUI) for the configuration panel for a custom Alteryx Designer tool.


1 Answers

There is no general answer to that question. That depends on some factors:

  • Your target group - Is it wide spread or pooled?
  • Portability - On which platforms do your users work?
  • Performance - Is much of it needed? If yes, a desktop application would be better. I can't imagine a video editing software running in a browser. Maybe in 10 years :)
  • and more that have to be figured out individually

But the trend clearly goes to web-based applications. You can reach quite a bunch of people with them.

like image 51
Markus Avatar answered Oct 18 '22 23:10

Markus