| Code decides what objects to use (5 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Moved from [aspngvs] to [ngfx patterns] by Charles M. Carroll charlesmarkcarroll@yahoo.com I am developing an application in C#. A feature I want to insert is to have the code choose what objects to use. The following scenario should make the question more clearer: Lets say I was developing a kiosk application for software retailers that would allow instore shoppers to browse and find products fas... |
|
| SV: design patterns useful or not? (2 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| I use design patterns all the time. I use it for ideas for how to solve my problems. I use them as referral points during design discussions. I use them to simplify my documentation. And I use them to easily understand other programs. 20 I am not deciding up front to use a pattern. I look at requirements, then most often I invent a solution architecture. When I review the solution I ask myself why... |
|
| design books with vb/vb.net examples -off topic- (2 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Moved from [aspngarchitecture] to [ngfx patterns] by Charles M. Carroll charlesmarkcarroll@yahoo.com Hey, I am considering buying design patterns explained, however I was hoping there was a book similar but with examples in dotnet or vb? Does it matter for the understanding of the book? david Everything in this e mail and any attachments relating to the official business of Isonet ZA is proprietar... |
|
| Trying to understand singleton (5 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Hello, Can anyone explain and/or give a simple example why the following code will work to create only one instance of an object? // .NET Singleton sealed class Singleton { private Singleton() {} public static readonly Singleton Instance new Singleton(); } Terry Voss Developer/Owner Computer Consulting Microsoft Certified Partner http://www.computer consulting.com http://www.computer consulting.co... |
|
| DataSet-Class VS DataReader-Class (2 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Can someone tell me in an overloaded environment, should DataReader class be used instead of DataSet class to access the database server? |
|
| Custom Server Web Controls(4) hierarchy (2 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Moved from [aspngwebcontrols] to [ngfx patterns] by Charles M. Carroll charlesmarkcarroll@yahoo.com This is a multi part message in MIME format. InterScan NT MIME Boundary Content Type: multipart/alternative; boundary " NextPart 000 0042 01C1BF86.ED0B05D0" NextPart 000 0042 01C1BF86.ED0B05D0 Content Type: text/plain; charset "iso 8859 1" Content Transfer Encoding: quoted printable RE: [aspngwebcon... |
|
| Problem with Singleton object instance (13 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Copied from [aspngcs] to [ngfx patterns] by Charles D. Carroll darthcarroll@asplists.com Greetings all, I am working on a report generator project, and am trying to make an object using the Singleton design pattern. (Which I have never done before.) It's purpose is to return DataSets as a report is being recursively built. i.e. looping through a DataSet loop through another DataSet, which was retr... |
|
| Patterns/architecture resources (4 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Attention everyone! I am updating the signup/info page for this list at http://aspfriends.com/aspfriends/ngfx patterns.asp and I'd like your input. Please feel free to send me the names and/or links of any of the following on this list's topic: Books Web articles Other developer lists These will be reviewed and, if approved, placed under the appropriate tab on the list signup page. Thanks in advan... |
|
| Universal Data Access Components? (12 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Moved from [aspngdata] to [ngfx patterns] by Charles M. Carroll darthcarroll@asplists.com Most examples I see don't use a seperate Data Access Layer, and even on sites like IBuySpy (as far as I saw) there's no real Universal Data Access Component where you just pass the object a connection string, type to return (dataset or datareader), type of provider to use, etc... and all the work is done in t... |
|
| Bit of an inheritance quandary (4 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Copied from [aspngarchitecture] to [ngfx patterns] by Charles M. Carroll darthcarroll@asplists.com Have the following base classes: RandomWeighted Methods: Overrided Render Variables: intLimit Properties: Limit WeightedItem Variables intWeight Properties Weight I want to inherit from both for one class. What's the standard practice now that multiple inheritances aren't allowed? I can't think of an... |
|
| Manager Collection Class (MCC) Pattern (3 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| This is a multi part message in MIME format. NextPart 001 01C17DC9.139216F8 Content Type: multipart/alternative; boundary " NextPart 002 01C17DC9.139216F8" NextPart 002 01C17DC9.139216F8 Content Type: text/plain; charset "us ascii" Content Transfer Encoding: quoted printable All, 20 I have captured a pattern that many of you have probably come across or used before. It is similar to the ECC patter... |
|
| designing dataacess layer implemeting 2 type of databases (2 replies) |
| ASPFriends.com 'ngfx-patterns' list |
| Copied from [aspngarchitecture] to [ngfx patterns] by Charles M. Carroll darthcarroll@asplists.com Hi all, Currently I am "architecting" a project using .NET Beta 2. I am desining the architecture for a large employee benefit system. The archicture consists of a workflow(process), business, data acceess layer. It is a MUST for the aplication to support both Microsoft SQL Server and Oracle database... |
|