Noutați

What’s new in TMS FNC UI Pack 3.4

There are a lot of great new features available in our FNC components and this blog will highlight the new additions to the TMS FNC UI Pack. If you want to check the improvements on TMS FNC Maps, click here. For the list of fixes and improvements, you can check the version history, but two new components were added to the product as well. TTMSFNCPassLock TTMSFNCPassLock is an updated version of the FMX passlock in the TMS FMX UI Pack.This component gives you the ability to add password protection to your application. It’s not only possible to further customize the buttons and pattern, but also the ability to not show the length of your password. Next to that you have the similar workings of the numpad and pattern layout and the learn mode to set a new password. TTMSFNCControlPicker The TTMSFNCControlPicker helps you to create a dropdown variant of your control. This can be done with the ITMSFNCControlPicker interface and is implemented by default in the TTMSFNCTreeView, TTMSFNCTableView, TTMSFNCListBox and TTMSFNCListEditor. It is possible to implement the interface in your own control, for more information regarding the necessary procedures and functions to implement, please check the documentation.Some additional events are available, to mimic the basic mechanics of the interface without implementing it and to make the control even more customizable. This is an example of the base implementation to retrieve the content that should be shown in the dropdown edit. It shows the number of times the button was clicked. First create a new extended button class: type TButtonEx = class(TButton, ITMSFNCControlPickerBase) private FCount: Integer; function PickerGetContent: String; protected procedure Click; override; public constructor Create(AOwner: TComponent); override; end; { ButtonEx } procedure TButtonEx.Click; begin inherited; Inc(FCount); if Assigned(Parent) and (Parent is TTMSFNCCustomSelector) and Assigned(Parent.Owner) and (Parent.Owner is TTMSFNCControlPicker)then begin //Update ControlPicker if assigned as control (Parent.Owner as TTMSFNCControlPicker).UpdateDropDown; end; end; constructor TButtonEx.Create(AOwner: TComponent); begin inherited; FCount := 0; Text := ‘Click this’; end; function TButtonEx.PickerGetContent: String; begin Result := IntToStr(FCount) + ‘ Clicks’; end; The only thing left to do is creating the button and assiging it to a TTMSFNCControlPicker: procedure TForm1.FormCreate(Sender: TObject); begin b := TButtonEx.Create(Self); b.Parent := self; TMSFNCControlPicker.Control := b; end;

Read More

Announcing support for FMXLinux!

Intro A couple of weeks ago we announced beta support for FMXLinux and today we announce stable support. The beta period is finished and we now fully support FMXLinux in the latest version of all of our FNC products. Download the latest update today to get started! Below is a list of FNC products that have been tested in FMXLinux. With FMXLinux, we add a new platform to the wide variety of already supported platforms in FNC. TMS FNC Components can be used simultaneously on these frameworks TMS FNC Components can be used simultaneously on these operating systems/browsers TMS FNC Controls can be used simultaneously on these IDEs Getting Started The components have been tested and deployed on a Linux environment (Ubuntu 20.04) after properly setting up FMXLinux and other dependencies required for various parts of FNC. Support for FMXLinux is limited to RAD Studio 10.4 Sydney and the path to the source files has to be manually configured in the library path (the automated installer currently does not pick up FMXLinux). Please follow the instructions below to add FMXLinux support to RAD Studio. Please note that adding the SDK is an essential part of the configuration process and it is important to add the SDK to RAD Studio when all the necessary libraries are added to your Linux environment. After following the above instructions, please execute the following commands sudo apt install joe wget p7zip-full curl openssh-server build-essential zlib1g-dev libcurl4-gnutls-dev libncurses5 sudo apt-get install zlib1g-dev sudo apt install libgl1-mesa-glx libglu1-mesa libgtk-3-common libgstreamer1.0-0 libgstreamer-plugins-base1.0-0 sudo apt install libwebkit2gtk-4.0-dev Add each path that contains FNC source files of the products you have installed to the Linux 64 bit library path. Start a new multi-device FMX project and select the Linux 64 bit profile. When the PAServer is running correctly, you can connect to Linux environment and start deploying your application.  Video The above instructions along with a showcase of some FNC components are demonstrated in the video below. Stay tuned! With FMXLinux support we add yet another major and exciting feature to the already huge amount of features and components FNC has to offer. Yesterday we also announced exciting new features and improvements in TMS FNC Maps 1.5 and TMS FNC UI Pack 3.4. Read the linked blog posts to find out more. Stay tuned for more FNC improvements and features coming up in the near future!.

