JohnDow
JohnDow

Reputation: 1332

Using VB, Delphi to create GUI for Python script

I have some python script working with win32api, and I want to create some GUI. I think, that VisualStudio with VB be good for that, but maybe someone on StackOverflow already do such thing? I prefer to do end-aplication (End user don't have libs or python etc)

Any advise...

Upvotes: 0

Views: 230

Answers (2)

there are some GUI designers for python: IN UBUNTU: 1st Glade: here is a tutorial http://www.micahcarrick.com/gtk-glade-tutorial-part-1.html

2 Quickly

install : 
    sudo apt-get install quickly
    quickly create ubuntu-application hello-world    
    cd hello-world/
     here is tutorial : https://wiki.ubuntu.com/Quickly

In windows : PyQt : full tutorial : http://talk.maemo.org/showthread.php?t=43663

Upvotes: 2

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 799470

Python for Delphi will allow you to embed a Python interpreter in a Delphi application. Not sure how up-to-date it's been kept though.

Upvotes: 0

Related Questions