DelphiVCL4Python
DelphiVCL4Python copied to clipboard
Delphi's VCL library as a Python module for building Windows GUI
I use spyder 5.x (https://www.spyder-ide.org/) a lot as my a Python IDE. I can write a DelphiVCL program, eg the simple one below. When I run it the first time...
First of all: - System: Windows 10 x64 Version 2004 - Python: 3.10.4 - delphivcl: 0.1.40 I've tried to delete selected items in ListBox and to log witch items should...
Hi everyone, I wrote a small multi form program to stamp, split or combine pdfs using pikepdf: These forms are called using: ``` def openStamper(self, Sender): form_stamper = Stamper_Form(Application) form_stamper.Show()...
Currently the LoadProps only supports loading a pydfm file. It's better to add a function to load props from a file object or a string. Therefore, we don't need to...
I'm wondering how I can draw matplotlib plots to a Canvas? I guess I can save plots in a memory image, then draw this image to the canvas in TPaintBox.OnPaint...
Are there plans to develop [stubs](https://mypy.readthedocs.io/en/stable/stubs.html) files to facilitate development and get to know the API without needing to consult the Delphi documentation? I've been analyzing the Delphi documentation and...
I noticed the OnMouseX events in TPaintBox are not handled. File "frmMain.py", line 21, in __init__ self.PaintBox.OnMouseDown = 1#self.MouseDown AttributeError: Error in setting property OnMouseDown Error: You can only assign...
Using TImage: self.Image1.Picture.LoadFromFile(None) The code will be failed and a Message Box will be popped up. Then, no further code will be execute. Neither "try...except..." nor "try ... finally ..."...
I used the ``delphivcl`` library in the development of a commercial application and tired of searching in the Delphi documentation for the signature of class members, I started building the...
when i start a new process from my main window that starts a GLUT window and draws a cube, my main window is inactive untill my second process closes.