Read More

What’s new in TMS FNC Maps 1.5

We are back with another substantial update for TMS FNC Maps. 4 new components are introduced in TMS FNC Maps v1.5: TTMSFNCStaticMap, TTMSFNCMapsImage, TTMSFNCTollCost and TTMSFNCTimeZone. 1. Static Maps & Map Image The new TTMSFNCStaticMap component lets you request a static map image for a specific location. The static image can be customized by setting the map type (roads, satellite …), zoom level and an optional marker at the center point. The resulting image can be displayed by using the TTMSFNCMapsImage component. The following mapping services are supported: Azure, Bing, Google, Here, MapBox, TomTom Only a single line of code is needed to request and display a static map image: TMSFNCMapsImage1.URL := TMSFNCStaticMap1.GetStaticMap(CenterCoordinate,  TMSFNCMapsImage1.Width, TMSFNCMapsImage1.Height, ZoomLevel, ShowMarkerBoolean, MapType);     2. Toll Cost calculation Using the TTMSFNCTollCost component the toll route costs between an origin and destination location can be calculated. Toll cost information is returned for each toll segment along the route together with turn by turn directions. The following mapping services are supported: Here, PTV xServer The toll cost calculation can be requested with just one line of code: TMSFNCTollCost1.GetTollCost(OriginCoordinate, DestinationCoordinate); 3. TimeZone information The TTMSFNCTimeZone component can be used to request time zone information for a specified location. The following mapping services are supported: Azure, Bing, Google, Here Again a minimum of code is needed to request and display time zone information: procedure TForm1.TMSFNCMaps1MapClick(Sender: TObject;  AEventData: TTMSFNCMapsEventData);begin  TMSFNCTimeZone1.GetTimeZone(AEventData.Coordinate.toRec)end;procedure TForm1.TMSFNCTimeZone1GetTimeZone(Sender: TObject;  const ARequest: TTMSFNCTimeZoneRequest;  const ARequestResult: TTMSFNCCloudBaseRequestResult);var  it: TTMSFNCTimeZoneItem;begin  it := ARequest.Items[0];  memo.Lines.Clear;  memo.Lines.Add(‘TimeZone: ‘ + it.TimeZone);  meTimeZone.Lines.Add(it.Description);  meTimeZone.Lines.Add(‘Offset: ‘ + it.Offset);  meTimeZone.Lines.Add(‘DST: ‘ + it.DSTOffset);end; 4. Minor improvements Apart from all the new components, some improvements are also included with this update. One of the noteworthy improvements is the possibility to retrieve the index of the waypoints in the optimized order for TTMSFNCDirections. The following mapping services are supported: Azure, Google Maps, TomTom That’s it for this TMS FNC Maps v1.5 update. I hope you’ll enjoy all these exciting new features!

Read More

Developer Stories: Simon Hooper Recounts The Story of His Wise Eyes Application

Simon Hooper started programming with Delphi 26 years ago. He has recently submitted his application (Wise Eyes) at the Delphi 26th Showcase Challenge and he talked with us about his programming experiences. You can visit his Wise Eyes website for more information. When did you start using RAD Studio Delphi and have long have you been using it? Since Delphi 1.  Over 26 years ago! What was it like building software before you had RAD Studio Delphi? Delphi heralded a new generation of development tools.  When Microsoft only had buggy betas of Foxpro, Borland had a ground-breaking polished product. I had been recruited to rewrite an application that had “hit the buffers” in terms of GUI development using tools of DOS era origin.  My decision to use the brand new Delphi was applauded time and again.  We were working with multi-dimensional databases, writing GUIs with lots of drag and drop coupled to fast data handling.  I hardly touched a TDataset during my first 3 years with Delphi.  That changed! How did RAD Studio Delphi help you create your showcase application? We had much Delphi experience to leverage.  It is the complete development tool in one package.  Cross platform, data handling, GUI builder.  It’s well developed OO structure is vital to a large project.  With a project that is pushing boundaries we are able to build and integrate our own functions, components and tools when Delphi does not (yet) have them. What made RAD Studio Delphi stand out from other options? From a single tool with a common code base are delivering web server for Linux and Windows, and desktop for Windows and macOS. No reliance on Java, .Net, PHP interpreter or similar causing installation, compatibility and versioning headaches.  Native compile is simple, fast and keeps our IP secure. What made you happiest about working with RAD Studio Delphi? We were able to build a really solid structure, within which the wide functionality of the product is slotting in nicely.  A structure to edit and store report definitions though RTTI is infinitely extendable.   Interfaces enable any data source to be fed into the report generation engine.  Similarly interfaces on the output of the engine enable the same report to be rendered to browser, Excel, CSV or whatever.  Extensive use of records passed by pointer reduces the amount of copying, and by extension memory used. What have you been able to achieve through using RAD Studio Delphi to create your showcase application? My biggest grin came was when we load-tested the server module.  The minimum target for a viable product was 20 reports per minute per processor core.  100rpm/core would be “time for a beer” as my son put it.  The result: a staggering 300rpm/core!  Wise Eyes is fast because Delphi is fast. What are some future plans for your showcase application? Wise Eyes is just beginning.  Our Excel Inject is popular, but people are using Google Sheets and other online spreadsheets.  With the aforementioned structure existing code will extend quite easily. Multi-lingual capability is close, for which Delphi’s Unicode support is vital. The headline feature for version 2 will be easy drag and drop report writing for managers, without first building a datamart. Thank you, Simon! Visit the link below to view his showcase entry. Delphi is fast and reliable – […]

