Noutați

TMS FNC Maps v2.1: Introducing OverlayViews

The new TMS FNC Maps update includes support for OverlayViews. This is a heavily improved equivalent of the Marker Labels functionality in TMS VCL WebGMaps and TMS FMX WebGMaps. OverlayViews are a Google Maps API specific functionality and therefore currently only available in TTMSFNCGoogleMaps. OverlayViews can be positioned anywhere on the map and support HTML tags. 3 ways to use OverlayViews 1. Connected to a Marker The OverlayView is automatically displayed below an existing Marker and functions as a Marker Label.  In code, adding a call to AddOverlayView on an existing Marker with the text that goes in to the OverlayView as a parameter value is all that is needed. var m: TTMSFNCGoogleMapsMarker; begin TMSFNCGoogleMaps1.BeginUpdate; m := TTMSFNCGoogleMapsMarker(TMSFNCGoogleMaps1.AddMarker(TMSFNCGoogleMaps1.Options.DefaultLatitude, TMSFNCGoogleMaps1.Options.DefaultLongitude)); m.AddOverlayView(‘Hello World!This is an OverlayView.’); TMSFNCGoogleMaps1.EndUpdate; 2. Positioned at a fixed Coordinate The OverlayView is positioned at a fixed coordinate on the map. The size of the OverlayView remains fixed regardless of the map’s zoom level. In code, setting the Latitude and Longitude coordinates will position the OverlayView at that exact location on the map. var ov: TTMSFNCGoogleMapsOverlayView; begin TMSFNCGoogleMaps1.BeginUpdate; ov := TMSFNCGoogleMaps1.AddOverlayView; ov.CoordinatePosition := cpCenterCenter; ov.Coordinate.Latitude := TMSFNCGoogleMaps1.Options.DefaultLatitude; ov.Coordinate.Longitude := TMSFNCGoogleMaps1.Options.DefaultLongitude; ov.Padding := 5; ov.Width := 500; ov.Text := ” + ‘Uluru’+ ”+ ‘Uluru, also referred to as Ayers Rock, is a large ‘ + ‘sandstone rock formation in the southern part of the ‘+ ‘Northern Territory, central Australia. It lies 335 km (208 mi) ‘+ ‘south west of the nearest large town, Alice Springs; 450 km ‘+ ‘(280 mi) by road. Kata Tjuta and Uluru are the two major ‘+ ‘features of the Uluru – Kata Tjuta National Park. Uluru is ‘+ ‘sacred to the Pitjantjatjara and Yankunytjatjara, the ‘+ ‘Aboriginal people of the area. It has many springs, waterholes, ‘+ ‘rock caves and ancient paintings. Uluru is listed as a World ‘+ ‘Heritage Site.’+ ” + ‘Attribution: Uluru, ‘+ ‘https://en.wikipedia.org/w/index.php?title=Uluru ‘+ ‘(last visited June 22, 2021).’+ ”; TMSFNCGoogleMaps1.EndUpdate; 3. Positioned between preset Bounds The OverlayView is positioned between fixed Bounds coordinates on the map and the size changes depending on the map’s zoom level. When the map is zoomed out, the size of the OverlayView image automatically adapts to keep it inside the Bounds coordinates. In code, set the OverlayView Mode to omBounds to keep it positioned and sized between the Bounds coordinates.In this example an image is used to display a different style of map at that location. To make sure the image fills the entire available space,  it’s width and height must be set to 100%. Optionally the Padding, BackgroundColor, BorderColor and other configuration settings can be added. var ov: TTMSFNCGoogleMapsOverlayView; begin TMSFNCGoogleMaps1.BeginUpdate; ov := TMSFNCGoogleMaps1.AddOverlayView; ov.Mode := omBounds; ov.Text := ”; ov.Bounds.NorthEast.Latitude := 40.773941; ov.Bounds.NorthEast.Longitude := -74.12544; ov.Bounds.SouthWest.Latitude := 40.712216; ov.Bounds.SouthWest.Longitude := -74.22655; ov.Padding := 0; ov.BackgroundColor := gcNull; ov.BorderColor := gcNull; TMSFNCGoogleMaps1.EndUpdate; Available now The TMS FNC Maps v2.1 update is available now. You can download the latest version and start using the new OverlayViews feature right away!

Read More

Opening an exciting new world full of amazing resources for Delphi developers

