Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
623 views

passing data in an ntier application

How do you pass data to layers in an n-tier application? I have mapped out 3 different methods. A) generic .net objects generic data tables, Hashtables, generic datasets, strings, ints etc... then ...
7
votes
3answers
2k views

Using layered windows to create smooth window borders

We are developing a skinned app with various rounded edges on most of its windows. I am using window regions to define non-rectangular shapes, but nearly everyone objects to the jagged aliasing this ...
3
votes
7answers
446 views

Where should I handle the exceptions, in the BLL, DAL or PL?

Which is the best place to handle the exceptions ? BLL, DAL or PL ? Should I allow the methods in the DAL and BLL to throw the exceptions up the chain and let the PL handle them? or should I handle ...
3
votes
3answers
1k views

N-Tiered vs N-Layered architecture/design

What does it mean by N-Tiered and N-Layered architecture/design? Is there any difference between N-Tiered and N-Layered architecture/design? If yes, what is the difference?
2
votes
3answers
90 views

How to create the following user interface?

A customer has asked for a user interface which combines a number of different elements. It's basically a list. Selecting an entry in the list causes a dialog to expand in-place: Item 1 Item 2 ...
2
votes
2answers
326 views

Magento Layered Navigation - Sort By Count

I would like to sort each of my layered navigation filters by # of items in each filter. Here's what shows now- Books - 1 CD's - 2 DVD's - 20 What I want to show- DVD's - 20 CD's - 2 Books - 1 ...
2
votes
7answers
366 views

3-Layer Architecture Pattern