Read More

Delphi Versatility: FelixGO Workflow Logistics Android App

FelixGO is the smartphone version of Felix Tools from German-base Felix Systems Logistics Factory and it is built using RAD Studio Delphi and the versatile Firemonkey FMX cross-platform framework. According to the Felix Systems, “this app allows the creation of freight orders, transportation needs, on the basis of harvest declarations FHPDAT logistics standards. The system can be used on Android smartphones or tablets. The app is integrated into a logistics center and Felix automated master data provided. Create messages are transmitted to the Felix logistics center and processed by it.” As Felix quite rightly says, less paper equals more efficiency and that is what they are aiming for with this very nicely organized and engineered app. FelixTools and the Felix Go app collates all the data for the entire workflow process from the initial contract letters right through the billing cycle. Websites FelixGO Google Play FelixGO Screenshot Gallery You could harness the power of RAD Studio Delphi’s versatile development tools to help control your user’s workflow. Try RAD Studio today and see what it can do to increase efficiencies.

Read More

Cartoonify Photos With This Easy But Powerful Neural Network

Based on this wiki : a convolutional neural network (CNN, or ConvNet) is a class of deep neural network, most commonly applied to analyze visual imagery. They are also known as shift invariant or space invariant artificial neural networks (SIANN). Convolutional Neural Network? That sounds complicated! Is it? Good news,  DeepAI.org has provided an API to access, so we can quickly build applications using it. Follow along as we show you how.. How do I set up an app with DeepAI API? We can emulate what curl does for access to DeepAI API, because it looks quite straight-forward. curl -F ‘image=@/path/to/your/file.jpg’ -H ‘api-key:1ade887c-a8e2-4b91-b888-947aa67cde17’ https://api.deepai.org/api/toonify curl     –H span class=“s1”>‘api-key:1ade887c-a8e2-4b91-b888-947aa67cde17’/span>     https://api.deepai.org/api/toonify here what that looks like in Delphi code: procedure Toonify; var LRestClient: TRESTClient; LRestRequest: TRESTRequest; LImageDownload: TDownloadURL; LResponse: TJSONObject; begin LRestClient := TRESTClient.Create(TOONIFY_API_URL); LRestRequest:= TRESTRequest.Create(nil); try LRestRequest.Method := rmPOST; LRestRequest.AddParameter(‘api-key’, edtApiKey.Text, TRESTRequestParameterKind.pkHTTPHEADER, [poDoNotEncode]); LRestRequest.AddFile(‘image’, OriginalFilename); LRestRequest.Client := LRestClient; LRestRequest.Execute; LResponse := LRestRequest.Response.JSONValue as TJSONObject; // LReponse image url processing here .. finally LRestRequest.Free; LRestClient.Free; end; end; 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 procedure Toonify; var   LRestClient: TRESTClient;   LRestRequest: TRESTRequest;   LImageDownload: TDownloadURL;   LResponse: TJSONObject; begin   LRestClient := TRESTClient.Create(TOONIFY_API_URL);   LRestRequest:= TRESTRequest.Create(nil);   try     LRestRequest.Method := rmPOST;     LRestRequest.AddParameter(‘api-key’, edtApiKey.Text, TRESTRequestParameterKind.pkHTTPHEADER, [poDoNotEncode]);     LRestRequest.AddFile(‘image’, OriginalFilename);     LRestRequest.Client := LRestClient;     LRestRequest.Execute;     LResponse := LRestRequest.Response.JSONValue as TJSONObject;     // LReponse image url processing here ..   finally     LRestRequest.Free;     LRestClient.Free;   end; end; Using the API’s JSON output The above code is only accessing JSON result from Toonify API, which JSON result similar to the following: { “id”: “fcf837eb-640f-4f02-97e29ab02377”, “output_url”: “https://api.deepai.org/job-view-file/fcf837eb-ab02377/outputs/output.jpg”} {     “id”: “fcf837eb-640f-4f02-97e29ab02377”,     “output_url”: “https://api.deepai.org/job-view-file/fcf837eb-ab02377/outputs/output.jpg”} Converting the API output into something useful So, to download the image and then attach it to the component Timage as a result of the process, here is the code: var .. LMemStream: TMemoryStream; LBitmapItem: TFixedBitmapItem; .. begin .. LImageDownload := TDownloadURL.Create; LMemStream := TMemoryStream.Create(); try LImageDownload.DownloadRawBytes(LResponse.GetValue(‘output_url’).Value, LMemStream); LBitmapItem := Image2.MultiResBitmap.Add; LBitmapItem.Bitmap.LoadFromStream(LMemStream); except on E: Exception do ShowMessage(‘Error: ‘+E.Message); end; LImageDownload.Free; LMemStream.Free; .. end 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 var   ..   LMemStream: TMemoryStream;   LBitmapItem: TFixedBitmapItem;   .. begin   ..   LImageDownload := TDownloadURL.Create;   LMemStream := TMemoryStream.Create();   try    LImageDownload.DownloadRawBytes(LResponse.GetValue(‘output_url’).Value, LMemStream);    LBitmapItem := Image2.MultiResBitmap.Add;    LBitmapItem.Bitmap.LoadFromStream(LMemStream);   except on E: Exception do    ShowMessage(‘Error: ‘+E.Message);   end;   LImageDownload.Free;   LMemStream.Free;   .. end Full Delphi source code to cartoonify and image using the DeepAI API The full Tonify method is this: procedure TForm2.Toonify; var LRestClient: TRESTClient; LRestRequest: TRESTRequest; LImageDownload: TDownloadURL; LResponse: TJSONObject; LMemStream: TMemoryStream; LBitmapItem: TFixedBitmapItem; begin LRestClient := TRESTClient.Create(TOONIFY_API_URL); LRestRequest:= TRESTRequest.Create(nil); try LRestRequest.Method := rmPOST; LRestRequest.AddParameter(‘api-key’, edtApiKey.Text, TRESTRequestParameterKind.pkHTTPHEADER, [poDoNotEncode]); LRestRequest.AddFile(‘image’, OriginalFilename); LRestRequest.Client := LRestClient; LRestRequest.Execute; LResponse := LRestRequest.Response.JSONValue as TJSONObject; LImageDownload := TDownloadURL.Create; LMemStream := TMemoryStream.Create(); try LImageDownload.DownloadRawBytes(LResponse.GetValue(‘output_url’).Value, LMemStream); LBitmapItem := Image2.MultiResBitmap.Add; LBitmapItem.Bitmap.LoadFromStream(LMemStream); except on E: Exception do end; LImageDownload.Free; LMemStream.Free; finally LRestRequest.Free; LRestClient.Free; end; end; 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 procedure TForm2.Toonify; var   LRestClient: TRESTClient;   LRestRequest: TRESTRequest;   LImageDownload: TDownloadURL;   LResponse: TJSONObject;   LMemStream: TMemoryStream;   LBitmapItem: TFixedBitmapItem; begin   LRestClient := TRESTClient.Create(TOONIFY_API_URL);   LRestRequest:= TRESTRequest.Create(nil);   try     LRestRequest.Method := rmPOST;     LRestRequest.AddParameter(‘api-key’, edtApiKey.Text, TRESTRequestParameterKind.pkHTTPHEADER, [poDoNotEncode]);     LRestRequest.AddFile(‘image’, OriginalFilename);     LRestRequest.Client := LRestClient;     LRestRequest.Execute;     LResponse := LRestRequest.Response.JSONValue as TJSONObject;     LImageDownload := TDownloadURL.Create; […]