Imagine Imagine your access to functionally useful libraries, components, controls that are hard to find in the Delphi developer community suddenly became easily available. Visualize Visualize you had no more concerns what platform or what framework to choose for developing your next solution for your customers. Dream Dream you can start adding seamlessly exciting new functionality to your existing applications. That is exactly the core goal of the brand new WX concept we reveal today with TMS FNC WX Pack. In a nutshell, WX means “Packaging Web technology in easy-to-use components for integration in any type of Delphi application“. With WX Pack, you can leverage existing Web libraries in VCL Windows applications, FMX cross-platform applications for Windows, macOS, iOS, Android & Linux, or TMS WEB Core Web applications for any device running a modern browser.   How does it work? The foundation of the WX concept is our powerful TMS FNC Browser component with its accompanying bridge technology. The FNC browser wraps the native operating system browser for the VCL, FMX, or LCL framework and offers a sort of virtual embedded browser in a TMS WEB Core Web application. This FNC browser is used to host a Web library with the choice to host it for offline or for online use. You can opt for online use to make the component lighter or offline use which means that the component will take up somewhat more size in your executable (depending on the component of course) but with the guarantee it will run fine without an Internet connection. Thanks to the FNC bridge technology, the native application-level component can communicate with the browser hosted library and vice versa. As a Delphi developer, this is all abstracted and you only deal with it at Object Pascal level as a component and its properties, methods, and events. Where do we start? There is an abundance of existing Web libraries, so where to start was the big question. The answer was simply listening to you, the user. For quite some time, among the most popular requests for new components were a barcode generator component, a QR code generating component, an HTML editor, a PDF viewer, … And so, that is exactly where we started our research and initial development to bring these components as part of the WX concept. It enables us to deliver these kinds of components in a fraction of the time otherwise needed to build them from the ground up, and it is an opportunity to leverage proven, well-tested, and widely popular existing libraries.   The first group of components In the first beta build of TMS FNC WX Pack, we have: TTMSFNCWXBarCodeThis components offers close to hundred different barcode types with lots of customization properties for these barcode types. TTMSFNCWXQRCodeComponent to generate QR codes of different type and with several customizations like logo in QR code for example TTMSFNCWXHTMLMemoEdit HTML directly with the TTMSFNCWXHTMLMemo component. It has an optional embedded format toolbar or can be used with external toolbar. Programmatic access to all formatting capabilities is available. Content is loaded and saved directly as HTML. TTMSFNCWXPDFViewer With this component on the form, you can display PDF files in your applications, including page thumbnails. There is programmatic access to navigate through pages, search text, … TTMSFNCWXCamera Access your device camera with the […]

Read More

11 Tutorials For Working With Ethereum From Delphi

