I am creating html window in wxpython and want to print it. Before I need to enter user input (like its name or such things) in the html page How to do it well? Thank you in advance,
There are some approaches in my mind that if it is like a form letter Only specific parts will be replaced, so you just need that user and get some text control for them. Something like this:
Dear #name,
Thank you for contacting #company, blah blah blah
and then for each one of the replacement parts Text is control. The other method will be to use the Save HTML functionality as RichTextCtrl. See wxPython demo app for an example.
Comments
Post a Comment