Read More

Developer Stories: Brian Thomson Shares Insights On His Pro Workout Application

Brian Thomson has been using Delphi since its 1.0. Brian submitted a showcase entry (Helpful Workout Application Is Delphi Powered) to the Delphi 26th Showcase Challenge and we interviewed him to learn more about his experiences with Delphi. You can find out more about his application and download it here on Pro Workout. When did you start using RAD Studio/Delphi and have long have you been using it?  I have been using Delphi since 1.0, and the predecessor (Object Pascal) for 5 years before then.  My entire career has been based around Delphi.  Delphi is still my favorite way to write programs. What was it like building software before you had RAD Studio/Delphi? The tools I was using before Delphi were completely non-visual.  We went through iteration after iteration just trying to get the screens to look right! How did RAD Studio Delphi help you create your showcase application? First, there are several aspects of multi-platform development that have been handled for me like a cross-platform-capable clipboard and file system utilities.  While writing my app there were a few items that I had to write for myself in a cross platform manner.  This made me appreciate what had been done for me all the more! What made RAD Studio Delphi stand out from other options? 1. It was already a tool that I was very familiar with. 2. The visual layout tools are FAR easier to use than the XML based setups other tools use. 3. The capability to write the app as a truly cross platform project meant that I could do rapid testing cycles on Windows before putting it out on mobile. What made you happiest about working with RAD Studio Delphi? For me there is no language that is easier to read than Delphi. The IDE is wonderful. The debugging tools on Windows are amazing. They still need to be brought up to that level on Android, but I expect they could get there. What have you been able to achieve through using RAD Studio Delphi to create your showcase application? One of the first issues I noticed was that a truly cross platform application needs to be ready for any resolution on any device.  As a single developer I decided that rather than creating many copies of each of my graphics in different sizes, that I would need to use vector graphics to enable me to define a graphic once, and resize it as needed.  Delphi gave me the ability to write a component that would do basic EPS graphics.  This increased my ability to incorporate graphics while lowering the weight of including the graphics. What are some future plans for your showcase application? My app is designed to help people do a better job when they workout.  As such I plan to set up a web-based infrastructure that will allow me to host workout programs, designed by professionals, which will then be able to be purchased by end users. Thanks Brian! You can take a look at his software’s showcase entry below. Showcase  