Ethereum is used to create decentralized applications that utilize the benefits of cryptocurrency and blockchain technology. These decentralized applications (dapps) can be trustworthy which means that once they are deployed to the Ethereum network, they will always run as programmed. They can control and regulate digital assets in order to create new kinds of financial applications. They can be decentralized in a way that no single entity or person controls them and are nearly impossible to censor. In this blog post, we’ll look at some of the most popular and effective tutorials that can help you adapt to a quick hands-on for working with Ethereum from Delphi. How can I connect Delphi to a local (in-memory) blockchain? This simple tutorial primarily focuses on connecting Delphi to a local (in-memory) blockchain using Delphereum, which is a Delphi interface to the Ethereum blockchain.  There are a few prerequisites and GitHub repositories/libraries that are required before you actually move on to using Delphereum. After that, you will be required to download and start a Ganache instance to run your personal Ethereum blockchain. Once Ganache is up and running, you can move ahead and start a new Delphi project. For simplicity in understanding, the tutorial uses an easy approach of just connecting to an Ethereum blockchain and retrieve the account balance.  <br /> const<br /> URL = ‘http://127.0.0.1:7545’;<br /> begin<br /> web3.eth.getBalance(TWeb3.Create(URL), Edit1.Text, procedure(qty: BigInteger; err: IError)<br /> begin<br /> TThread.Synchronize(nil, procedure<br /> begin<br /> if Assigned(err) then<br /> MessageDlg(err.Message, TMsgDlgType.mtError, [TMsgDlgBtn.mbOK], 0)<br /> else<br /> ShowMessage(web3.eth.utils.fromWei(qty, web3.eth.utils.ether) + ‘ ether’);<br /> end);<br /> end);<br /> end; const   URL = ‘http://127.0.0.1:7545’; begin   web3.eth.getBalance(TWeb3.Create(URL), Edit1.Text, procedure(qty: BigInteger; err: IError)   begin     TThread.Synchronize(nil, procedure     begin       if Assigned(err) then         MessageDlg(err.Message, TMsgDlgType.mtError, [TMsgDlgBtn.mbOK], 0)       else         ShowMessage(web3.eth.utils.fromWei(qty, web3.eth.utils.ether) + ‘ ether’);     end);   end); end; For a detailed and descriptive understanding, check out the full-length tutorial here.  How can I connect Delphi to the Ethereum main net? The previous tutorial focused on connecting Delphi with local (in-memory) blockchain. In this tutorial, we take a step forward and connect Delphi to Ethereum main net.  To connect to the Ethereum main net, you will need to sign up for a free account on Infura to get a project ID. <br /> const<br /> URL = ‘<your_infura_project_endpoint>’;<br /> begin<br /> web3.eth.getBalance(TWeb3.Create(URL), Edit1.Text, procedure(qty: BigInteger; err: IError)<br /> begin<br /> TThread.Synchronize(nil, procedure<br /> begin<br /> if Assigned(err) then<br /> MessageDlg(err.Message, TMsgDlgType.mtError, [TMsgDlgBtn.mbOK], 0)<br /> else<br /> ShowMessage(web3.eth.utils.fromWei(qty, web3.eth.utils.ether) + ‘ ether’);<br /> end);<br /> end);<br /> end;</your_infura_project_endpoint> const   URL = ‘‘; begin   web3.eth.getBalance(TWeb3.Create(URL), Edit1.Text, procedure(qty: BigInteger; err: IError)   begin     TThread.Synchronize(nil, procedure     begin       if Assigned(err) then         MessageDlg(err.Message, TMsgDlgType.mtError, [TMsgDlgBtn.mbOK], 0)       else         ShowMessage(web3.eth.utils.fromWei(qty, web3.eth.utils.ether) + ‘ ether’);     end);   end); end; Notice that in the code above, we have replaced the local Ganache blockchain URL with the Ethereum main net link that we retrieved from Infura.  For a detailed and descriptive understanding, check out the full-length tutorial here. Can I connect Delphi to smart contracts? In this tutorial, the idea is to explore how can you connect your Delphi applications with the deployed Ethereum smart contracts. The tutorial uses BNB’s smart contract and synchronizes the execution state with the main thread for a seamless connection.  <br /> var<br /> Client: TWeb3;<br /> const<br /> URL = ‘https://mainnet.infura.io/v3/your-project-id’;<br /> begin<br /> Client := TWeb3.Create(URL);<br /> web3.eth.call(Client, ‘0xB8c77482e45F1F44dE1745F52C74426C631bDD52’, ‘symbol()’, [], procedure(tup: […]

Read More

The High-Performance Future Of AI Is REST APIs

Businesses mostly prefer artificial intelligence solutions that are customized as per their needs and serve exactly the same purpose that they want to achieve. In such situations, that require a significant level of customization, desktop apps are still an ideal choice of adoption for fast-paced businesses.  Desktop apps are powerful execution tools that can natively run on your local machine to provide holistic application navigation and utilization experiences. With the advancement of modern web technologies, the desktop application development paradigm also experienced a major drift in terms of implementation. Technologies such as JavaScript and Python have inspired the hybrid implementation of desktop apps. We already know from the Delphi vs. WPF vs. Electron for Windows Desktops Whitepaper that products such as RAD Studio (Delphi and C++ Builder) provide a seamless desktop application utilization experience by enabling native code that is fast, high performant, and memory efficient. Using the potential of REST APIs, you can easily integrate artificial intelligence into your already built desktop apps with Delphi and C++.  In this blog post, we’ll look at how we can use REST APIs to create tremendous Delphi and C++ desktop apps that provide customized artificial intelligence solutions for our own use case.  What are the benefits of using REST APIs for AI? The primary motivation behind designing AI solutions is to study data and predict meaningful insights out of the data. In today’s world, where businesses are producing loads and loads of data, AI serves its best purpose by providing various kinds of predictive outcomes for the companies.  The fact of the matter is, everyone wants to use AI for the larger betterment and benefit, but not everyone has the capacity and capability to design the artificial intelligence solutions in-house by themselves. Be it infrastructural constraints, hardware limitations, lack of human resources, or tight organizational budget, if you cannot afford to set it up then it does not at all mean that you cannot even consume it. The REST APIs and the concept of AI as a service are the changemakers in this entire intelligent automation lifecycle.  The people and ventures who have the required resources provide AI using the REST service. To you, as the end-consumer of their AI resource, it does not matter how they handle the internal complications and functionalities to process machine learning models. You only provide your data points to the third-party service and ask it to do the hard work on your behalf and just return the final output for you to use further. All the hardware, infrastructural, and optimization stuff is efficiently handled by the API service internally.  How does RAD Studio help in creating stunning high-performance AI desktop apps? Now that we know how REST APIs make it really easy to use the power of artificial intelligence, here comes the point where we choose RAD Studio to create impressive desktop apps that make intelligent decisions for their users. Due to Delphi and C++ Builder in RAD Studio, the developed desktop apps have high performance, decreased memory usage, and an overall optimized application utilization experience.  Since RAD Studio provides Delphi runtime and C++ builder, it is tremendously difficult to design and develop AI components with this technology stack and ecosystem. Apart from that, there is no need to recreate the wheel and write ML scripts from scratch […]

