| |
|
KB Article |
By |
Group >>
KB Topic
|
Counters |
|
 Definition |
 Article |
|
1/5/2009
|
|
Coding & OO >>
Object Orientation (OO)
|
|
|
 Article |
Prestwood specializes in custom business solutions.
Employee Handbood Writer, distributed by the California Chamber of Commerce, was a particularly challenging project with very gratifying results.
1/5/2009
|
|
Prestwood Software >>
Coding Services
|
All: 2 Staff: 2
|
|
 Download |
MS SQL Express 2008 with Management Studio Basic. MS SQL 2008 database management tool only available bundled.
1/5/2009
|
|
DBA, Databases, & Data >>
MS SQL 2008
|
All: 4 Non-Mem: 3 Staff: 1
|
|
 Download |
Microsoft's free download tool for managing MS SQL 2005 databases.
1/5/2009
|
|
DBA, Databases, & Data >>
MS SQL 2005
|
All: 5 Non-Mem: 3 Staff: 2
|
|
 Code |
Same as standard C++. Literals are quoted as in "Prestwood". If you need to embed a quote use a slash in front of the quote as in \".
1/4/2009
|
|
C++ >>
C++/CLI Beginners Corner
|
All: 8 Members: 1 Non-Mem: 7
|
|
 Code |
Same as standard C++. Literals are quoted as in "Prestwood". If you need to embed a quote use a slash in front of the quote as in \".
1/4/2009
|
|
C++ >>
C++
|
All: 2 Non-Mem: 2
|
|
 Code |
Same as standard C++. C++ uses a semicolon ";" as an end of statement specifier and you can put multiple statements on a single line of code if you wish as well as split a single statement into two or more code lines.
1/4/2009
|
|
C++ >>
C++/CLI Beginners Corner
|
All: 3 Non-Mem: 3
|
|
 Code |
Commenting Code Same as standard C++. C++ uses "//" for a single line comment and /* */ for a multiple line comment.
1/4/2009
|
|
C++ >>
C++/CLI Beginners Corner
|
All: 2 Non-Mem: 2
|
|
 Code |
Commenting Code Same as standard C++. C++ uses "//" for a single line comment and /* */ for a multiple line comment.
1/4/2009
|
|
C++ >>
C++
|
All: 2 Non-Mem: 2
|
|
 News |
We updated our New Posts page for all posts and for each group. From the pull-down menu, select Programmer Community | New @ PPC or the What's New option available within each group. The new New Posts page now mixes all types of posts together so you can easily see what's the newest message board post, KB article, comment, blog entry, etc.
- New @ PPC (also available from the pull down menu, Programmer Community | New @ PPC)
1/4/2009
|
|
Prestwood Software >>
Online Community
|
All: 7 Non-Mem: 7
|
| |
|
KB Article |
By |
Group >>
KB Topic
|
Counters |
|
 Article |
DBISAM is a fantastic database for Delphi (or C++ Builder) projects. Don't let the name fool you: This database has great SQL support.
Among its many features are the flexibility offered by its database maintenance routines.
12/11/2007, Updated: 1/5/2009
(2 Comments
, last by Wes )
|
|
Delphi for Win32 >>
Coding Tasks
|
All: 1062 Members: 2 Non-Mem: 1053 Staff: 7
|
|
 Definition |
 KB Post |
|
A class variable defined with a specific class visibility, usually private visibility. A member property is different than a member field. A member property uses a member field to store values through accessor methods (getters and setters). For example, it is common to use a private member field to store the current value of a property. The current values of all the class member fields is the current state of the object.
12/25/2008, Updated: 1/5/2009
|
|
Coding & OO >>
Object Orientation (OO)
|
All: 59 Non-Mem: 59
|
|
 Definition |
 Article |
|
A static member is a member you can have access to without instantiating the class into an object. For example, you can read and write static properties and call static methods without ever creating the class. Static members are also called class members (class methods, class properties, etc.) since they belong to the class and not to a specific object. A static class is a class that contains only static members. In the UML, these classes are described as utility classes.
10/31/2008, Updated: 1/5/2009
|
|
Coding & OO >>
Object Orientation (OO)
|
All: 384 Non-Mem: 384
|
|
 Definition |
 KB Post |
|
An element of coding where you define a common set of properties and methods for use with the design of two or more classes. Unlike classes, you cannot provide any implementation and interfaces are not based on inheritance. In a real sense, interfaces are a technique for designing horizontally in a class hierarchy (as opposed to inheritance where you design vertically). Using interfaces in your class design allows your system to evolve without breaking existing code.
10/19/2008, Updated: 1/5/2009
|
|
Coding & OO >>
Object Orientation (OO)
|
All: 336 Members: 1 Non-Mem: 335
|
|
 Definition |
 KB Post |
|
Aggregations indicate a whole-part relationship, and are known as "has-a" or "is part of" relationships. An Aggregation relationship is indicated by a line with a hollow diamond.
6/30/2008, Updated: 1/5/2009
|
|
Coding & OO >>
Object Orientation (OO)
|
All: 676 Members: 1 Non-Mem: 675
|
|
 Definition |
 KB Post |
|
1/23/2008, Updated: 1/5/2009
|
|
Coding & OO >>
Object Orientation (OO)
|
All: 860 Members: 1 Non-Mem: 859
|
|
 Definition |
 Article |
|
A coding technique where the same named function, operator, or object behaves differently depending on outside input or influences. Usually implemented as parameter overloading where the same named function is overloaded with other versions that are called either with a different type or number of parameters. Polymorphism is a general coding technique and other specific implementations are common such as inheritance, operator overloading, and interfaces.
3/10/2003, Updated: 1/5/2009
|
|
Coding & OO >>
Object Orientation (OO)
|
All: 1042 Members: 1 Non-Mem: 1039
|
|
 Code |
12/24/2008, Updated: 1/5/2009
|
|
Delphi Prism >>
Delphi Prism (Delphi.Net)
|
All: 59 Non-Mem: 59
|
|
 Code |
 KB Post |
|
Perl is a loosely typed language with only three types of variables: scalars, arrays, and hashes. Use $ for a scalar variable, @ for an array, or % for a hash (an associative array). The scalar variable type is used for anytype of simple data such as strings, integers, and numbers. In Perl, you identify and use a variable with a $ even within strings
11/13/2008, Updated: 1/5/2009
|
|
Perl >>
Beginners Corner
|
All: 139 Non-Mem: 139
|
|
 Code |
PHP is a loosely typed language. No variable types in PHP. Declaring and using variables are a bit different than in other languages. In PHP, you identify and use a variable with a $ even within strings!
You assign by reference with & as in &$MyVar.
11/13/2008, Updated: 1/5/2009
|
|
PHP & Delphi for PHP >>
Beginners Corner
|
All: 105 Non-Mem: 105
|