Read More

Real World Drama In This Exciting GPS Motorcycle Game

The great thing about RAD Studio Delphi is that the Firemonkey framework does a lot of the hard work for you in your mobile apps. Things like integrating with the mobile device’s hardware and sensors are made much less complicated by the power of the components and runtime library. Combine that with your own imagination and you can come up with something wonderful like WarmerKouder by Dutch developer Daan van der Werf. WarmerKouder is powered by Delphi WarmerKouder is based on a very popular traditional Dutch game of the same name. WarmerKouder, or warmer, colder in English, cleverly mixes game play with the real world by integrating with the mobile device’s GPS sensor via the Firemonkey framework. Players can select a challenge and then follow the sound hints to narrow down the final destination. Players are “warmer” if they are getting close to the target and “colder” if they are moving away from it. Variations of this kind of gameplay are probably familiar in most parts of the world and the simplicity means it has a broad appeal. Delphi’s GPS sensor integration adds a new dimension Developer Daan van der Werf says, “Turn your GPS data to start Warmer Colder and select a challenge. You get hints by the sound app, Warmer if you get closer to the final destination and Colder if you are further from moving. We advise you to use a headset to follow the hints. When you first found the end the application will ask you to make a selfie, so your participation is taken seriously. All data locations are recorded and forwarded to the score www.warmerkouder.nl. If you really are the first and your details are known to us, we will provide you with your prize. Every participant who comes to the final destination of a challenge always wins something! The prizes to be won can vary from t-shirts, caps to the latest complete tire sets or helmet for your motorcycle.” It’s never too late to innovate We think it’s a great way of taking a well-known traditional pastime and bringing it right up to date with the latest modern mobile hardware and the always-on world we live in today. Google Play WarmerKouder Screenshot Gallery

Read More

Modernize Your App: Are You Handling Windows Themes Correctly?

