The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,839 other subscribers

Archive for the ‘Development’ Category

Delphi – adding for … in support to TPageControl

Posted by jpluimers on 2009/04/22

A long time ago, the for ... in statement was added to the structured statements part of the Delphi language. It is a really powerful statement, that allows for code like this:

var
  Line: string;
begin
  for Line in MyMemo.Lines do
    // some business logic
end;

in stead of using the traditional for statement which needs an extra LineIndex variable and an assignment statement:

var
  LineIndex: Integer;
  Line: string;
begin
  for LineIndex := 0 to MyMemo.Lines.Count do
  begin
    Line := MyMemo.Lines[LineIndex];
    // some business logic
  end;
end;

So, “for … in” is a cool feature, but now I wanted to do the same for a TPageControl:
Read the rest of this entry »

Posted in Delphi, Development, Software Development | 1 Comment »

Colleauges speak @ InterBase PowerDay’s in The Netherlands and Germany

Posted by jpluimers on 2009/04/22

InterBase PowerDay '09 logoTomorrow, the 23rd of April, my Dutch and German InterBase colleauges from better office will be delivering the InterBase PowerDay inAmersfoort.

Speaking are Daniel Magin and Gwan Tan, attending are both regular InterBase developers and InterBase VARs.
The PowerDay costs EUR 124 excluding VAT to attend, and has 4 sessions that roughly covering these areas:

  • What’s new in InterBase 2009
  • InterBase as a vault
  • Advanced InterBase
  • Tools to maintain InterBase

The event is organized together with Barnsten, which are the representatives of CodeGear in The Netherlands.

A similar event is organized in Germany on the 6th of May in Frankfurt/Offenbach. That event is organized by better office Germany and CodeGear Germany. 

better office Germany is InterBase master reseller, and better office benelux (where I work) has some very knowledgeable InterBase people too.

Posted in Database Development, Development, Event, InterBase, PowerDay | Leave a Comment »

Speaking @ Microsoft DevDays ’09, May 28-29, The Hague

Posted by jpluimers on 2009/04/21

DevDays '09 logo

I’ll be speaking during the Microsoft DevDays ‘09 that are held from May 28-29 (27 if you count the preconference) in The Hague (at the World Forum, previously known as Nederlands Congres Centrum).

My session is in the “Geek Night” track that is held on the evening of May 28.

It is gonna be a cool session, showing collaboration on many levels:

  • as in integration between .NET and hardware (WebCams and Servos through USB)
  • as cooperation between you and Open Source projects
  • as building your own shooter device from plexiglass and other easy to obtain hardware
  • as interaction between users and the automated shooter device

DevDays '09 logo Geek Night

The session works towards the creation of an automated shooter device.
It consists of a USB webcam of which you monitor the video stream, a USB Servo Controller that steers Servos and relais, and a laserpointer.
The laserpointer can track moving objects (like you, the audience!) as seen through the  webcam.

During the session you see the pro’s and con’s of using Open Source, what can go wrong when using multiple-web-cams, and much much more.

Prepare for a fun night!

Posted in .NET, C#, Conferences, DevDays09, Development, Event, Software Development | Tagged: | Leave a Comment »

Speaking @ DelphiLive ’09, May 13-16, San Jose

Posted by jpluimers on 2009/04/21

I’ll be speaking during DelphiLive ’09 that is held from May 13-16 in San Jose (CA, USA, not any of the other San Jose cities).

This is going to be a top event with really knowledgeable Delphi speakers from all over the world.
Besides the 2 sessions that I’m doing, I’ll be hanging around as are the other speakers.

So feel free to approach us, and learn from the things we learned. Or teach us something new: all of us are eager to learn as well as teach!

The downloads are now available.

Posted in Conferences, Database Development, Delphi, Development, Event, InterBase, Software Development | Tagged: , , | Leave a Comment »