Discussing, Learning, and Using Delphi and related technologies to create Great Applications!
procedure Meeting;
const
  MeetingTitle = '2008 Wrap-Up';
  MeetingMonth = 2008.11 ;
  { tags: #RemObjects #2008 }
begin
  WriteLn('''
The end of the year is fast approaching. Since we only meet every other month, this is the last meeting this year. I had asked CodeGear to come out and show us Delphi 2009 and talk about new developments, but that doesn’t seem to be an option for us right now. So for our November meeting tomorrow night, I would like to open up the floor to discussion on Delphi news and developments and invite you to share your opinions on where the programming tools are heading.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Web Services';
  MeetingMonth = 2008.09 ;
  { tags: #Slides #Web #2008 }
begin
  WriteLn('''
Several months back, we had a meeting on XML and I promised a “Part II” that would go into web services. That will finally be fulfilled at our next regular semi-monthly meeting. There will be a brief introduction to web services, what they are, and who might be using them. Then we’ll get into the code by creating three web services in Delphi 2006, each increasing in complexity, and each with a VCL client to use them.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'DLLs';
  MeetingMonth = 2008.05 ;
  { tags: #DLLs #Gene Juhos #2008 }
begin
  WriteLn('''
This month, the trials and tribulations of creating and running DLLs in Delphi will be discussed. We will talk about whether or not you really need DLLs, how to handle versioning, and interface design. PRESENTER Gene Juhos of Sysmatics started his programming career writing code for an IBM 3741. He’s written useful code in COBOL, FORTRAN, C, C++, Assembler, CADOL and lately mostly Delphi. He took his first Delphi training class in 1996 using Delphi 3.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'To be determined';
  MeetingMonth = 2008.03 ;
  { tags: #2008 }
begin
  WriteLn('''
We don’t have a formal presentation planned, but will discuss whatever topics arise from the group. Delphi on a laptop will be available to write sample programs wherever the night’s discussion takes us.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Components and Unit Tests';
  MeetingMonth = 2008.01 ;
  { tags: #Components #Slides #2008 }
begin
  WriteLn('''
This month we’ll explore some custom-written non-visual components that have been useful in several projects, encapsulating common functionality for ease of use and consistency. This isn’t a new topic, but is a great starting point to discuss unit testing. Unit testing is not a new topic either, but one that more people should look at. Studying these two topics together could branch in various directions, depending on questions and preferences from the audience.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'QA';
  MeetingMonth = 2007.11 ;
  { tags: #Chris Newcombe #Quality Assurance #2007 }
begin
  WriteLn('''
Quality Assurance is the elusive goal of every product manager–and the bane of every programmer. OK, I don’t know that for sure, but producing bug-free applications can drive a programmer crazy if he has to work with loose guidelines or tight time-constraints. But aren’t those both par for the course? This month’s format will be a little different. There will be an introduction by David Cornelius, focus on examples with Chris Newcombe, then the audience is encouraged to share their “worst bug ever” and how they overcame it.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'This and That';
  MeetingMonth = 2007.09 ;
  { tags: #2007 }
begin
  WriteLn('''
We don’t have a formal presentation this month, but instead will discuss a few topics that may include the following (based on audience preference): Utilities written in Delphi How to call a web service CodeGear’s RAD Studio 2007 What is Blackfish SQL? Others? PRESENTER David Cornelius has been using Borland’s software development tools since the mid-80’s. He is the coordinator of the Oregon Delphi User Group, works for Retail Dimensions, is a contract programmer through CorneliusConcepts.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Live Templates';
  MeetingMonth = 2007.07 ;
  { tags: #Slides #2007 }
begin
  WriteLn('''
Starting with Delphi 2006, the base product has a VERY cool feature previously only available in 3rd-party add-on products such as Code Rush and Castalia. The feature is Live Templates and allows the user to write macros with customized paramters. It is a great productivity enhancement and is much more powerful than many people realize. With Live Templates you can: fix typos automatically; insert large code snippets with a couple of keystrokes; remind yourself of obtuse parameter options; greatly speed up coding.
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'CodeGear Delphi 2007 and Delphi for PHP Launch Tour!';
  MeetingMonth = 2007.05 ;
  { tags: #David I #Delphi Release #2007 }
begin
  WriteLn('''
Experience the CodeGear products first-hand in Portland! You will be provided with a CodeGear update, as well as presentations and demonstations showcasing the new products. As if the opportunity to check out our newest, coolest toys wasn’t enough, we will also give all attendees a special product discount, and enter your name in a raffle for products and even an 80GB iPod! PRESENTER David Intersimone from CodeGear, and Michael Li from InfoCan Management
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;

procedure Meeting;
const
  MeetingTitle = 'Impromptu Discussions';
  MeetingMonth = 2007.04 ;
  { tags: #2017 }
begin
  WriteLn('''
We have no specific planned presentation this month. We’ll gather as colleagues in the industry and friends that like to talk about computers and programming and see what topics emerge!
  ''');
  MeetingDetails(MeetingTitle, MeetingMonth);
end;