Visit site The Wiert Corner

December 2011

7
votes
Vote UpVote

Delphi XE2 and iOS: things you should not do

The Wiert Corner – When developing applications for iOS using Delphi XE2, it uses a smart but convoluted FPC detour. That results in a few things you should take into account when developing iOS applications: Do not use Unit scope identifiers (that’s why for instance the FireMonkey unit FMX.Dialogs is called ...
Details Favorite? Off-Topic? jpluimers @ 2011-12-20 05:00
7
votes
Vote UpVote

Asphyre Sphinx 2: X-platform game development for Delphi XE2 and/or FPC

The Wiert Corner – Just found out that during my holiday, Asphyre Sphinx 2 was released: a free 2D/3D framework for X-platform game development that comes with full source code. It is based on FireMonkey supports Delphi XE2 Update 1 and up, and FPC (and yes: it supports on iOS too). Interesting stuff! –jeroen ...
Details Favorite? Off-Topic? jpluimers @ 2011-12-15 05:00
2
votes
Vote UpVote

Trouble with Google Reader and GEXperts RSS feed :)

The Wiert Corner – While catching up my feeds after an astonishing holiday around the Antarctic Peninsula (some photos at Flickr), I bumped into a Google Reader issue with the GExperts.com RSS feed: all posts seem to be stamped 20111117T0555. Funny, as I remember being late to report GExperts 1.35 for Delphi XE2 was ...
Details Favorite? Off-Topic? jpluimers @ 2011-12-07 12:17
2
votes
Vote UpVote

When writing applications, include Keyboard Shortcuts for both the CUA and Windows/Apple shortcuts

The Wiert Corner – When you write applications, it is important to include both the CUA and the Windows/Apple keyboard shortcuts, and get the tab order of keyboard accessible user elements right. Many modern applications seem to put less and less emphasis on the most efficient user input device: the keyboard. You ...
Details Favorite? Off-Topic? jpluimers @ 2011-12-06 05:00
4
votes
Vote UpVote

File Extensions of Files Generated by RAD Studio – RAD Studio XE2

The Wiert Corner – With Delphi 1, it was easy to choose what to put in your version control systems: basically .pas, .dfm, .dpr, .inc, .res, .cfg and you were set. Now there are many more extensions involved, so it is harder to choose what to put in your version control system and what not. The File Extensions of ...
Details Favorite? Off-Topic? jpluimers @ 2011-12-01 05:00

November 2011

9
votes
Vote UpVote

Matrix library by Michael Rabatscher with many features and x86/x64 optimizations

The Wiert Corner – This one is on my Delphi research list for sure: a matrix library including some advanced operations like singular value or LU decomposition, pseudo inversion and others as well as a large set of assembler hand optimized matrix primitive functions. The assembler version are available for x64 code as ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-24 05:00
0
votes
Vote UpVote

Jamie’s Blog | MQTT Client Library for Delphi

The Wiert Corner – Another way to talk to WebSphere MQ from Delphi is to use the MQTT Client Library for Delphi. It encapsulates the MQTT protocol, which – being a telemetry transport protocol – is extremely light weight, but also versatile. –jeroen Via: Jamie’s Blog | MQTT Client Library for ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-23 05:00
1
vote
Vote UpVote

In Delphi SHR is a SHR; in C >> is a SAR or SHR (via: Shift Right: Delphi vs C | Galfars Lair)

The Wiert Corner – I never knew that >> in C was a SAR/SHR depending if the underlying integer type was signed/unsigned. In Delphi the SHR is always a SHR operation: it never takes into account the sign. SAR is the artithmetic shift right. SHR is the binary/logical shift right. –jeroen via: Shift Right: ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-22 05:00
0
votes
Vote UpVote

Delphi XE2 Unit Scope tables

The Wiert Corner – Delphi XE2 introduces Unit Scopes. Below is a batch file that generates a CSV file with scopes and units. The file does not only contain the VCL, RTL and FMX units, but all units in the C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\source\ directory tree. From the CSV, I generated two tables at ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-17 05:00
1
vote
Vote UpVote

Deep Object Comparison Delphi – Stack Overflow

The Wiert Corner – Last week there was an interesting question on Deep Object Comparison Delphi at Stack Overflow. Two nice answers: Recursive new style RTTI based solution (comparing all data) Streaming using OmniXML and comparing the output (comparing only the relevant data) –jeroen Filed under: Delphi, ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-10 05:00
3
votes
Vote UpVote

Allocating 4Gb+ of memory in x64 using Delphi XE2 Update 2: Unofficial fix for QC#100726 …

The Wiert Corner – If you are creating x64 applications using Delphi XE2, have Update 2 installed, and are (potentially) allocating more than 4Gb of memory (QC report 100726), then you need the Unofficial fix for QC#100726, or use the latest version of FastMM (see below). If you use Delphi XE2 (original release) or ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-09 11:00
0
votes
Vote UpVote

EKON15 download materials on-line at bo.codeplex.com

The Wiert Corner – I uploaded the EKON15 conference download materials to http://bo.codeplex.com. The changeset you are after is http://bo.codeplex.com/SourceControl/changeset/changes/70872   It contains most of the materials for the Delphi Tage and the Delphi Live conferences too, though I will upload the ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-03 11:00
8
votes
Vote UpVote

You need at least 5Gb free space for Update 2 for #Delphi XE2, C++Builder XE2 and RAD Studio XE2

The Wiert Corner – Yesterday, Update 2 for Delphi XE2 / C++ Builder XE2 / RAD Studio XE2 became available for download. A few notes from my experience upgrading from a full RAD Studio XE2 Update 1 install (from ISO): You need at least 5 Gb free disk space to install Update 2. It will leave a 300 Mb directory at ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-02 11:00
2
votes
Vote UpVote

Delphi: solution for “How can I find all the units in my Delphi app?” (via Stack Overflow)

The Wiert Corner – Delphi Tricks (from Chris Hesik, see link below) to show which units are compiled into an app: Use the modules view, this will show you what units (and source files!) the debugger knows of for your modules. Use the –depends switch on the commandline: this will output a .d file listing all the ...
Details Favorite? Off-Topic? jpluimers @ 2011-11-01 05:00

October 2011

0
votes
Vote UpVote

Delphi XE2 Hands-On Workshop met better office – beperkt aantal plaatsen beschikbaar

The Wiert Corner – Op dinsdag 6 en woensdag 7 december 2011, organiseren Barnsten en better office benelux een 2 daagse Delphi XE2 Workshop in Hoofddorp. Het aantal plaatsen is beperkt, aanmelden kan via de Barnsten.com site. Het doel van deze workshop is ervaren Delphi ontwikkelaars snel productief te laten werken ...
Details Favorite? Off-Topic? jpluimers @ 2011-10-25 05:00
Subscribe:
Contact us to advertise on DelphiFeeds.com

Community Links

Delphi Tage Torry Firebird News

Sponsor

 
Please login or register to use this functionality.
(click on this box to dismiss)