

limelect
Members-
Content Count
924 -
Joined
-
Last visited
-
Days Won
1
Everything posted by limelect
-
I tried some projects to compile with D10.2.3 and all had errors all kind so I gave up. Only your about component compiled OK P.S no FMX.fhtmledit
-
How to get the version of Delphi that the App is built with?
limelect replied to Ian Branch's topic in General Help
@DelphiUdIT as per https://docwiki.embarcadero.com/RADStudio/Athens/en/Compiler_Versions It does not have 12.1 or 2 May be 37 or 38? -
How to get the version of Delphi that the App is built with?
limelect replied to Ian Branch's topic in General Help
I found this on my CodeSnipet Returns the version of the Delphi or Free Pascal compiler used to compile the program. 0.0 is returned on error, or if the compiler is not recognized. On test on D10.2.3 it return 32 I hop it helps It works for this https://docwiki.embarcadero.com/RADStudio/Athens/en/Compiler_Versions function CompilerVer: Double; begin {$UNDEF HAVE_RESULT} {$IFNDEF FPC} // Delphi {$IFDEF VER90} {$DEFINE HAVE_RESULT} Result := 9.0; // Delphi 2 {$ENDIF} {$IFDEF VER100} {$DEFINE HAVE_RESULT} Result := 10.0; // Delphi 3 {$ENDIF} {$IFDEF VER120} {$DEFINE HAVE_RESULT} Result := 12.0; // Delphi 4 {$ENDIF} {$IFDEF VER130} {$DEFINE HAVE_RESULT} Result := 13.0; // Delphi 5 {$ENDIF} {$IFDEF CONDITIONALEXPRESSIONS} {$IF Declared(CompilerVersion)} {$DEFINE HAVE_RESULT} Result := CompilerVersion; // Delphi 6 and later {$IFEND} {$ENDIF} {$ELSE} // Free Pascal {$IFDEF VER1} {$DEFINE HAVE_RESULT} Result := 1.0; // FPC v1.x {$ENDIF} {$IFDEF VER2} {$DEFINE HAVE_RESULT} Result := 2.0; // FPC v2.x {$ENDIF} {$ENDIF} {$IFNDEF HAVE_RESULT} Result := 0.0; {$ENDIF} {$UNDEF HAVE_RESULT} end; -
How to get the version of Delphi that the App is built with?
limelect replied to Ian Branch's topic in General Help
@Anders Melander You are right -
How to get the version of Delphi that the App is built with?
limelect replied to Ian Branch's topic in General Help
@DelphiUdIT I tested your function on D10.2.3 and it return program version and NOT the Delphi version As for that mine is simple -
How to get the version of Delphi that the App is built with?
limelect replied to Ian Branch's topic in General Help
TjvVersionInfo does the job. From my software uses JvVersionInfo var VerInfo: TjvVersionInfo; begin AboutBox := TAboutBox.Create(Application); try VerInfo := TJvVersionInfo.Create(Application.ExeName); AboutBox.Version.Caption := ' Ver ' + VerInfo.FileVersion; -
P.S My CHM works. I guess it is from 4/22
-
Thanks
-
Will; it be possible to make a PDF from your help site? There are conversions from HTML to PDF out there
-
I do not see a link to help inside Gexpert expert
-
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
-
My test with SChannel After my provided did not help much I communicated with 2 more providers. One had the same problem that I could not use his server with SChannel but the other one was OK. While testing I found that on Windows 7 things did not work but with Windows 11 was OK. No one understands what is going on. In my case, I had to move to a new provider where the SChannel worked. with Windows 7
-
@dummzeuch By the way his last vers is tls 1,3
-
@dummzeuchtothpaul\Delphi-master\Indy.SChannel does Using it with great success until now
-
ANN: Better Translation Manager released
limelect replied to Anders Melander's topic in Delphi Third-Party
@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 -
ANN: Better Translation Manager released
limelect replied to Anders Melander's topic in Delphi Third-Party
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 -
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.
-
It works !!!!! Lovely next to see where I made mistakes OK it is my PAS file THANKS a lot, much appreciate
-
@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
-
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
-
Can you plz just make a simple zip?
-
OK I found on the portable project 7ZipFM but is cannot open eiyher
-
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
-
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
-
@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