The user-control tag has no wiki summary.
-5
votes
1answer
329 views
I need a date-picker for an ASP.NET page [closed]
I am trying to re-engineer a web application that currently uses an inhouse-developed date-picker control which has proven to be problematic -- for one thing it will only work on Internet Explorer and ...
4
votes
2answers
465 views
A design pattern for data binding an object (with subclasses) to asp.net user control
I have an abstract class called Address and I am deriving three classes ; HomeAddress, Work Address, NextOfKin address.
My idea is to bind this to a usercontrol and based on the type of Address it ...
0
votes
2answers
315 views
Access functions from user control without events?
On some generic functions, it seems that accessing a function on mainform directly from the usercontrol is easier than raising an event. For example: A function on main form that displays one desired ...
0
votes
1answer
203 views
Is a silverlight UserControl considered a view?
So far I have been implementing MVVM in my silverlight app pretty well, I just had one question. I have a few User Controls that I made and was wondering if they should be placed in the Views folder ...
1
vote
3answers
1k views
Best practice for using a user control across many projects
I have a messaging User Control, that is used across 4 projects, and for each change I have to propagate it in 4 places. This is obviously against the DRY principle. However, centralizing user ...
2
votes
3answers
81 views
Allowing the user to specify the location of a logfile
I'm working on an application, and adding logging, but now I'm stuck.
I want to allow (not force!) the user to set the location of the logfile.
Basically, my problem is:
logger initialization ...
0
votes
1answer
525 views
User roles in GWT applications
I'm wondering if you could suggest me any way to implement "user roles" in GWT applications. I would like to implement a GWT application where users log in and are assigned "roles". Based on their ...
4
votes
2answers
122 views
How much configurability to give to users regarding concurrency?
This question is a narrowing-down of these related questions:
How much effort should we spend to programming for multiple cores?
Concurrency: How do you approach the design and debug the ...