IT SOLUTIONS
Your TECHNOLOGY partner! 
-Collapse +Expand
Coder
Search Coder Group:

Advanced
-Collapse +Expand Coder Group Home
-Collapse +Expand Message Board
-Collapse +Expand Coder KB
-Collapse +Expand Coder Study Test
PRESTWOODCERTIFIED
-Collapse +Expand Coder Store
PRESTWOODSTORE
-Collapse +Expand Members Only

Prestwood eMagazine

May Edition
Subscribe now! It's Free!
Enter your email:

   ► KB ►► Role-Based T...Coding & OO   All Groups   Print This   

Coding & OO Most Read KB Posts

Page Contents


Most Read KB Articles Since 3/28/2008

Coding & OO Group

  KB Article    

Mike Prestwood
1. OO/UML: Aggregation versus Composition

Our most popular article in the history of our online community! Explains the "is a", "has a", "uses a", and "looks like" relationships (updated May 2007). "Is a" is inheritance, "looks like" is interfaces, "has a" is aggregation, and "uses a" is composition.

Posted to KB Topic: Object Orientation (OO)
11 years ago, and updated 36 months ago
(8 Comments , last by Anonymous )

Article
Nothing New Since Your Last Visit
76406
Hits

Mike Prestwood
2. Borland Database Engine 5.202

Download BDE 5.202 (includes a small BDE Information utility for testing the installation).

Posted to KB Topic: Borland Database Engine
6 years ago, and updated 32 months ago
(11 Comments , last by Rahim.S )

Download

Article
Nothing New Since Your Last Visit
48668
Hits

Wes Peterson
3. Uninstalling the BDE

It's rare, but sometimes it may be necessary to remove the BDE from a machine. Not for the faint of heart, and with serious possible consequences, we explain how to manually uninstall the BDE. This is intended for developers or power users.

Posted to KB Topic: Borland Database Engine
55 months ago, and updated 51 months ago

Article
Nothing New Since Your Last Visit
12595
Hits

Mike Prestwood
4. An Introduction to Object Orientation Overview and introduction to object orientation. When you analyze, design, and code in an OO way, you "think" about objects and their interaction. This type of thinking is more like real life where you naturally think about how "this object" relates to "that object". Classes represent the "design" of an existing object. The values or properties of an existing object is it's current state. When designing classes, OO supports many features like inheritance (like real-life where you inherit your parents characteristics), encapsulation (hiding data), and polymorphism (the ability of one thing to act like another or in different ways).
Posted to KB Topic: Object Orientation (OO)
10 years ago, and updated 52 months ago
(5 Comments , last by mprestwood )

Article
Nothing New Since Your Last Visit
8237
Hits

Mike Prestwood
5. ISelectionContainer already exists error

Microsoft Visual Studio The service Microsoft.VisualStudio.Shell.Interop.ISelectionContainer already exists in the service container. Parameter name: serviceType

59 months ago, and updated 51 months ago
(1 Comments , last by Anonymous )

Error
Nothing New Since Your Last Visit
7684
Hits

Wes Peterson
6. BDE Broken? Recent Microsoft Betas may be the culprit

We encountered a situation in which programs that use Borland's BDE suddenly stopped working on some of our machines. The really helpful error message was "Operation not applicable!" (The error code is 10756)

Posted to KB Topic: Borland Database Engine
7 years ago, and updated 41 months ago

KB Post
Nothing New Since Your Last Visit
7437
Hits

Mike Prestwood
7. BDE on Terminal Server

BDE Error:

Database Engine Error
Cannot find Engine configuration file.
BDE Error: 8452 [$21][$ 4]

Posted to KB Topic: Borland Database Engine
44 months ago

Error
Nothing New Since Your Last Visit
7011
Hits

Wes Peterson
8. Installing BDE using Merge Modules The new and "approved" way to install the BDE is by way of mege modules. This is quite a bit different than the traditional ways of using a pre-made program, or incorporating BDE Cab files (from, say, your Delphi installation). Caveat: This is new news for me, and I don't claim to know or understand everything there is to know on this topic but I do have some helpful findings for you.
Posted to KB Topic: Borland Database Engine
55 months ago, and updated 46 months ago
(2 Comments , last by Wes )

Article
Nothing New Since Your Last Visit
6983
Hits

Mike Prestwood
9. Abstract Class / Abstract Member

An abstract class member is a member that is specified in a class but not implemented. Classes that inherit from the class will have to implement the abstract member. Abstract members are a technique for ensuring a common interface with descendant classes. An abstract class is a class you cannot instantiate. A pure abstract class is a class with only abstract members.

Posted to KB Topic: Object Orientation (OO)
5 years ago, and updated 50 months ago

Definition
Nothing New Since Your Last Visit
6540
Hits

Mike Prestwood
10. How to check what BDE version is installed.

Q. I've updated my BDE from version 5.01 to version 5.2.0.2 but the About BDE Administrator dialog still shows version 5.01?

A. Your update may have taken. Updates typically just replace the DLLs the BDE uses so you may have the latest installed.

Version Information
To see what version of the BDE engine you "actually" have installed, you need to look at the Version Information from within the BDE Administrator. Select Object | Version Information... to see the DLL version numbers

Posted to KB Topic: Borland Database Engine
59 months ago, and updated 53 months ago
(1 Comments , last by Anonymous )

