The Crypto module covers several different jobs. The hard part is usually not finding a function; it is choosing the right one for the problem in front…
Comments closedAuthor: Gabriel Ludosanu
Gabriel is a digital marketing enthusiast who loves coding with Xojo to create cool software tools for any platform. Always eager to learn and share new ideas!
You build a Windows app, zip it up, hand it to a user, and Windows may hit them with “Windows protected your PC”. A clean but…
Comments closedWhile working on one of my Xojo projects, I needed a quick way to change the font used by the controls across the entire application.…
Comments closedIn our previous posts, we built a utility to find text inside files within a single folder, and then added recursion to crawl subfolders. But if you…
Comments closedJSONItem is the native class for dealing with JSON. Depending on how you use it, it treats your data as either a standard dictionary (key-value pairs)…
Comments closedIn the previous post, we built a utility to find text inside files within a single folder. Today we’re upgrading that utility to support recursive searching…
Comments closedSooner or later most apps need some version of the ability to find text in those files, whether you’re scanning log files, config files, exported…
Comments closedOver the weekend, I was deep into a side project, parsing a massive server log dump. Strings were everywhere: timestamps were mangled, JSON blobs were…
Comments closedIn Part 1, we learned why tight loops with DoEvents freeze your UI. Part 2 showed us Timer controls. Part 3 moved timers into code. Part 4 simplified scheduling with CallLater. But timers have a…
Comments closedIn Part 1 of this series, we looked at a common but discouraged approach using a tight loop with DoEvents to keep the UI from freezing. In Part 2, we…
Comments closed