Is it OK to implement BLL and DAL using partial class this way: namespace BLL { partial class Employee { public string EmpID { get; set; } public string EmpName { get; set; } ...
2
votes
3answers
142 views

programming language with granular method and property access

imagine something like this: import class B.*; interface A supports A.testSum { int sum( int a , int b ) access from B.calculator; testSum() { Assert(sum(1,1)==2); } ........ class B ... ...
2
votes
1answer
254 views

With an ActiveX control in an browser window container, how do I detect when user changes tab away from activex control

I have an ActiveX control that gets placed in an IE browser container. The control creates another dialog window that has WS_POPUP and WS_LAYERED properties enabled in order to be able to use ...
1
vote
0answers
94 views

Magento: Layered Navigation by Price - shows results but does not filter

In the layered navigation on category/search result pages all filterable attributes and categories show and click through fine except the pricing filter. It will show results but clicking the link ...
1
vote
1answer
50 views

Can we write all the control events in a seperate class file in different layer rather than in code-behind of web-page?

Can we write all the control events in a seperate class file in different layer rather than in code-behind of web-page ? Kindly help. Thanks in advance.
1
vote
2answers
144 views

Strategy for creating a layered window with child windows (controls)

I want to create an irregularily shaped/skinned window (just with rounded, alpha blended corners for now). Upon creating the top-level window i am processing the WM_CREATE message and do the ...
1
vote
2answers
56 views

Is it a good practice to implement Transactions in the Business Layer

We are looking at implementing transactions in our ASP.NET web application. Its a three layered architecture. We are calling Web Services from the Business Layer and are planning to implement ...
1
vote
1answer
445 views

Magento - Output Layered Attribute Link in Product page

I've created attributes that I use successfully in the layered navigation of Magento. Those attributes get output in the additional data section of the product page, however, attributes used in ...
1
vote
1answer
970 views

Magento layered navigation on custom product collection

I have been working on a custom module for Magento (ver. 1.8.0.0) that shows a list of related products of a certain product. In order to achieve this I have created my own module by overwriting the ...
1
vote
0answers
99 views

Need help with scraping layered windows

I'm trying to scrape (take a screen shot) a layered window and it doesn't seem work correctly. Some layered windows are working fine and some are not. Below is how I'm doing this: IntPtr display_dc = ...
1
vote
1answer
2k views

C++ GDI+ drawing text on a transparent layered window

(unmanaged C++) I already succeeded drawing PNG files to a transparent layered window that I can drag around the desktop, but now my problem is drawing text on a transparent layered window Here's my ...
1
vote
2answers
1k views

In Magento Layered Navigation, how do I get all items for active filters?

Once a filter becomes active it returns 0 items thus it won't show anymore in the "SHOPPING OPTIONS". For my custom layered nav I need to fetch and show these items. I know some extension are already ...
1
vote
1answer
141 views

Is it double work creating a data access component and business component?

I am designing my first Layered Application which consists of a Data, Business, and a Presentation layer. My business components (e.g, Business.Components.UserComponent) currently has the following ...
1
vote
2answers
2k views

Magento Layered Navigation Categories

I would like the user to be sent to the category landing page when the user clicks the category in layered navigation. So instead of the user getting /category.html?cat=11, they would get ...
1
vote
2answers
679 views

How do I get a transparent windows dialog and drawing primitives to remain on top of a window that is drawing streaming video?

I have an activeX control that contains one window that has streaming video being drawn to it. I have a separate dialog that I create in another window that I have made transparent or ...
1
vote
5answers
769 views

What's the best way to structure a project?

I was wondering about how I should structured my projects. We have some projects that are (re)use in other projects. I mean, our data project and model project are use in one-to-many other projects. ...
0
votes
1answer
38 views

Zooming on layered images that have been scaled on android

There are a number of issues i'm having, all being related. Some I have resolved, but the solution i have found might be stopping me from the final product. I'll mention all issues and solutions here ...
0
votes
1answer
38 views

WCF-based federated security in a service-oriented setup

So i have the following scenario: I have a WPF-application which includes a login-box. Users enter credentials, which is used to get a security token from a SecurityTokenService (STS). This token is ...
0
votes
0answers
13 views

Layer One UL List Directly Over Another UL List - Both Same Size

How do I layer one list directly over another? The titles list uses a series background images in a tags to form a vertical navigation menu. The icons list will also use background images - there is ...
0
votes
2answers
41 views

Should multiple databases share the same DAL?

We have applications that must reach into multiple databases. Previously, we had separate DALs that would reach into only a single database. A separate business layer would sit on top would reach only ...
0
votes
0answers
109 views

Magento: Thousands of Layered Navigation Attributes [closed]

Does anyone know how I can add thousands of attributes to Magento for the sake of layered navigation? We have hundreds of different product types, from cleaning fluids, fans, towels. safety wear etc. ...
0
votes
1answer
456 views

Magento - Hide Static CMS block on Category Page when using layered navigation

I have a magento site. We are using layered navigation and I would like to add Static content to the category landing page along with results. I have added the cms block and it looks great on the ...
0
votes
2answers
101 views

Assembly reference error with C# EF4 and a layered design

I'm finally getting around to checking out the latest EF release and I'm running into some troubles with my testing. So, my DAL layer holds my .EDMX file and I'm using the MS POCO template so I also ...
0
votes
1answer
86 views

Layered Architecture and Static Methods

I need suggestion for three layered architecture I am planning to implement. Scenario Am Working in ASP.NET c# 3.5 Environment. DLHelper: Methods to get data from database. DAL : Contains Methods ...
0
votes
3answers
180 views

Modules on the same layer in layered architecture

In theory in layered architecture you can have multiple modules on the same layer. Can this modules cross reference to each other? Is is possible technically, eg. using .NET?
-1
votes
1answer
175 views

LAMP - Tool to create Layered PDF in PHP

Hi Do anyone know Good and CHEAPER tool we can use to create layered PDF in LAMP? i came to know about PDFLib+PDI8 but thats €1590... but i am looking for cheaper option.. but must be same level to ...
-1
votes
2answers
214 views

Unable to Get data from DA layer. What to do?

While dividing my C# application in layers, I have solved the problem of circular dependency among layers in the following way: using System; using System.Collections.Generic; using System.Text; ...