Leaderboard
Popular Content
Showing content with the highest reputation on 06/14/24 in all areas
-
My YouTube Channel - The Silver Coder
silvercoder79 posted a topic in Tips / Blogs / Tutorials / Videos
Hi Everyone, My name is Tim and have been using Pascal forever (among other languages) since the 90s. For a variety of reasons I've transitioned (/transitioning) into tutoring and mentoring, and have launched a YouTube channel dedicated to all things Delphi. My first video, "Starting an Adventure with Delphi," is here - In the future, I'm planning to cover a range of topics, including: - Building modern Delphi applications for FireMonkey - Essential data structures for Delphi developers - Tips for debugging those tricky Delphi problems I'm really passionate about keeping Delphi alive and well. Whether you're a complete beginner or a seasoned developer looking to brush up your skills, I hope you'll find something valuable on my channel. Let me know what you think - especially if you have any topic suggestions! -
I'm running a survery on Essential Delphi Addins and would love if everyone could vote and share the survey with other Delphi developers. https://forms.gle/xuFWpSrE5TDdordNA What is your favorite Delphi addin?
-
I only managed to tick a few boxes, guess I've managed without all those tools for 25 years. My experience is the IDE is more stable to less third party stuff you install. Angus
-
A new Delphi plug-in for automatically implementing the client side of a Rest API is now available in beta version. Repository: https://github.com/AliDehbansiahkarbon/OpenAPIClientWizard Demo video: https://www.youtube.com/watch?v=7B7nSHIsV64
-
Yes, you can manage, but you might be missing out on productivity features or tips for improving your code by not taking advantage of some of these tools, many of which are free.
-
Thanks, I will add it.
-
Probably this: https://github.com/HashLoad/delphi-docker Never heard about it either.
-
Vote for MMX Code Explorer in the Essential Delphi Addins survey https://forms.gle/xuFWpSrE5TDdordNA
-
What version of Delphi has the least amount of bugs throughout history?
Uwe Raabe replied to Al T's topic in Delphi IDE and APIs
I would love to see a bug-fixes-only release, but I am realistic enough to put my hopes pretty low. I also know that a lot of complaints about missing new features will be triggered by such a release. -
Probably easier just to compare your current changes to your last commit.
-
So it's more than likely a profile/certificate issue, especially given the original message. You could use the Keychain Access app on the Mac to check whether certificates are valid, e.g. on mine:
-
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Kas Ob. replied to sp0987's topic in General Help
Well, bugs happen and knowing more about edge cases will save time, it is good thing to know more. Learning English is important, learning programing on deeper level is importanter. -
Yes, I find it annoying and unnecessary. I have not found a setting to stop it. But this will hide it from showing in the Start menu. In a DOS box, set the Delphi 12.lnk file to hidden. attrib +h "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Delphi 12.lnk"
-
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
David Heffernan replied to sp0987's topic in General Help
This is wrong on D7 too. Don't believe everything you read. -
@Roger Cigol Yes, I think I will try compiling to 64-bit and open the database upon creation of the data module and see if that works for me. Otherwise, I'll have to make the changes on my old laptop then recompile 32-bit. Thanks all for the leg up!
- 10 replies
-
You can only open MS Access files on a PC using either 64 bit apps (in which case you need to install the 64 bit MS Access drivers into Windows) or 32 bit apps (in which case you need MS Access on the machine (or at least the drivers). You cannot have both on the machine at the same time.
- 10 replies
-
Product: Delphi Parser - AI claims - what does it mean?
corneliusdavid replied to Jasonjac2's topic in Delphi Third-Party
I spent a bunch of time with this tool last week and am developing a big script for our use. One of the clunky steps in our migration process is converting a TPanel with TSpeedButtons to a TRzToolbar with TRzToolButtons. The original instructions had us manually editing a descendant form's DFM outside of Delphi before opening the project because of all the errors we'd get otherwise. Now, ReFind modifies the DFM and PAS file for us smoothing that process significantly. This, along with several other unit and method signature changes, the migration process will likely be reduced by several days or even weeks! Comparing with my experience using DelphiParser, there are still a few things things DelphiParser can do, like adding a new unit to the uses clause, which, as an action by itself, reFind cannot--it can replace an identifier and add to the uses section that way but there is not just a stand-alone unit addition command in reFind. DelphiParser seems to actually understands the Delphi syntax better and work with different unit sections and objects and variables whereas reFind is mostly a line-by-line string replacer. I'm over-generalizing and there's a lot of overlap but the reFind tool, being free and command-line based is much more accessible and easier to use. Thanks again, @Jim McKeeth for reminding me of this tool. -
This is true for design time connections. But you can compile to 64 bit application and then connect at run time (but if you do this you CANNOT connect at design time because of the limitation I mention above).
- 10 replies