Read More

How To Create Your Own Components For The FastReport Dialog

When creating a report, it is important not only to make a nice printable form that will display the data the user needs but also a convenient pre-print dialog, where the user can set the parameters to generate the report. The FastReport preprint dialog already contains a number of components, for example, Label, Edit, Button, Memo. But sometimes this is not enough and you have to create your own dialog components for FastReport. In fact, they are analogs of usual Delphi components that can be used in FastReport dialog forms. This article will talk about creating this component. For more information, we recommend reading the FastScript documentation and the FastReport VCL manuals for developers and software specialists. To display data from the database, this article uses the DBGridEh component from the EhLib VCL library L, which will be integrated into the FastReport dialog. Delphi 10.4.2 was used as a development environment, but everything described below will be suitable for any other Delphi starting from version 7 (adjusted for the version). Let’s create a new package (dpk) and name it frxDBGridEh27. Add to it a new file frxDBGridEhControl.pas, which will serve as the basis for our grid. We will declare a component in this file for registration in Delphi: TfrxDBGridEhDialogControl = class(TComponent); TfrxDBGridEhDialogControl = class(TComponent); We begin to describe the TfrxDBGridEh component, which will be created from the base dialog class TfrxDialogControl. In fact, we will re-declare the properties of the base DBGridEh component into a component to use in FastReport. You can re-declare not all properties, methods, event handlers, but only those that are needed for work. In the private section, I recommend paying special attention to the following: private FDBGridEh :TDBGridEh; // The base component, the properties of which we will set and methods of which we will call FDataSource :TDataSource; // Interface between grid and data source in FastReport // Variables that will store the name of the event handlers FOnGetCellParams :TfrxGetCellParamsEvent; FOnGetBtnParams :TfrxGetBtnParamsEvent; FOnTitleBtnClick :TfrxTitleClickEvent; FOnDrawColumnCell :TfrxDrawColumnCellEvent; FOnColEnter :TfrxColEnterEvent; FOnCellClick :TfrxCellClickEvent; FOnColWidthsChanged :TfrxNotifyEvent; // These system procedures are needed to save and restore grid columns to the fr3 report template. procedure ReadData(Reader: TReader); procedure WriteData(Writer: TWriter); // These three methods are needed to be able to connect a basic data source of the TfrxDBDataset (FastReport) or TDataSet (Delphi) type to the grid. function GetDataSet: TDataSet; procedure SetDataSet(const Value: TDataSet); procedure SetDataSetName(const Value: String); // This is the event handler code procedure DoGetCellParams(Sender: TObject; Column: TColumnEh; AFont: TFont; var Background: TColor; State: TGridDrawState); procedure DoTitleBtnClick(Sender: TObject; ACol: Integer; Column: TColumnEh); procedure DoGetBtnParams(Sender: TObject; Column: TColumnEh; AFont: TFont; var Background: TColor; var SortMarker: TSortMarkerEh; IsDown: Boolean); procedure DoDrawColumnCell(Sender: TObject; const Rect: TRect; DataCol: Integer; Column: TColumnEh; State: TGridDrawState); procedure DoColEnter(Sender: TObject); procedure DoCellClick(Column: TColumnEh); procedure DoColWidthsChanged(Sender: TObject); 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 private   FDBGridEh      :TDBGridEh;   // The base component, the properties of which we will set and methods of which we will call   FDataSource    :TDataSource; // Interface between grid and data source in FastReport     // Variables that will store the name of the event handlers   FOnGetCellParams    :TfrxGetCellParamsEvent;   FOnGetBtnParams     :TfrxGetBtnParamsEvent;   FOnTitleBtnClick    :TfrxTitleClickEvent;   FOnDrawColumnCell   :TfrxDrawColumnCellEvent;   FOnColEnter         :TfrxColEnterEvent;   FOnCellClick        :TfrxCellClickEvent;   FOnColWidthsChanged :TfrxNotifyEvent;     // These system procedures are needed to save […]

