Delphi

My Amazon Web Services Programming with Delphi CodeRageX session

Author: Pawe Gowacki In a moment my “Amazon Web Services with Delphi” CodeRage X session is starting. I’m very excited and the sessions so far were very good. It is still 2 and half more days to go! The source code for the demos shown during my AWS Delphi session has been uploaded to Embarcadero Code Central for you to have a look and enjoy! You can download all demos from…
Read more
News

InterBase and Python

Author: Gabe Goldfield Install PyDev using the Eclipse IDE The instructions for installing PyDev are here:http://www.pydev.org/manual_101_install.html In the Eclipse IDE I chose Help > Install Updates and Entered the URL for PyDev Install Python3.4 I chose the…
News

JEDI libraries now in GetIt Package Manager

Author: Luis Navarro Hello. I’m very pleased to announce that the popular JEDI libraries are now available in the GetIt Package Manager catalog. For those who don’t know these libraries, the JEDI Code Library (JCL) consists of a set of thoroughly tested and fully documented utility functions and non-visual classes which can be instantly reused in your Delphi and C++…
Read more
News

New per-DPI awareness in VCL applications

Author: Luis Navarro In RAD Studio 10 Seattle, we’ve added per-DPI awareness in the VCL. This means that, when moving a form from one monitor to another one that has different DPI, the VCL form and the controls will be rescaled according to the new DPI, with no…
News

Setting up Oracle for Embarcadero ER/Studio - Part 2

Author: Anil TexasCowboy Howdy! Welcome to the next installment of the series. In today’s series, we will explore the options for Oracle Client Setup needed for ER/Studio. Install the clients needed for your environments. Reboot after installation. [Verifying Environment Variables] 1) Navigate to the Environment Variables Path. For more information on how to do it, check…
Read more
News

Adding a [FixedLength] Attribute in Code-First Entity Framework

Author: Craig Stuntz In Code First Entity Framework models, you can define the length of a string field with StringLengthAttribute, but you have to write code in OnModelCreating to indicate a CHAR/NCHAR fixed length field: public class MyEntity { [Key] public int Id { get; set; } [StringLength(2)] public string FixedLengthColumn { get; set; } } public partial class MyContext…
Read more