Jump to content

limelect

Members
  • Content Count

    814
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by limelect

  1. limelect

    SSl witout any DLL

    I am using tothpaul\Delphi-master\Indy.SChannel with great success in testing my software However, my provider did an update on his server and now I cannot get my text file at https://limelect.com/UpDate/document-projects.txt I get a protocol error My provider answered me this "So the problem is probably in the software settings. See that TLS is at least 1.2 And in addition, make sure that there is trust for the SSL certificate" I was looking into finding SSL version and could not find a good source for that I was trying this answer without any success https://stackoverflow.com/questions/41127514/how-to-determine-which-tls-ssl-protocol-was-negotiated-when-using-sslvsslv23 Any idea what I should do next? No DLL plz P.S D10.2.3 Indy 10
  2. limelect

    SSl witout any DLL

    @dummzeuch By the way his last vers is tls 1,3
  3. limelect

    SSl witout any DLL

    @dummzeuchtothpaul\Delphi-master\Indy.SChannel does Using it with great success until now
  4. limelect

    ANN: Better Translation Manager released

    @Anders Melander Ok I found the HEBREW But my main problem is simple. In your demo Am I suppose to see the translated text It seems I do not understand how to use the source and the .xlat file I have been using DKLang for many years Can you elaborate on steps of new Delphiproject I am also trying to change in your application the source lang from Hebrew to English and I cannot
  5. limelect

    ANN: Better Translation Manager released

    I have your demo In it HelloWorld.xlat I do not seem to translate. How am I translating? Your demo does not seem to show that
  6. limelect

    PyInstaller

    After very long and many tries I need your help This is my script works on other Python script pyinstaller.exe --windowed D4P_export_demo.py --onefile --paths="C:\Users\LimElect\anaconda3\Lib\site-packages\delphifmx\" --name D4P_export_demo the path is not needed as I get the same Python error pyinstaller.exe --windowed D4P_export_demo.py --onefile --name D4P_export_demo It seems to find the packet but cannot use it The package is used without any problems in PyScripter warn-D4P_export_demo.txt does not show that the package is missing Any Idea? P.S. Final message 5303 INFO: Building EXE from EXE-00.toc completed successfully.
  7. limelect

    PyInstaller

    It works !!!!! Lovely next to see where I made mistakes OK it is my PAS file THANKS a lot, much appreciate
  8. limelect

    PyInstaller

    @davd Finally it open can you also send pas sources to see if my D10,2,3 make what needed I will compile yours and see WWWWAAAA great you put also my librery
  9. limelect

    PyInstaller

    Well I do not understand as I have 3 zip/7zip non open including 7zipfm I am stack If it helps (without an exe) my mail limelect@gmail,com or www,limelect.com where you find lots of free staff
  10. limelect

    PyInstaller

    Can you plz just make a simple zip?
  11. limelect

    PyInstaller

    OK I found on the portable project 7ZipFM but is cannot open eiyher
  12. limelect

    PyInstaller

    Is it for LINOXS as we are working on Windows there is no 7ZipFM for Windows unless you know the link. It suppose to be part of 7zip but cannot find it
  13. limelect

    PyInstaller

    Look inside the file https://en.delphipraxis.net/applications/core/interface/file/attachment.php?id=11265 It does not contain PK first letters which designate zip Unless you open it differently I open it with BANDZIP. My Window 7 does not recognize the file P.S I also have 7 zip on my windows
  14. limelect

    PyInstaller

    @DelphiUdIT Sorry Your zip gives an error My zip program is the latest Also, it is not a zip as I look inside it does not have the zip initials It should have PK PLZ make sure it is ZIP
  15. limelect

    PyInstaller

    Where is it? 2. cannot open pythone_Fixed.7z.002 is it zip or 7z? non open
  16. limelect

    PyInstaller

    Guys to begin thanks for your attention 1. Either no one except me plays with Delphi for Python 2. Maybe I found that the Python package cannot make an execute. 3. This that there is no response says something 4 So I moved to QT designer with PyQt5 where the Python package does work and give me an execute. 5. I prefer Delphi but for the time being until proven otherwise it is out for me P.S I could not install PyQt6 but that is another matter
  17. limelect

    Cross platform color picker and palette library

    I added a comment on Git
  18. limelect

    PyInstaller

    @pyscripter Can you plz put here an FMX or VCL Pas/PY hello World zip project that you make to an EXE. I will change the library path compile and see what happens. Thanks P.S It will be the best demo possible
  19. limelect

    PyInstaller

    I have used this site to simplify https://stackoverflow.com/questions/23594048/how-can-i-specifiy-the-spec-file-in-pyinstaller And I get the same result from the execute Something very wrong P.S I changed the datas= as needed
  20. limelect

    PyInstaller

    P.S i also changed a = Analysis( ['Project2.py'],
  21. limelect

    PyInstaller

    I did but still, in some places, there is a misunderstanding of mine It compiles OK but exe does not do the job where am I wrong? pythone.zip
  22. limelect

    DelphiVCL4Python

    Am I the only one toying with this? Made a simple form got project and unit PY now to my point in unit we have class Form1(Form): def __init__(self, owner): self.Label1 = None self.label2 = None and so on if I delete file Unit1.pydfm (which mean that this file is the form shown) the form is empty OK so whats the point for the source in unit PY as it really does nothing. So my main question is how do I use label or button or any component INSIDE Unit1.pydfm otherwise the nice idea is useless I have read the book Getting Started with Python GUI Development.pdf it does not refer to PYDFM if I change self.Label1 = None to self.Label1 = Label(self) self.Label1 .SetProps( Parent=self, Caption="Hello DelphiVCL for Python") It adds a label but does not change my label on pydfm Who can help????? P.S the book is not different then Tkinter
  23. limelect

    DelphiVCL4Python

    Thanks. In any case, I do not see myself using Python although everybody is bragging about. This is the same reason that the Basic language is gone. Interpreter. I wanted to see what I could do with it. P.S I made an execution of it and cannot find the Delphi lib but that is another matter I am using Anaconda
  24. limelect

    DelphiVCL4Python

    Just to see if I understood I made this Python package tester/ installer in an hour not bad for a Delphi professional Thanks import os import importlib.util import sys from delphivcl import * class Form1(Form😞 def __init__(self, owner😞 self.Label1 = None self.Label2 = None self.LabeledEdit1 = None self.Button1 = None self.LoadProps(os.path.join(os.path.dirname(os.path.abspath(__file__)), "Unit1.pydfm")) self.Label2.caption="" self.button1.SetProps(Parent=self, Caption="Add", OnClick=self.Button1Click) def Button1Click(self, Sender😞 self.Label2.caption="" name = self.LabeledEdit1.text # 'itertools' if name != "": if name in sys.modules: self.Label2.caption=f"{name!r} already in sys.modules" elif (spec := importlib.util.find_spec(name)) is not None: # If you choose to perform the actual import ... module = importlib.util.module_from_spec(spec) sys.modules[name] = module spec.loader.exec_module(module) self.Label2.caption=f"{name!r} has been imported" else: self.Label2.caption=f"can't find the {name!r} module" def FormCreate(self, Sender😞 pass
  25. limelect

    Delphi + Python

    After 30++ years with Delphi and other languages, I decided to learn Python and see what is all about. So I used Delphi and some other libraries to learn. (for me Python is awful) And now to the point While using DelphiVCL4Python I found that pyscripter or GuiPy do some closing problems on some application So I made this https://github.com/pyscripter/pyscripter/issues/1286 and this https://github.com/Embarcadero/DelphiVCL4Python/issues/92 however today I found out that Microsoft Visual Studio 2019 also works on Python and the program I put closed without any problems So I wonder where is the problem?
×