Read More

Delphi in the Galileo Project in Brazil

The first class formed by Tech4Me’s Galileo Project also ended their journey with knowledge in Delphi. What is Project Galileo? The Galileo Project is a Tech4Me initiative that aims to transform the lives of young people from simpler backgrounds through technological education. The proposal is that in 6 months these young people can have the necessary knowledge to enter the job market in a position of junior programmers. Participation of Embarcadero and its Academic Program The first class formed by the Galileo Project had 36 hours of additional content focused on the Delphi language with RAD Studio 10.4.2 Sydney . It took 6 weeks, with 2 weekly meetings per week using the Embarcadero tool in its latest version. This is thanks to Embarcadero’s Academic Program that provided full licensing for students who were able to enjoy all the features of RAD Studio Enterprise. Idea embraced by the Delphi Community The instructors of the Delphi module taught to this first group of graduates of the Galileo Project were already well-known and renowned members, with great performance in the Delphi community. Fernando Rizzato, Kelver Merlotti, Landerson Gomes and Marcos Moreira joined the presented Project and participated donating their time and teaching the content to the students. Employability on the rise As the market has a great demand for IT professionals, the proposal becomes even more convincing when, even before the course is concluded, students begin to be recruited. And so it was. The Alterdata Software , whose president Ladmir Carvalho is also a founding partner of Tech4Me, recruited some young people and they are already working in the company, which is located in the city of Teresopolis – RJ. Ladmir Carvalho and young people recruited from the Galileo Project Thanks I would like to take this post to thank the Tech4Me Team for their support. Cristian, Carol, Bruna …thanks so much for all your support. Ladmir thank you for the memory and for the invitation. Thank you Fernando, Kelver and Marcos for embracing this idea, Embarcadero for the freedom it gave us to participate and contribute something so rewarding. And also a special thanks to these stars located by Galileo, who from now on are new colleagues in the IT field. The original post in Portuguese is available on my website through the link: https://www.landersongomes.com.br/embarcadero/delphi/delphi-no-projeto-galileo. Until the next opportunity.

Read More

Everything You Need To Build A WSL GUI Tool Today

The Windows Subsystem for Linux allows developers to run a GNU/Linux environment including command-line tools, most of the utilities, and applications directly on their Windows computers. It has become extremely popular and RAD Studio Delphi is able to create Linux applications which run directly on both WSL and full Linux computers. Several WSL distributions are available via the Microsoft Store (Ubuntu, Kali, Fedora, Debian, OpenSUSE) WSL is currently focused for the command-line use but with extensions and programs you can install GUI and connect through remote desktop control utilities. Windows 11 allows Windows users to run full GUI Linux apps via WSL2 which is an updated version of the original WSL. RAD Studio also works with WSL2 and using FMX Linux you can create FULL GUI applications for Linux. WSL is faster and more lightweight on computer resources than a virtual machine. You can execute Linux binaries from Windows and Windows executables from Linux In the recent WSL2 updates, we can see there is a huge increase in file system performance and full system call compatibility for a better experience. You can find how to install WSL on Windows in this official documentation. How can I manage WSL (Windows Subsystem for Linux) with a graphical application? WSL GUI Tool – is an open-source tool built with Object Pascal, Delphi, that manages installed Linux distributions easily with a user interface. The WSL GUI Tool allows you to manage WSL features with GUI & offers these functions: Start & Stop a distribution. Rename distribution. Change flag of distribution from the original WSL version to the new improved WSL2. Edit environment variables. Moreover, you can explore the source code and learn about how to do these all stuff with Delphi which is great! Where can I download the WSL GUI tool? If you would like to just try out the portable executable select the Release section in GitHub and download it. Where can I learn more about using RAD Studio Delphi with Window’s WSL and Linux? The best place is the Windows 10 Modernize Webinar Series. You can learn how to target Windows 10’s Windows Subsystem for Linux with RAD Studio Delphi in this great video from Jim McKeeth: Where can I download the Delphi Object Pascal source code for the WSL GUI Tool? You can go to the following link for the official WSL GUI tool here: https://github.com/emeric-martineau/wsl-gui-tool Why not download a free trial of RAD Studio today and try the code out for yourself?