Modern versions of Microsoft Windows are arguably a lot more pleasing to look at.  Gone are the days of apps being gray slabs and chunky buttons.  When Microsoft adopted the Fluent UI interface along with it came a richer color palette, a cleaner, leaner look and fonts without the curls and twists of the Serif families. Sidling in with that beauty treatment were a number of other usability and user convenience facets of being a modern app for us to consider: high DPI, notifications and themes designed to cater for a “light” and “dark” mode. High DPI in your apps RAD Studio Delphi already handles the high DPI changes.  If you right click on your project in the IDE and select “properties” and then click on the “manifest” section you should see it say “per monitor v2”. Having this section ticked lets Windows know that your app (actually the VCL in your app) understands the high DPI – screen resolution pixels – and contains assets and API handling to work with it.  There is actually a substantial amount of work going on behind the scenes in the VCL runtime when the per monitor v2 setting is enabled, which it is by default, but for ordinary mortals like you and I we don’t get to worry about any of that; it just works. If you compare a program compiled with an older version of a compiler which doesn’t understand per monitor v2 you should notice that things on higher resolution monitors can look a little fuzzy.  That’s because that manifest file setting is not there and the internal API calls are older ‘backwardly compatible’ ones which work using the lowest common denominator, resulting in the app not making the best use of modern display technology. It’s a bit like watching a 1970s movie on a 4K OLED TV – bearable, but it looks…dated. What isn’t covered by the latest VCL? The other major visible change ushered in by Windows 10 was the introduction of a “dark mode”. For years we’ve all really been running Windows with almost the only choice available – white backgrounds, gray buttons and some colors dotted around to relieve the glare. Then, Microsoft brought out a “dark mode”. This dark mode turns all the Windows assets, dark (it’s well named!) and this is a setting that your apps are expected to both understand and react to. Currently this is an area where the VCL has not quite covered. Detecting dark mode When your app launches it should try and detect whether Windows is currently expecting you to be “in dark mode” or “light mode”. This is currently handled by a set of API calls for which we do not currently have support in the VCL. Luckily, there’s a registry key we can check. When our app detects that it should be “dark” then we should tell our Delphi app to load an appropriate ‘dark’ theme.  Conversely, if Windows indicates we are expecting ‘light mode’ then a similarly appropriate light-colored VCL theme should be loaded. How to detect dark mode in your VCL apps the easy way It wouldn’t be Delphi if there wasn’t an easy way to do all the hard work. So I wrote a little unit you can include in your VCL Delphi programs to […]

Read More

Developer Stories: Artur Majtczak Discusses His Superb ALLPlayer App

Artur Majtczak is a Delphi user since 1997. He has developed an application (ALLPlayer), which was a showcase entry for the Delphi 26th Showcase Challenge and we got to ask him about his Delphi journey throughout the years. Head over to the ALLPlayer website for more information about the application. When did you start using RAD Studio Delphi and have long have you been using it? I’ve been using Delphi since I can remember, most likely it was Delphi 3. Ah, I just checked, it was probably as early as 1997, so it’s been a long time! What was it like building software before you had RAD Studio Delphi? In my case it was really long time ago, in times when software was created in simple text editor. Thanks to Delphi I was able to create software ideas very quickly, design and build the user interface with just the computer mouse, and all this intuitively and with incredible ease. How did RAD Studio Delphi help you create your showcase application? ALLPlayer in its first version was created in 1998. it was not the prettiest, I admit, but it had features not seen in other players at that time, which was noticed and the number of ALLPlayer users quickly began to grow into millions of users. Subsequent versions added new features and the graphics adapted to changing needs over the years. What made RAD Studio Delphi stand out from other options? If we have a cool idea for a new application, regardless of whether it is a database application, corporate app or for the casual user, it would be hard to find a tool in which we can more quickly program a working version with a nice user interface. What made you happiest about working with RAD Studio Delphi? What made me happiest about working with RAD Studio/Delphi? Work goes fairly quickly and easily, the RAD Studio software is convenient. I think it’s also a matter of getting comfortable with it. What have you been able to achieve through using RAD Studio Delphi to create your showcase application? Readability and simplicity of code. Decent and easy to use user interface. What are some future plans for your showcase application? Continued development and enhancement of applications. Simplicity and adaptation to the latest requirements. Thank you, Artur! Check out his Artur’s showcase application entry, ALLPlayer, by clicking the link below. Showcase

Read More