Unisonunison.hashnode.dev·Feb 7, 2025Delphi и Python embeddedЕсть у меня программка, которая предназначена для запуска скриптов Python из Delphi. Использую я Python embedded, так что для этой программы нет необходимости установить Python в компьютере. Недавно я хотел свою программу на Delphi совершенствовать. ...Python embedded
Unisonunison.hashnode.dev·Feb 7, 2025Delphi: JPEG error #53Следующий код выдавал ошибку при загрузке в компонент TImage jpg файла: FName := glSetup.AppPath + 'Covers\' + edtFileImage.Text.Trim; if not TFile.Exists(FName) then begin uf_WriteToLog('Файл обложки не найден. Файл',[FName]); Exit; end; ImgCove...Delphi
Unisonunison.hashnode.dev·Feb 7, 2025Delphi 12. MDI приложение. Событие при закрытии главной формыDelphi 12. MDI приложение. Событие при закрытии главной формы: if MessageDlg('Вы действительно хотите выйти из программы?',mtWarning,[mbYes,mbNo],0) = mrNo then CanClose := False else begin CanClose := True; uf_WriteToLog('Main Form...Delphi
Alessandrofailing2build.hashnode.dev·Jan 26, 2025How to Create an Asynchronous Unit in DelphiDefining a Unit to provide await functionality to your Delphi applications. Edijs Kolesnikovičs was kind enough to post this on linkedin, something I did not have thought about. Please look into my Medium article if you have a subscription. https://g...Delphi
Sean M. Drew Sr.blog.seandrew.info·Jan 21, 2025Launching Executables and Switching Focus in DelphiI am currently using Delphi to provide support, implement enhancements, and resolve bugs in legacy monolithic Windows applications. One key enhancement involved creating a launch pad to manage multiple pre-existing external executables, requiring sea...Delphi
Alessandrofailing2build.hashnode.dev·Dec 29, 2024Integrating Python in Delphi: A Guide to Boosting Development EfficiencyOverview The purpose of this article is to create a Delphi FMX application that runs a Python application in a thread without locking the UI. We need to have Embarcadero’s Delphi installed (I am using version 12.2 for this build), and having Python4D...python4delphi
Alessandrofailing2build.hashnode.dev·Oct 4, 2024Step-by-Step Guide: Creating an App Using MVVM Pattern with Delphi & Supabase (Part 1: Setup)Overview This is a multi-part tutorial that will guide you through creating a Model View ViewModel (MVVM) Todo application that is cross-platform using Delphi with Supabase as a backend and user authentication. Part 1 of this series will focus on set...model view view model
Tim Lewistimlewis.hashnode.dev·Sep 16, 2024How to Use UniDAC and RAD Studio to Access Oracle Database🔉 Our new blog article is out! 💡 In this article, you will learn how to use UniDAC with RAD Studio to access and query data within the Oracle database. 📰 Read in full to get more info: https://blog.devart.com/how-to-use-unidac-and-rad-studio-to-a...Delphi
Tim Lewistimlewis.hashnode.dev·Jul 11, 2024Connecting Delphi to Oracle Databases: Tools and Best PracticesDelphi, a robust and versatile programming language, has been a staple in the development community for decades. Known for its rapid application development (RAD) capabilities, Delphi allows developers to design, code, and deploy applications quickly...Delphi
Alessandrofailing2build.hashnode.dev·Jan 9, 2024How To: Get Screen Coordinates From 3D in DelphiProblem Overview A common problem using the Delphi FMX 3D forms and layers is that there is a need to obtain 2D screen coordinates in order to position objects in 3D accurately and to scale them for their target platforms. A solution is hard to find,...66 readsDelphi