Read More

5 Ways To Improve Your Code: What You Need To Know

Over time, software development has experienced significant changes in the approach to design as well as how those designs are implemented. As the market evolved, the software industry also had to adapt to it for a better digital experience for the customers. Delphi and RAD Studio are constantly evolving, with each new version building on success to add new features and functionality to address those advances in technology, to keep pace with new approaches in UX and UI as well as to work with modern hardware and the SDKs or APIs that drive them. While RAD Studio offers a great many built-in features, one of the strongest aspects of Delphi is the low-code approach to coding by using components – both those that come with RAD Studio, but also those available from the rich ecosystem of third-party suppliers. In this blog post, we’ll explore some of the exciting and of those third party tools which can help you improve your Delphi code. How can I detect issues in Delphi source code in the development phase? It is really important for a developer to catch potential issues in the source code earlier in the development phase so that the end-to-end deployment cycle can be executed smoothly and without delays.  RAD Studio 11 automatically highlights errors in the code explorer view of the structure window FixInsight is a smart code analysis tool for Delphi developers that detects issues in Delphi source code. It performs a static code analysis to help developers find potential bugs and errors earlier in the development phase. FixInsight also provides developers with a list of warnings when the issues are found. Not only that, but FixInsight’s smart engine also checks the Delphi code for coding convention compliance.  Source: TMS Software How can I save development time by autoformatting the code? In order to follow the best coding designs and conventions, it is extremely important to format the code properly so that it looks neat for anyone who is viewing the code.  GExperts is a very comprehensive and popular free set of tools that are built to increase the productivity of Delphi and C++ Builder developers by adding several useful features to the IDE including code formatting. It is open-source software that includes DelForExp tool that primarily acts as a code formatter to help you improve your Delphi code. This is an alternative to the built-in code formatter provided by RAD Studio. RAD Studio also includes a code formatter if you press CTRL + D Another really great GExperts feature related to code formatting is an “align” editor helper which can align your code so that identifiers are neatly laid out in columns in an alternative to tabs or spaces like so: Not all developers like code aligned this way but many prefer it and think it offers greater clarity, particularly to blocks of code with assignments in them. Can I easily manage Delphi dependencies without writing dedicated scripts? Dependency management is one of the integral parts of any production-ready source code, and if not handled properly, it can lead the application to run into issues.  To avoid this in your Delphi applications, it is advisable to use dedicated dependency management tools that take care of packages while you focus and invest your time in producing the right output that your […]

Read More

Announcing Sencha Tooling 7.4 Early Access

