Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
C++

Try condition_variable using C++Builder(C++11).

Author: h.mohri std::condition_variable is a class for waiting for thread execution until the condition is satisfied.Used in combination with std::mutex. I tried the wait() function in std::condition_variable.This is combined withstd::unique_lock<std::mutex>. I thought of the following specifications.As shown in the figure, create multiple threads.All threads are in Wait state.Then let…
Read more
News

Thought Controlled Drone in Tokyo

While I was in Tokyo for the Tokyo launch I worked with the Embarcadero office there to make a new BCI demo video. This is using the Emotiv EPOC wireless EEG headset to read cognitive thought patterns, which are transmitted wirelessly to the laptop and the Delphi powered…
News

New in RAD Studio 10.2.1: CodeGuard for Windows 8 and 10

CodeGuard is a tool for runtime error checking in a C++ application, and catches memory leaks, invalid handles, invalid memory use (such as writing past the end of a buffer), pointer validation, accessing freed memory and resources, and more. If you’ve never used it, check out the list ofruntime errors it will find, andpotential memory access problems it will warn…
Read more
News

CAD with C++Builder, episode#1

Author: Seva Leonov Learning tasks and motivation When teaching programming skills, especially with C++, one of the main issue is the selection of right examples and tasks. C++ is not that easy both in syntax, and concepts, and sostudents are demotivated just by the…
News

Delphi Tokyo Release 1 or 10.2.1 is Now Available

You can read more about the release and its rationale in the PM article published in the community: https://community.embarcadero.com/article/16556-rad-studio-10-2-1-released-today For the actual release information docWiki page, including how to obtain the…
Delphi

Easy Add Custom Component Icons in Delphi

Author: Pawe Gowacki I have just recently discovered a super easy way of adding custom icons to Delphi components. Traditionally you had to start from a rectangular bitmap of a specific size and color depth and then use Image Editor. This is documented in many places including Stackoverflow. After a little bit of googling I have come across another Stackoverflow post that inspired my to give…
Read more
News

"Serverless Architectures on AWS" summer reading

Author: Pawe Gowacki Summer is a great time to catch up with books that you have on your shelf, but do not have time to read. Obviously I would suggest starting from my recently released “Expert Delphi”, but there are plenty of other interesting books to look at.
News

More 2017 FireDAC Webinars

To follow up with our recent FireDAC in Depth with Cary Jensen we have a series of FireDAC webinars to help you learn more about everyone’s favorite database access framework. Each webinar is offered at 8 AM, 1 PM and 8 PM US Central Time to provide access in all…
Delphi

My "Expert Delphi" book published!

Author: Pawe Gowacki My “Expert Delphi” book has been published by PACKT Publishing and is currently available for a limited time for just $10at https://www.packtpub.com/application-development/expert-delphi.The book is about how to become developer super hero and gain amazing productivity powers to develop stunning, native cross-platform mobile apps from the same codebase…
Read more
C++CodeHow-To'sModernizationRAD Studio

My code used to work but crashes! Easily Solving Incorrect Code with bcc64x

We’ve had a couple of support requests that are along the lines of, ‘I’m upgrading to the new Win64 Modern C++ toolchain. But when I run my app built in Release mode, it crashes, and…

IN THE ARTICLES