KB Post
Nothing New Since Your Last Visit
6454
Hits



Most Read by Members

Coding & OO Group

  KB Article    

Mike Prestwood
1. Borland Database Engine 5.202

Download BDE 5.202 (includes a small BDE Information utility for testing the installation).

Posted to KB Topic: Borland Database Engine
6 years ago, and updated 32 months ago
(11 Comments , last by Rahim.S )

Download

Article
Nothing New Since Your Last Visit
48668
Hits

Mike Prestwood
2. OO/UML: Aggregation versus Composition

Our most popular article in the history of our online community! Explains the "is a", "has a", "uses a", and "looks like" relationships (updated May 2007). "Is a" is inheritance, "looks like" is interfaces, "has a" is aggregation, and "uses a" is composition.

Posted to KB Topic: Object Orientation (OO)
11 years ago, and updated 36 months ago
(8 Comments , last by Anonymous )

Article
Nothing New Since Your Last Visit
76406
Hits

Wes Peterson
3. Uninstalling the BDE

It's rare, but sometimes it may be necessary to remove the BDE from a machine. Not for the faint of heart, and with serious possible consequences, we explain how to manually uninstall the BDE. This is intended for developers or power users.

Posted to KB Topic: Borland Database Engine
55 months ago, and updated 51 months ago

Article
Nothing New Since Your Last Visit
12595
Hits

Adam Lum
4. Storing your .NET Application Settings Storing settings and configuration information for your .NET application can be achieved in a number of ways including using the app.config file and the ConfigurationManager class, using the registry, and in your own custom configuration file.
Posted to KB Topic: General .Net Concepts
5 years ago, and updated 57 months ago
(3 Comments , last by kroy )

KB Post
Nothing New Since Your Last Visit
4994
Hits

Wes Peterson
5. Installing BDE using Merge Modules The new and "approved" way to install the BDE is by way of mege modules. This is quite a bit different than the traditional ways of using a pre-made program, or incorporating BDE Cab files (from, say, your Delphi installation). Caveat: This is new news for me, and I don't claim to know or understand everything there is to know on this topic but I do have some helpful findings for you.
Posted to KB Topic: Borland Database Engine
55 months ago, and updated 46 months ago
(2 Comments , last by Wes )

Article
Nothing New Since Your Last Visit
6983
Hits

Wes Peterson
6. BDE Broken? Recent Microsoft Betas may be the culprit

We encountered a situation in which programs that use Borland's BDE suddenly stopped working on some of our machines. The really helpful error message was "Operation not applicable!" (The error code is 10756)

Posted to KB Topic: Borland Database Engine
7 years ago, and updated 41 months ago

KB Post
Nothing New Since Your Last Visit
7437
Hits

Mike Prestwood
7. An Introduction to Object Orientation Overview and introduction to object orientation. When you analyze, design, and code in an OO way, you "think" about objects and their interaction. This type of thinking is more like real life where you naturally think about how "this object" relates to "that object". Classes represent the "design" of an existing object. The values or properties of an existing object is it's current state. When designing classes, OO supports many features like inheritance (like real-life where you inherit your parents characteristics), encapsulation (hiding data), and polymorphism (the ability of one thing to act like another or in different ways).
Posted to KB Topic: Object Orientation (OO)
10 years ago, and updated 52 months ago
(5 Comments , last by mprestwood )

Article
Nothing New Since Your Last Visit
8237
Hits

Mike Prestwood
8. Composition A composite relationship means that a class cannot exist by itself. It must exist as a member of another class. A composite relationship is indicated by a solid line with a solid diamond head pointing to the part class. Alternatively, you can show this relationship graphically with the part class nested in the whole class.
Posted to KB Topic: Object Orientation (OO)
59 months ago, and updated 54 months ago

Definition
Nothing New Since Your Last Visit
4393
Hits

Mike Prestwood
9. Aggregation

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.

Posted to KB Topic: Object Orientation (OO)
59 months ago, and updated 52 months ago

Definition

KB Post
Nothing New Since Your Last Visit
4313
Hits

Mike Prestwood
10. How to check what BDE version is installed.

Q. I've updated my BDE from version 5.01 to version 5.2.0.2 but the About BDE Administrator dialog still shows version 5.01?

A. Your update may have taken. Updates typically just replace the DLLs the BDE uses so you may have the latest installed.

Version Information
To see what version of the BDE engine you "actually" have installed, you need to look at the Version Information from within the BDE Administrator. Select Object | Version Information... to see the DLL version numbers

Posted to KB Topic: Borland Database Engine
59 months ago, and updated 53 months ago
(1 Comments , last by Anonymous )

KB Post
Nothing New Since Your Last Visit
6454
Hits
Icon Legend:
Recent or not:
- Recent activity (within last two weeks).
- No activity last two weeks.
 Since your last logged visit:
- New to you or updated since your last visit (sign in now to activate).
- NOT new to you since your last visit (sign in now to activate).
-
  Load Time=less than 1 second.
 
Print This
-
 
Have a question? Need our services? Contact us now.
--Mike Prestwood

Call: 916-726-5675

email: info@prestwood.com


115 People Online Now!!  
Online Now: Sign In to see who's online now!  Not a member? Join now. It's free!
Show More...


©1995-2013 PrestwoodBoards  [Security & Privacy]
Professional IT Services: Coding | Websites | Computer Tech