We’re pleased to announce that Sencha Tooling 7.4 EA is now available to all Ext JS Pro and Premium customers. In this pack, we have new updates and improvements for Sencha Architect, Sencha Themer, Upgrade Adviser, Sencha Test, and Sencha Cmd. What’s New in Architect 4.3 With Architect 4.3, you can visually build apps using new Ext JS 7.4 grid features such as Grid Multi-Grouping level, Grid Filter Bar, Grouping Summary, and totals for both classic and modern toolkits, as well as build projects with Cmd 7.4. This release will enable you to quickly build sophisticated web applications using Ext JS 7.4. Enhance your Ext JS Grids by using new Ext JS 7.4 Grid Features Ext JS 7.4 delivers some amazing new capabilities for Grid in Classic and Modern toolkits. With Sencha Architect 4.3, you can visually build Ext JS apps with new configs and plugins for Grid, delivering rich Grid experiences in your applications. Migrating to Ext JS 7.4 framework The architect provides options to easily upgrade applications to Ext JS 7.4 that were built using older versions of the framework. You can upgrade to the latest version of the Ext JS framework when you right-click on ‘Library’ in the Resources section of Sencha Architect. Bug Fixes and Performance Improvements With 13+ bug fixes, this release brings a solid set of improvements that the Sencha Architect users have been waiting for.Please see the Sencha Architect 4.3 release notesArchitect 4.3 has an updated Electron (version 11.3), which delivers performance improvements and stability and Mac M1 processor support. Try and Share Your Feedback Feedback will be reviewed by the Sencha product and engineering team. We look forward to reading your comments What’s New in Themer 1.4 Sencha Themer 1.4 provides many bug fixes and improvements, which you can review here. In addition to these updates, we are also very excited to announce the following additions. Support for Ext JS 7.4.0 and Cmd 7.4 Themer now supports Ext JS 7.4.0, which includes many bug fixes and continued improvements regarding Modern and Classic toolkits. For the classic toolkit, styling support for the new Ext.grid.feature.AdvancedGrouping feature and the Ext.grid.plugin.filterbar.FilterBar plugin has been added in the form of two new components available in the left navigation bar under the Grid section. These are named “Advanced Grouping” and “Grid Filter Bar”. For the modern toolkit, styling support for the new Ext.grid.TreeGrouped grid and the Ext.grid.plugin.filterbar.FilterBar plugin has been added in the form of two new components available in the left navigation bar under the Grid section. These are named “Tree Grouped Grid” and “Grid Filter Bar” Bug Fixes and Performance Improvements Themer 1.4 has an updated Electron (version 12.0.11), which delivers performance improvements and stability. Mac M1 processor – Support for arm64 has been added for Electron. Please see the Sencha Themer 1.4 release notes. Try and Share Your Feedback Feedback will be reviewed by the Sencha product and engineering team. We look forward to reading your comments. What’s New in Sencha Test 2.4 Sencha Test 2.4.0 brings a number of enhancements and bug fixes. These are detailed in the Release Notes. Sencha Test notable features Sencha Test Studio has been upgraded to Electron 11 Sencha Test included Chrome drivers have been updated to 86-90 The Generic Web Driver has been fixed Mac M1 processor – […]

Read More

What Is It Like To Be A Developer Dalija Prasnikar?

Hello. This article is part of a series where we speak with professional software developers, ask them what it’s like to write code for a living, and perhaps gain a few insights into the software development industry along the way. In our interview chair today we have the simply marvelous Dalija Prasnikar. Dalija is based in the wonderfully historic and picturesque city of Zageb in Croatia. You’ll hear more in a moment about Dalija’s development background but she also is an accomplished photographer as well as a respected author of some great coding books too. You can tell she’s a proper coder – she’s the only one so far to have returned her answers using MarkDown! Dalija, thanks for agreeing to take part in the interviews! Thank you 🙂 What would be your brief evening news summary of who you are and what you do? Software Developer, Consultant, Book Author, Embarcadero MVP. Crashing other people’s software and writing my own since ’85. Which Embarcadero product(s) do you use a) the most b) regularly? Delphi, of course. How and/or why did you become a developer? When I was a kid, I wanted to be an astronaut. I was really into space, astronomy, science… and anything related to them. When I was about nine, the first Sci-Fi series I remember watching was Blake’s 7. And my favorite character there was Kerr Avon. A highly intelligent, sarcastic, computer genius. At the very beginning of the series, he said “Who controls the computer, controls the ship,” and this was the crucial moment when “I want to be an astronaut” evolved into “I want to control the computers.” Of course, in real life, being a developer and knowing what I know now, controlling the computers and the ship is really an illusion. More often, it is the other way around. That is also why I never fully trust anything tech-related. Do you think you will ever stop being a developer? If so, what would be next? I could probably be a farmer… but I would be a farmer that writes code as a hobby. [Me too! We should both speak to fellow developer Alister Christie – he lives on a lifestyle block – IanB] What made you start using Delphi/C++ Builder? I learned Turbo Pascal in high school, and it quickly become my favorite language. It could do everything C could do, and it was much faster – not only for writing code, but for compiling, too. I started my career as an IT journalist at BYTE Croatia (a McGraw-Hill licensee), and the Editor of MIPS Computer magazine. With the rise of the Internet and online publishing in the ’90s, I moved to web development. I was using Java and JavaScript before I started to use Delphi. Coming from Turbo Pascal, which I had also been using all along for writing various utilities and web page generators, Delphi was a natural choice for developing Windows applications. Dalija, in full-on MVP mode! What are you currently working on? As you know, I have already written two Delphi books: Delphi Memory Management and Delphi Event-based and Asynchronous Programming. I like writing books. It is an opportunity to share knowledge, but also an opportunity to learn. No matter how much you know about some topic, there are always […]

Read More