Python Forum

Full Version: Installing Qt for Python. (On Windows 10)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Hello there

I need a list widget with multiple columns, like the Visual Basic 'Listview' control.

Can you help, please?

Regards

Dd
Hello there!

How do I start one module from another, without adding it to
main.py
? I want to call module
 example_gui.py
from
main.py
. BTW main.py has some code to parse an .xml file.

Thanks in advance,

DD
You don't "start" modules, you import them (see, e.g. this). If by "without adding it to.." you mean you don't want to import the module, why not? Again, importing is the standard way to say in one module that you're using facilities provided by another.
Pages: 1 2 3