57
votes
18answers
4k views
Best Free Controls for .NET
What Free Controls are there for .NET (both Winforms and Webforms)?
9
votes
17answers
2k views
Easy/Simple online source control?
I'm working on a project with a small team for a couple months. We need simple source control. Preferably something online.
Any suggestions?
8
votes
3answers
2k views
A good WPF scrolling timeline control? (fancy datetime picker)
Hi,
I'm looking for somthing I can use as a timeline control.
A kind of "banner" the user can drag to the left or the right to go forward or backwards
in time and then he or she should be able to …
8
votes
9answers
1k views
Problem with dynamic controls in .NET
Problem with dynamic controls
Hello all,
I'm wanting to create some dynamic controls, and have them persist their viewstate across page loads. Easy enough, right? All I have to do is re-create the …
8
votes
6answers
2k views
What is best method to find a ASP.Net control using jQuery?
In implementing my first significant script using jquery I needed to find a specific web-control on the page. Since I work with DotNetNuke, there is no guaranteeing the controls ClientID since the …
8
votes
8answers
770 views
ASP.NET Custom Controls - Composites
Summary
Hi All,
OK, further into my adventures with custom controls...
In summary, here is that I have learned of three main "classes" of custom controls. Please feel free to correct me if any of …
7
votes
2answers
315 views
TTabSet vs. TTabControl vs. TPageCtrl/TTabSheet?
Hello
I was wondering why Delphi (2007) provides three widgets that seem to do the same thing, and what the advantages/disadvantages are for each.
On the same topic, if I want to display different …
7
votes
8answers
353 views
Should a control be disabled and hidden or just hidden?
When manipulating controls on a .NET windows form which of the following is best practice and why?
//Hide control from user and stop control form being useable
oControl.Enabled = false;
…
7
votes
7answers
267 views
Best practice for adding controls at run-time
When adding controls to a form at runtime, you can do either of the following:
Button btn = new Button();
//...
this.Controls.Add(btn);
or
Button x = new Button();
//...
btn.Parent = this;
I had …
7
votes
4answers
2k views
Detect when JavaScript is disabled in ASP.NET
In the Render method of an ASP.NET web-control, I need to alter the output of the Html based on whether JavaScript is enabled or disabled on the clients browser,
Does anyone know the right …
7
votes
9answers
4k views
UI Components for Windows Mobile Applications (.NET Compact Framework)
Applications which run on mobile devices have special user interface requirements. I think Apple did a great job introducing innovative controls on the iPhone/iPod touch platform.
Now, I have to …
7
votes
4answers
4k views
Where can I find free WPF controls and control templates?
I am looking for some recommendations on good places to find libraries of controls/templates/styles for WPF. I know about the usual places like Infragistics, but it seems to me that there should be …
6
votes
1answer
297 views
WPF snapping controls
Hello everyone,
my current free-time project, in order to dive into WPF MVVM, is a "digital" copy of an old puzzle I used to play a lot in my childhood. It basically is a simple puzzle where one has …
6
votes
3answers
1k views
How to create a WPF UserControl with NAMED content
I have a set of controls with attached commands and logic that are constantly reused in the same way. I decided to create a user control that holds all the common controls and logic.
However I also …
6
votes
3answers
136 views
Java date and calendar controls
Does anybody have any recommendations of good date pickers (either drop down calendars or small calendar components) for use in a Java Swing application - either beans or source code? They need to be …
