Prestwood eMagazine
Subscribe to our popular FREE monthly eMagazine.

Enter your email:

Subscription Center
Prestwood Tip Jar
Finding something useful?

Add to the
Tip Jar!

New KB Articles

Page Contents


Recently Created


Tip

When designing websites, all developers are required to manage not only the content of the site, but the indexing of the site as well.  Robots.txt is a powerful tool you can use to make sure your projects are listed in search engines as effectively as possible.

1/6/2009

Article

Employee Handbook Writer, a custom application created by Prestwood for The California Chamber of Commerce, delivers a wealth of crucial legal documents to its end users.

Because of ever-changing legislation and regulations, CA Chamber needs to be able to update EHW's content at least once a year.

EHW Content Manager is a utility Prestwood created to cut this task down to size.

1/6/2009

Code

Prism supports both partial classes and partial methods using the keyword partial. A partial method is an empty method defined in a partial class.

1/6/2009

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

Definition

Article
1/5/2009

Download

MS SQL Express 2008 with Management Studio Basic. MS SQL 2008 database management tool only available bundled.

1/5/2009

Download

Microsoft's free download tool for managing MS SQL 2005 databases.

1/5/2009

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

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

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

Code

Commenting Code
Same as standard C++. C++ uses "//" for a single line comment and /* */ for a multiple line comment.

1/4/2009

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

Code
1/3/2009

Code

Same as standard C++. For C++, Java, JavaScript, and PHP, I prefer to put the first { at the end of the first line of the code block as in the example above because I see more C++ formatted that way.

1/3/2009

Code

The + operator can be used with any combination of C++ strings, C strings and characters.

1/3/2009

Code
1/3/2009

Code

In C++/CLI, the Object keyword is an alias for the base System::Object class and is the single base class all classes ultimately inherit from.

1/3/2009

Code

C++ implements class and member visibility specifiers traditionally. Note the colon at the end of each visibility specifier and the semi-colon at the end of the class (the end of the statement).

1/3/2009

Code

C++ supports static methods and static member fields using the static keyword.

1/3/2009

Code

Same as standard C++. For C++, Java, JavaScript, and PHP, I prefer to put the first { at the end of the first line of the code block as in the example above because I see more C++ formatted that way.

1/3/2009

Code

In C++/CLI, the Object keyword is an alias for the base System::Object class and is the single base class all classes ultimately inherit from.

1/3/2009

Code

Same as standard C++. Both standard C++ and C++/CLI are case sensitive. In C and C++ commands and variable names are case sensitive.

1/3/2009

Code
1/3/2009

Code

Language Overview: A.k.a. C++.Net. Microsoft's C++ language for .Net Framework development.

Language History: C++/CLI was introducted with VS.Net 2005 and replaced Managed C++ (introduced with VS.Net 2002). C++/CLI was standardized by ECMA-372.

Target Platforms: C++/CLI is suitable for creating .Net Framework applications.

1/2/2009

Code

The only development tool I know that supports C++/CLI at this time is Visual Studio.Net. C++/CLI was introduced in VS.Net 2005 and continued in VS.Net 2008.

1/2/2009

Recently Updated


Tip

When designing websites, all developers are required to manage not only the content of the site, but the indexing of the site as well.  Robots.txt is a powerful tool you can use to make sure your projects are listed in search engines as effectively as possible.

1/6/2009

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

Article

Employee Handbook Writer, a custom application created by Prestwood for The California Chamber of Commerce, delivers a wealth of crucial legal documents to its end users.

Because of ever-changing legislation and regulations, CA Chamber needs to be able to update EHW's content at least once a year.

EHW Content Manager is a utility Prestwood created to cut this task down to size.

1/6/2009

Definition

Article
1/5/2009

Code

Prism supports both partial classes and partial methods using the keyword partial. A partial method is an empty method defined in a partial class.

1/6/2009

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/6/2009   (3 Comments , last by franco_p )

Download

MS SQL Express 2008 with Management Studio Basic. MS SQL 2008 database management tool only available bundled.

1/5/2009

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

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

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

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

Definition

KB Post
1/23/2008, Updated: 1/5/2009

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

Download

Microsoft's free download tool for managing MS SQL 2005 databases.

1/5/2009

Code
12/24/2008, Updated: 1/5/2009

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

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

Code

Variable names are case sensitive.

The Java basic types are boolean, byte, short, int, long, float, double, and char. You can also declare a variable to hold a particular instance of a class such as String.

11/10/2008, Updated: 1/5/2009

Code

Variable names are case sensitive. The fundamental variable types in C++ are char, short int, int, long int, bool, float, double, long double, and wchar_t. The integer data types char, short, long and int can be either signed or unsigned. Signed variables are positive and negative. Unsigned variables are positive only.

11/10/2008, Updated: 1/5/2009

Code

Access VBA is a loosely typed language. Declaring variables is optional unless you use the Option Explicit statement to force explicit declaration of all variables with Dim, Private, Public, or ReDim. Using Option Explicit is strongly recommended to avoid incorrectly typing an existing variable and to avoid any confusion about variable scope. Variables declared with Dim at the module level are available to all procedures within the module. At the procedure level, variables are available only within the procedure.

11/7/2008, Updated: 1/5/2009

Code

Variables are case sensitive but VS.Net will auto-fix your variable names to the defined case. You can declare variables in-line wherever you need them and declarative variable assignment is supported.

11/7/2008, Updated: 1/5/2009

Code
11/7/2008, Updated: 1/5/2009

Code
11/7/2008, Updated: 1/5/2009   (1 Comments , last by marianchovan )

Code

KB Post
11/7/2008, Updated: 1/5/2009

Code

JavaScript is a loosely typed language. Each variable is cast in usage as string, number, boolean, function, or object.

Variable names are case sensitive.

Alternatively, you can specify the value when you declare a variable:

var FirstName = "Mike";
var LastName = "Prestwood";
var Age = 42;
11/7/2008, Updated: 1/5/2009
Mike Prestwood
If you have any questions, please
email me at .
--Mike Prestwood

www.outsourceyourproject.com is part of the Prestwood Family of Websites.
Development by Mike Prestwood (ASP, ASP.Net, and Delphi to MS-SQL 2005).
Knowledgebase powered by ASPSuite KB module (programming by Mike Prestwood).
Copyright 1995-2009 Prestwood Software.
All rights reserved.

[Security & Privacy]
 

Attention Developers!
Join the Prestwood Programmer Community (PPC)

OO, UML, DotNet, ASP.Net, C++, Java, PHP, ASP, JavaScript, Delphi, Access / Paradox
blogs
message boards
knowledge base
articles
jobs database
resume database
get published!
Visit Community | Sign Up Now!
It's free and takes less than 30 seconds.