By tag: controls
0
kicks
Adding Auto Format for ASP.NET Custom Controls Design Time
This post shows how to add Auto Format.. link in the Smart Tag of the ASP.NET web controls, to give the user of the control a variety of different styles in the design time.
0
kicks
Creating a transparent Panel in .NET
Today I wanted to create a transparent Panel-Control in .NET in order to superimpose it on the WebBrowser Control in order to record click events. The goal was to code a simple macro recorder for websites. Unfortunatelly the .NET framework does not allow (in an easy way) to make a control fully tran...
0
kicks
Ajax Control Toolkit - Multipart Series Article
A multi-part series article on Ajax Control Toolkit.
0
kicks
Stable SPAW Editor v.2 .NET Edition Released
.NET Edition of the one of the most popular Open Source web based WYSIWYG editor controls has been released. Industry unique multi-document tabbed WYSIWYG editor is finally available to .NET developers. Includes designer support for Visual Studio 2005.
0
kicks
Dynamically adding controls to ASPX pages (web forms) and assigning ev
Although I've seen a lot of articles describing how to dynamically add controls to a Web Form, few mention even a little hint to how you can make event handlers actually WORK with dynamically-added controls. This article may seem (and probably is) a beginner-level one, but I think it's essential to ...
0
kicks
SPAW Editor .NET Edition v.2 Released
.NET Edition of SPAW Editor v.2 - open-source web based HTML WYSIWYG editor control - has been released. v.2 adds unique tabbed multi-document interface, floating/shared toolbars, support for all major browsers (IE, Firefox, Opera, Safari), designer support for VS2005 and many more.
0
kicks
The Ruby Connector : Free .NET to Ruby Control
The Ruby Connector is a drag-and-drop control which enables .NET programs to communicate with Ruby programs. Using the Ruby Connector, you can:
- Create visual front-ends to Ruby programs using the Visual Studio form designer.
- Interact with the Ruby interpreter in your own applications in much...
0
kicks
ASP.NET AJAX Data Controls (GridView, Pager, Repeater)
The purpose of this project is to Develop data controls such as GridView, DataList, Repeater, DetailsView, FromView, ObjectDataSource on top of Microsoft Ajax Framework for Client Centric Development model.
Since the Asp.net version of these controls does not have clientside object model thus it...
0
kicks
Easily Test Custom Controls Inside of Visual Studio
Here's a quick way easily test and debug your custom WinForms controls right inside of Visual Studio without having to launch your entire application.
0
kicks
Free WinForms Toolkit Released
This toolkit of free WinForms controls provides the Office 2007 look and feel for all the controls including a DataGridView, RadioButton, CheckBox and much more.
0
kicks
Rendering a Control to a String
This is a really handy little function for rendering a control to a string. Really handy if you want to pass back rendered HTML from a StaticPageMethod or WebService.
0
kicks
Custom "All or Nothing" Required Validator web control in C#
C# code for an ASP.NET required validator web control that requires a specified set of controls to be all populated, or all empty, as a group. It inherits from the RequiredFieldValidator ASP.NET class, so it essentially works the same way, it just treats the set of controls you specify as if they we...
0
kicks
Good Practice For Working With ASP.NET Controls
A good practice that I'm using when working with ASP.NET controls that saves me a lot of work.
0
kicks
Getting All Controls On The ASP.NET Page
How to get all controls on a page in a recursive way -
FlattenHierarchy method and what you can do with it.
0
kicks
Self-Hiding ASP.NET Control
Making a self-hiding ASP.NET control - what can surprise you on your way.