active questions tagged design - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T13:43:17Zhttp://stackoverflow.com/feeds/tag/designhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852227/tricky-data-conversion-excercise0Tricky data conversion excerciseartemave2009-12-05T13:41:44Z2009-12-05T13:41:44Z
<p>I have weather history data which I need to plot on a web page using (highly recommended) jquery flot. The app behind is in RoR.</p>
<p>One of the data series describes overall weather state for a date such as 'heavy showers', 'light snow', etc.</p>
<p>Now flot expects decimals in data input. Flot also allows to reformat data when it comes down to showing data points/axis ticks to user.</p>
<p>Here is how data travels:</p>
<pre><code>strings (coming out of ruby) -> decimals (flot in) -> strings (flot out)
</code></pre>
<p>Obvious solution would be to 'alias' each label with decimal and then use whatever version is appropriate at a particular step. That was my plan up until I came to realize that certain labels in fact have the same weight (that is, should be plotted on the same line). For instance, 'light rain' and 'light snow' are clearly as good(bad) as each other (one might disagree though, but let us just assume they are). </p>
<p>So, there goes the problem: how to plot those as the same values and yet be able to show original labels?</p>
http://stackoverflow.com/questions/1851652/dreamweaver-for-css-and-html0dreamweaver for css and html?fayer2009-12-05T09:07:26Z2009-12-05T10:06:34Z
<p>im a pure backend programmer and i find it so difficult to position divs and add css styles.</p>
<p>what are your advices to make this as simple as possible for me?</p>
<p>use dreamweaver? what can it help me with exactly.</p>
<p>i have no idea how to add style to my prototype or handling positionings of divs and elements. some guides? tools? softwares? online scripts?</p>
<p>please all suggestions are welcome! guide me through...im all business logic and none design head.</p>
<p>eg. <a href="http://www.workey.se" rel="nofollow">http://www.workey.se</a>. how do you start with layout, design and all that stuff...</p>
http://stackoverflow.com/questions/1851624/css-make-set-minimum-page-height-width0CSS make set minimum page height/widthCal S2009-12-05T08:52:38Z2009-12-05T09:14:56Z
<p>Hey,
In the page layout I am creating, for some reason, the scrollbars never seem to show and rather the content tries to rearrange itself. Is there a way to lock in a set width and height for the whole page so that if the window is scaled it shows scrollbars?</p>
<p>The page: <a href="http://thetalkingcloud.com/clipit.com/" rel="nofollow">http://thetalkingcloud.com/clipit.com/</a></p>
<p>Specifically, if you make the window small, the "COPY PASTE SHARE" links change their position dramatically.</p>
<p>Thanks if anyone can help out :)</p>
http://stackoverflow.com/questions/1851248/any-c-smartdate-converters-out-there-e-g-sun-11-2009-12-06-1100003Any C# SmartDate converters out there, e.g. "sun 11" --> 2009-12-06 11:00:00Edward Tanguay2009-12-05T05:41:52Z2009-12-05T08:07:51Z
<p><strong>In the spirit of not reinventing the wheel, can anyone point me to free C# code that does the following kinds of conversions?</strong></p>
<ul>
<li>"<strong>sun</strong>" --> 2009-12-06 00:00:00</li>
<li>"<strong>tom</strong>" --> 2009-12-06 00:00:00</li>
<li>"<strong>tomorrow</strong>" --> 2009-12-06 00:00:00</li>
<li>"<strong>mon 8pm</strong>" --> 2009-12-07 20:00:00 </li>
<li>"<strong>jan 5 at 10</strong>" --> 2010-01-05 10:00:00</li>
</ul>
<p>and <strong>durations</strong> that return two datetimes like this:</p>
<ul>
<li>"<strong>jan 5, 8pm to 10</strong>" --> 2010-01-05 20:00:00, 2010-01-05 22:00:00</li>
</ul>
<p>the point is for developers to have a library which allows users to enter in <strong>upcoming dates</strong> in their own terms so that if you want to type in that you want to get a task done on "<strong>Friday</strong>" you just have to type "<strong>fri</strong>" and the <strong>computer knows what you mean</strong>.</p>
http://stackoverflow.com/questions/1818292/can-anybody-suggest-me-a-book-on-embedded-system-design0Can anybody suggest me a book on embedded system design?student_pdas2009-11-30T07:21:24Z2009-12-05T04:18:22Z
<p>Please suggest me a book on embedded system design which covers </p>
<ol>
<li><p>advance design of embedded sofware</p></li>
<li><p>design of hardware to build efficient system</p></li>
</ol>
<p>I know, its difficult to learn all the things from books still do suggest me some books. </p>
http://stackoverflow.com/questions/1843736/wrapping-stl-container-without-code-duplication0Wrapping STL container without code duplicationpmr2009-12-03T23:13:40Z2009-12-05T00:58:43Z
<p>I have a simple struct</p>
<pre><code>struct A {
int t;
int s;
};
</code></pre>
<p>Those were contained in <code>std::list<A></code>. The problem is that I group A depending on s. I can avoid duplication of s if I'd wrap A in another struct and keep s in a separated container. This has a lot of benefits (e.g. I don't need to do stupid and potentially dangerous things like <code>AContainer[0].s</code> to get the value of s for the whole list). The wrapper would look like this: </p>
<pre><code>struct AList {
std::list<A> list;
int s;
}
</code></pre>
<p>The problem is that I'd still like my AList to behave as if it were a <code>std::list<A></code>. This is simple if I replicate the whole interface of <code>std::list</code> but has a few drawbacks: changing the container would involve inspecting all functions that expose the interface, and the huge amount of duplicated code. On the other hand: just using the list makes the code a lot less readable. </p>
<p>Are there any standard solutions or helper classes for such a case? Is inheriting from std::list a good idea? I have never seen it before and most people argue that STL containers don't have virtual dtors. This wouldn't be a problem for me in this situation but is probably relevant to the larger question here.</p>
http://stackoverflow.com/questions/1849458/mvp-design-question0MVP, design questionunknown (google)2009-12-04T20:28:04Z2009-12-04T20:37:15Z
<p>Hi,</p>
<p>I working on a MVP designed application and have some design questions.
When writing code in the presenter-layer how should the comunication go between different presenter/viwes?
Lets say I have a WindowPresenter with its WindowView and I want to set the window title on a window from another window. I have a title/set:er on the window view that wraps the actual gui title. Should I call the title-seter directly on the view (windowPresenter.View.Title = "Title") or should I wrap the view title as a presenter title seter (windowPresenter.Title = "Title") ?</p>
http://stackoverflow.com/questions/1849340/mvc-asp-net-design-templates1MVC / ASP.NET design templatesCody C2009-12-04T20:05:54Z2009-12-04T20:07:24Z
<p>Does anyone know of any good sites to download good design templates (master pages, css files) for MVC projects, or ASP.NET projects in general? I've used the asp.net mvc gallery but the options there are pretty limited. I'm willing to pay for some if they are good.</p>
http://stackoverflow.com/questions/1848499/i-wrote-good-code-now-how-do-i-compile-2I wrote good code, now how do I compile? [closed]erm yea2009-12-04T17:34:27Z2009-12-04T17:51:04Z
<p>I writtened the code and need to compile into .ITB design.</p>
<p>used IT ScriptNet 3.0; Sorry I english no so good.</p>
<p>~~~~~~~~~~~~~~~~Example~~~~~~~~~~~~~~~~~~~~~</p>
<p>Making code at handheld and to scan barcode with text only database</p>
<p><a href="http://i19.photobucket.com/albums/b151/Jrud/thing.jpg" rel="nofollow">picture</a></p>
http://stackoverflow.com/questions/1813912/does-a-reference-work-with-human-behavior-perception-patterns-exist6Does a reference work with human behavior/perception patterns exist?Domus2009-11-28T22:02:59Z2009-12-04T16:32:57Z
<p>In all current and future projects I pledged to concentrate all the ground work around interaction design.</p>
<p>I'm aware of Alan Cooper's work, and it's excellent, but what I'm looking for is a reference work with observed human behavior when confronted with certain visual elements and usage scenarios.</p>
<p>Some kind of "user psychology for developers." Which colors convey which feelings, where is the eye led, and how. How much can a user remember, which approach to take to map the user's mental model onto the interface as closely as possible (or rather the opposite).</p>
<p>I developed a design steps framework in order to work out interaction scenarios and user goals, taking into consideration several factors such as fun, confusion, and fulfilment.</p>
<p>What is lacking is an exhaustive guide to human interaction behavior and perception, so that one doesn't have to rely on one's own (often faulty) intuition.</p>
<p>My goal, basically, is to achieve a rule-testable interaction design framework.</p>
http://stackoverflow.com/questions/750112/overengineering-how-to-avoid-it46Overengineering - How to avoid it.MRFerocius2009-04-15T02:47:09Z2009-12-04T13:05:11Z
<p>Sometimes I find myself designing my classes for a certain project. I start with some entities, some interfaces, but after some time I think:</p>
<p>Hey what about creating a handler for the classes using a Factory Method, Strategy, Using Generics, etc, etc, etc.</p>
<p>At some point when I look to my classes I have a lot of generics, small objects, everything turn so complicated that I feel desmotivated. I turn a simple project into a NOT COMPLETED PSEUDO FRAMEWORK. And I,ve never created a framework before.</p>
<p>How do you battle the impulse to complicate things? How do yo recognise the point where you should stop the utopic design and start doing working things?</p>
<p>Any advise? How you do it?</p>
http://stackoverflow.com/questions/1843648/how-to-implement-a-cache-with-binary-array-as-key-and-binary-arrays-as-values-in1How to implement a cache with binary array as key and binary arrays as values in JavaTequila Guy2009-12-03T22:58:26Z2009-12-04T12:35:52Z
<p>I have a requirement to create a java cache which holds all the cities and airports. So, if i query the cache for a location, lets say a city, it should return all the airports in that city and if I query a location which is an airport, i should get back that airport.
Also, each location has to be stored as a byte array in cache.(as the exposed interface for querying the cache has byte[] as the parameter for location)
Other considerations are:</p>
<ol>
<li>The retrieval has to be very fast, as fast as possible </li>
<li>The cache is loaded only once at system startup.It doesn't change after getting
loaded. </li>
<li>As its loaded only once, we can keep it sorted if that speeds up the retrieval.</li>
</ol>
<p>What I have got so far:</p>
<p><strong>Approach 1</strong></p>
<p>Create a thin wrapper over byte[] array, lets say ByteWrapper. Put each location(both airports and cities) as a key in map(TreeMap?). Use lists of ByteWrapper(containing airports where ever applicable) as values.</p>
<p><strong>Approach 2</strong></p>
<p>Create multi dimensional byte[] array which is sorted on location. Its essentially a map. Then use binary search to locate the key and return results.</p>
<p>What approach would you suggest? Please let me know in case you have better ideas
Thanks</p>
http://stackoverflow.com/questions/709811/can-anyone-recommend-a-good-resource-for-learning-vhdl2Can anyone recommend a good resource for learning VHDL?Bua2009-04-02T13:53:58Z2009-12-04T00:08:59Z
<p>Can anyone recommend a good book for learning VHDL? Or failing that, any good resource?</p>
http://stackoverflow.com/questions/1843732/what-is-the-best-way-to-create-a-custom-derived-grid-control0What is the best way to create a custom derived grid control?nightcoder2009-12-03T23:12:47Z2009-12-03T23:12:47Z
<p>I want to create a custom grid derived from DevExpress grid control. I just want to add several columns and add custom painting. I will then use this control in 2 different forms.<br>
The problem is that if I go straightforward and create a class like this:</p>
<pre><code>public class GenerateInvoiceGrid : DevExpress.XtraGrid.GridControl
</code></pre>
<p>then I will not be able to work with it on design surface, i.e. I will have to add necessary columns manually in code and so on. And after each change I will have to build the project containing the control and place it on a form to see how it looks. It will take much time and and it is very inconvenient :(</p>
<p>One way can be deriving from UserControl and placing grid control on the design surface. This way I will be able to work with it on design surface, not just manually in code. And I can declare the grid as a public member of my custom control. The latter though doesn't look very professional to me.</p>
<p>How do people usually do such a task?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1843520/how-to-add-a-border-to-a-shape-1How to add a border to a shape [closed]Iceman2009-12-03T22:40:10Z2009-12-03T22:47:03Z
<p>OK, this is probably very simple, but how do I add a border to a simple shape in Adobe Photoshop CS2. I'm creating a polygon that is white. I want it to have a black border. </p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1656190/custom-security-in-asp-net-mvc-for-applications-not-mass-market-web-sites1Custom Security in ASP.NET MVC For Applications (Not mass market web sites)JustAProgrammer2009-11-01T02:14:45Z2009-12-03T22:45:00Z
<p>I'm building a SaaS app and have some issues in dealing with authorization and ASP.NET MVC. I have a previous <a href="http://stackoverflow.com/questions/1392074/help-with-2-part-question-on-asp-net-mvc-and-custom-security-design">question</a> and this is kind of taking a cue from comments there. I need to provide somewhat granular security (e.g. lots of permissions) for each user. I realize that any discretionary system can be modeled as a roles system by just creating more roles. But that's a lot more roles than I want to deal with. I don't think roles is going to work for me and would like to work more at the permissions level. </p>
<p>I know the standard response to any question dealing with ASP.NET and authorization is create all your application users as Windows users and implement the ASP.NET Membership Provider. One issue, I'm not going to create Windows users. My question is can the standard ASP.NET MVC AuthorizeAttribute and AuthorizeCore be made to fit with a permissions model?</p>
<p>Also, apparently, the impetus here is really that ASP.NET MVC Caching will break a custom security implementation. Obviously, I don't want my pages to run slowly but I'm not sure I want this caching at all. I'm building a business application; is caching everything really appropriate? It seems that caching would just make concurrency problems much more difficult than they already are. For example, if I am caching all of my customer info pages, including the edit pages, then won't I be defeating any concurrency controls I would have in place (say, timestamp checking)? </p>
http://stackoverflow.com/questions/1842838/how-to-prevent-unboxing-boxing-memory-overhead-when-reading-arbitrary-sql-rows1How to prevent unboxing - boxing memory overhead when reading arbitrary sql rowsSteve2009-12-03T20:51:23Z2009-12-03T22:08:47Z
<p>Guys,</p>
<p>I'm writing a class to represent a row from a SQL query. I want the field data to be accessed via the indexer property of the class. This is straightforward enough if I load the data into an internal List of Object. I've already tried this and am not happy with the boxing for the primitives. Boxing increases the memory requirement by 20%. I would like to store the primitives as primitives in the class. The DataTable class stores primitives by creating arrays for each column in the schema returned from IDataReader. I implemented a class this way but I would prefer the data be stored with the row object rather than in a column that is referenced internally by the row.</p>
<p>Any ideas on accomplishing this?</p>
http://stackoverflow.com/questions/1836415/net-document-management-system-design-performance-questions2.NET document management system design - performance questionsaspNetAficionado2009-12-02T22:46:21Z2009-12-03T16:48:46Z
<p>I need to develop a basic .NET document management system with the following specifications:</p>
<ol>
<li><p>The data should be portable and self contained, so I will serialize the documents (typical formats include Word, PDF, Excel and Powerpoint) into binary data. I will then store said binary data in a SQL Server 2005 database. When a user needs to download a document, the system will deserialize the binary data and will present it in is original format.</p></li>
<li><p>The average row size cannot be bigger than 200k.</p></li>
<li><p>We expect a maximum of 500 documents will be uploaded monthly for a period of three years.</p></li>
<li><p>We don't expect the size of the database to ever go over 6 GB</p></li>
<li><p>We have maximum target of 20,000 people that potentially would access the system at the same time.</p></li>
</ol>
<p>My question is: How robust does the technology need to be in order to offer solid performance, prevent site downtime, etc? </p>
<p>I am a novice developer and am not familiar with this kind of architecture and design.</p>
http://stackoverflow.com/questions/1838458/intel-has-just-unveiled-a-new-48-core-cpu-what-will-this-move-to-many-cores-impl1Intel has just unveiled a new 48 core CPU. What will this move to many cores imply for us programmers?static_rtti2009-12-03T08:24:28Z2009-12-03T15:35:19Z
<p>Intel has just unveiled a new <a href="http://www.pcper.com/article.php?aid=825" rel="nofollow">48 core CPUs</a>. More than just the number of cores, this new architecture seems to introduce a lot of interesting features, such as this one:</p>
<blockquote>
<p>Things get interesting here - Intel is saying that they have removed hardware cache coherency which effectively means each "tile" will be completely separate in what it stores in local L2 cache. All cache communication between cores and tiles will thus be handled by the mesh data communication system and the dedicated "message buffer" on each tile. </p>
</blockquote>
<p>What will these new architectures imply for us programmers? How will we tackle the complexity of tomorow's CPUs?</p>
http://stackoverflow.com/questions/1839743/recurring-payment-on-a-specific-date0recurring payment on a specific dateMuthoos2009-12-03T13:05:16Z2009-12-03T14:55:24Z
<p>Hi All,</p>
<p>I need to create a recurring payment that should process only twice. First, I need to get an advance amount and remaining amount should be payed in another date. Now, I would like to have the time reduces according to the initial payment date.</p>
<p>For instance, assume user purchases today then recurring will be set for 60 days, if user purchases tomorrow then it will charge in 59 days, then day after will be 58 days.</p>
<p>How to proceed with this?</p>
<p>Thanks for your time!</p>
http://stackoverflow.com/questions/1839729/one-parent-object-for-multiple-child-objects0One parent object for multiple child objects.kapilg2009-12-03T13:02:45Z2009-12-03T13:45:28Z
<p>Is it possible to have one parent object for more than one child object so that all the child could share the same parent state?</p>
http://stackoverflow.com/questions/540482/well-designed-django-example-code-to-learn-from7Well designed Django example code to learn fromLukas2009-02-12T08:26:55Z2009-12-03T13:21:34Z
<p>Does anyone know of good, well designed open sourced Django applications?
I'm really curious about different designs and I'd like to look at some good examples in order to learn about good design in a real world example.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1833809/validity-check-which-button-image-should-i-use0Validity Check, which button image should i use?martin2009-12-02T15:54:28Z2009-12-03T09:40:38Z
<p>Hello,</p>
<p>in my software there is a validity check, which checks each input in my form. The user can click on a button to do this check. My question is, if there is a recommendation which button-image should be used for a validity check, to get a homogenous gui in a windows-environment. Or are there some gui-design-guidelines which describes such things? For my other buttons in the toolbar i use the images that are delivered with visual studio 2008. The software is a WPF-based interface.</p>
<p>Thanks for advice,
Martin</p>
http://stackoverflow.com/questions/1786337/how-do-you-estimate-an-agile-project-up-front3How do you estimate an agile project up front?mrcarter2009-11-23T21:59:24Z2009-12-03T01:16:31Z
<p>When working on fixed price software development projects, I frequently find myself having to estimate the total number of hours a project will take after the price is set, but before the work is started (or VERY early on in the development). Unfortunately, these types of projects are best developed using an iterative/agile method, which means that we don’t (and really can’t) do a complete up-front design. </p>
<p>In a typical scenario, we would have a contract that has X features and Y dollars. After contracting, the engineering department would then need to estimate the number of hours required to complete the X features. There are several possible reasons to need this information up front, including:</p>
<p>• The Y dollars translates to Z hours available, so we have to make sure that time(X)<=Z, perhaps by reducing the scope of X.</p>
<p>• The delivery date is set, and so we have to assign the appropriate resources to meet that date.</p>
<p>Kelly Waters has an interesting take on estimating agile here: <a href="http://www.agile-software-development.com/2009/04/agile-estimating.html" rel="nofollow">http://www.agile-software-development.com/2009/04/agile-estimating.html</a> Unfortunately, these are estimations of difficulty, using a points system, and do not translate to hours. </p>
<p>It seems to me that we need to be able to do one of two things:</p>
<p>• Obtain contracts that have a huge amount of flexibility in them to accommodate an agile development process.</p>
<p>• Figure out how to provide reasonably accurate up-front estimates for features that have not yet been designed.</p>
<p>The first option is of course not an option in most cases.
Does anyone have any advice/guidance on how to generate up-front estimates in an agile development scenario?</p>
<p>Alternatively, does anyone see another option for solving our problem through some other process change?</p>
http://stackoverflow.com/questions/234697/managing-cisco-programatically-telnet-vs-snmp1Managing Cisco programatically; Telnet vs SNMP?MikeHerrera2008-10-24T18:12:10Z2009-12-03T00:25:52Z
<p>I was recently approached by a network-engineer, co-worker who would like to offload his minor network admin duties to a junior-level helpdesk tech. The specific location in need of management acts as an ISP for tenants on its single-site property, so there's a lot of small adjustments being made on a daily basis.</p>
<p>I am thinking it would be helpful to write him a winform app to manage the 32 Cisco devices, on-site. I'd like to initially provide functionality which could modify access control lists, port VLAN assignments, and bandwidth limitations per VLAN... adding more to the list as its deemed valuable.</p>
<p><strong>My initial thought was to emulate a telnet session</strong> with the network device; utilizing my network-engineer's familiarity with the command-line / IOS interaction. Minimal time would be required to learn Cisco IOS conventions, myself.</p>
<p><strong>Though while searching for solutions, it appears that most people favor SNMP.</strong> That, or, their specific circumstances pushed them in the direction of SNMP.</p>
<p>I wanted to know if I've overlooked an obvious benefit of SNMP. <strong>Should I be using SNMP? Why or why not?</strong></p>
http://stackoverflow.com/questions/1835494/is-having-a-function-call-block-a-bad-design-process0Is having a function call block a bad design process?whatWhat2009-12-02T20:15:02Z2009-12-03T00:00:34Z
<p>I'm writing an API which is used to receive some data from another application. Currently the function is designed to block until data is received. In my mind this limits developers using the API to use multithreading or some sort of multi-process design. So is it better for a function to block or to return a null and then sleep for a few milliseconds before trying again. </p>
<p>Note the other application may not have any data to send through the API for an unknown period of time.</p>
<p>The API is written in C++</p>
http://stackoverflow.com/questions/1835563/determine-users-gender-without-directly-asking-them1Determine user's gender without directly asking them [closed]www.runfatboy.net2009-12-02T20:26:35Z2009-12-02T20:32:56Z
<p>I am trying to come up with a question (or series of questions) that based on the way the user answers, I could make some generalizations about what their probable gender is. Directly asking them their gender is not an option.</p>
<p>Obviously there are some stereotypical questions that I could ask (do you like to play video games, fix cars, watch football, etc), but I am looking for more creative inquiries. </p>
<p>Or maybe there is something else about the user's session with my app that I could key in on that I may be overlooking?</p>
<p>What is a good indirect question/method for determining a user's gender without directly asking them?</p>
http://stackoverflow.com/questions/188124/programmatic-solution-to-change-navigation-id-to-highlight-current-page-asp-net3Programmatic solution to change navigation id to highlight current page ASP.NETAnders2008-10-09T16:42:26Z2009-12-02T19:29:39Z
<p>I am writing a website with Visual Studio 2008 and ASP.NET 3.5. I have a masterpage set up to simplify the layout and to keep the content pages for content rather than content and layout.</p>
<p>The navigation is list, css'd so it looks like a bar. In order to highlight the page on the bar, the list item needs to look like this <code><li id="current"></code>. I do not want to use <code><asp:ContentPlaceHolder></code> if I can avoid it. Is there some code I can add to each of my pages (or just to the masterpage?) to accomplish this or am I stuck using <code><asp:ContentPlaceHolder></code>'s?</p>
http://stackoverflow.com/questions/1711335/how-do-you-normally-make-a-program-look-beautiful7How do you normally make a program look beautiful?Papuccino12009-11-10T21:28:33Z2009-12-02T16:01:06Z
<p>How can I make an Application look nice and not like an amateur pulled it together?</p>
<p>I mean graphic-wise.</p>
<p>Is there some sort of book you can read regarding beautiful program layouts, etc?</p>
<p>I put this in Community Wiki so please feel free to leave your opinions that way we can all learn. :D</p>
<p>Edit: Oh my god. I completely forgot to mention what <strong>kind</strong> of program. I mean desktop applications. Not web applications. :D</p>
http://stackoverflow.com/questions/1536672/windows-mobile-is-there-any-library-to-build-attractive-interfaces4Windows Mobile: Is there any library to build attractive interfaces?VansFannel2009-10-08T09:31:45Z2009-12-02T15:19:49Z
<p>Hello!</p>
<p>I'm looking for libraries to build attractive interfaces. Someone told me about Fluid (<a href="http://fluid.codeplex.com/" rel="nofollow">http://fluid.codeplex.com/</a>) but it's very difficult to use.</p>
<p>Anyone knows others?</p>
<p>My project is for Compact Framework 2.0 SP2, C#, and it's going to use in Windows Mobile 5.0 and above.</p>
<p>Thank you!</p>