473,756 Members | 1,861 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Form using HTML on PythonCard

Somebody know how make html forms or python forms inside html to use as gui
application?

The idea is make a client application like a web site of my interprise for
customers who don't have good connection, in this way the customer can select
the products off line and connect only to execute the shop. The use of HTML
is to have the same paradigm to application and to site.

Jul 18 '05 #1
3 2823
PythonCard is a wxWindows application, therefore you've got two choices:
1) use a wxHtmlWindow that can display *simple* html. Anyway I used it and I
don't think it can handle forms (but maybe I'm wrong). You'd need to extend
it a bit (it is a straightforward process see the wxp example in the
wxWindows demo)
2)if you are on windows you can use the wxHtmlIEWindow that renders html
using th WebBrowser COM component. The problem, then, is how to handle form
data. If you want to access them from python that can be troublesome.

Riccardo

"Luiz Siqueira Neto" <cy**********@m ac.com> wrote in message
news:ma******** *************** ***********@pyt hon.org...
Somebody know how make html forms or python forms inside html to use as gui application?

The idea is make a client application like a web site of my interprise for
customers who don't have good connection, in this way the customer can select the products off line and connect only to execute the shop. The use of HTML is to have the same paradigm to application and to site.

Jul 18 '05 #2
You can put panels of widgets into HTML very nicely with wxPython.

The version of HTML that the wxHtmlCtrl supports is pretty simple,
but it includes a hook for extending it, the WXP tag. This looks
something like this embedded in your html:

<wxp module = "somemodule " class="SomeClas s" width="95%">
<param name="id" value="-1"> </wxp>

Although the demo that comes with wxPython does something simple
like embedding a button, I just about always derive SomeClass from
wxPanel, and I use sizers to control the layout of several
controls within the panel. The constructor will start like this:

class SomeClass(wxPan el):
def __init__(self, parent, id=-1, size=wxDefaultS ize)
wxPanel.__init_ _(self, parent, id, size=size)

IDK how to pass in object references as constructor parameters in the
embedded HTML, so these panels seem to often wind up using globals to
communicate with the rest of the program.

Keep in mind that the constructor for this panel is not called until
the HTML actually gets put into the wxHtmlCtrl (by SetPage, etc).
The panel also gets automatically destroyed when the next contents get
put into the wxHtmlCtrl, so don't hang on to any references to it.

IDK if PythonCard supports this control or not. Haven't used
pythoncard.

I alsways use wxCallAfter to send the next page to the wxHtmlCtrl.
That way I don't have to worry about a panel destroying itself while
its still running by changing the screen contents. wxCallAfter waits
until the current UI event is completely processed before doing
whatever it does.

This all leads to a pretty convenient style of programming. I throw
something at the screen, the user clicks something, maybe this makes
me throw something else at the screen, maybe it doesn't. If not,
he's still got the same screen to try something else. You don't
have to work out a hierarchy of screens where the user is forever
drilling down and popping up -- they can have more browser-like
freedom. Makes their heads spin. Keep a copy of the HTML and give
them a back button.
Al
Jul 18 '05 #3
> Somebody know how make html forms or python forms inside html to use as gui
application?

The idea is make a client application like a web site of my interprise for
customers who don't have good connection, in this way the customer can select
the products off line and connect only to execute the shop. The use of HTML
is to have the same paradigm to application and to site.


How about starting a simple webserver / proxy on their machine?

You could just connect to that, and if their connection is up
forward the information on to your real server.
Jul 18 '05 #4

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

Similar topics

0
1319
by: Ron Stephens | last post by:
Thanks, Tony, we long term newbies need to stick together ;-)) I just updated a few PythonCard versions of three of the modules from askMerlin, and posted them in a link right below the askMerlin100.py command line program. The PythonCard version of election.py in particular is very easy and illustrates what these programs do. You will have to install wxPython and PythonCard in order to use these, so I provide links for that. I must say,...
0
1241
by: Werner Merkl | last post by:
Hi, I like to switch from Python 2.3.4 to 2.4. So I tried to reinstall all apps I need. Most works fine When I start PythonCard I get following error: --------------------------- Setup PythonCard-0.8.1: PythonCard-0.8.1.win32.exe - Application Error ---------------------------
1
1977
by: jlocc | last post by:
Hi!! I am working on a school project and I decided to use PythonCard and wxPython for my GUI development. I need a password window that will block unwanted users from the system. I got the pop-up password question to work... def on_openBackground(self, event): result = dialog.textEntryDialog(self,
1
1108
by: Brandon McGinty | last post by:
Hi All, I'm getting started with pythoncard. I'm wondering if there is any way to auto-place the gui elements that I use, so that they are all visible, and aligned? I would use the "layout/resource" editors, but I'm blind, so I can't see where the elements end up, and the controls for moving don't show up as usable controls in my screen reader. Any help is appreciated. Thanks Much,
4
2358
by: Tequila | last post by:
I'm having some trouble starting PythonCard on my PC. I've downloaded and ran python-2.5.msi to install Python on my machine. And PythonCard-0.8.2.win32.exe to install PythonCard. When I try to run the program I get the following error: ====================================== C:\Python25\Lib\site-packages\PythonCard\tools \codeEditor>codeEditor.py Traceback (most recent call last):
8
2062
by: king kikapu | last post by:
Hi to all folks here, i downloaded and "playing" with PythonCard and i just want to share my thoughts so maybe we can discuss a little about it. I was used to wxGlade before and i think PythonCard is even better. I like the separate implementation of GUI and Code that PythonCard provides, i also like the "binding system" so you can bind functions to events and have them executed at runtime. I also like that it does not force you to use...
8
5990
by: Kevin Walzer | last post by:
I'm curious to know what others think of these two frameworks for building wxPython apps. PythonCard has been around longer, but its development seems to have slowed. The last release, 0.8.2, has been out for quite awhile now. Dabo is newer and seems to have gathered a lot of buzz. Anyone try both? What's your preference and why? Is one more robust than the other?
1
1333
by: bvidinli | last post by:
i installed pythoncard, but i could not find how to start it ? where can i find its executable/binary ? or menu item ? or command line that i should enter ? thanks. -- Ý.Bahattin Vidinli
24
2382
by: John Henry | last post by:
For serveral years, I have been looking for a way to migrate away from desktop GUI/client-server programming onto the browser based network computing model of programming. Unfortunately, up until recently, browser based programs are very limited - due to the limitation of HTML itself. Eventhough PythonCard hasn't keep up with the latest widgets in wxpython, the programs so created still works a lot better - until now. If you look at...
0
9431
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
9255
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
9844
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
9819
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
9689
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
6514
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
5119
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...
1
3780
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
3
2647
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.