| Thread | Last Post | Replies |
|
| Serialiazing CollectionBase | 30 Apr 2004 02:59 GMT | 1 |
Hello... I the following class deriving from CollectionBase: ============================ public class YYYepC : System.Collections.CollectionBase
|
| Retrieving radiobuttonlist from datagrid | 30 Apr 2004 01:24 GMT | 1 |
I am binding a radiobuttonlist to a datagrid on the ItemDataBound event. See code: Sub dtgAccesSite_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles dtgAccesSite.ItemDataBound Dim radAcces As New RadioButtonList ...
|
| prevent cell wrap | 28 Apr 2004 15:15 GMT | 1 |
Hi, I have a control that inherits from datagrid that has resizable columns. when a column is sized smaller than the text length the overflow attribute kicks in and displays an ellipsis for the hidden text.
|
| Dynamically add linkbuttons and wire them to same event?? | 28 Apr 2004 04:27 GMT | 2 |
Hi, How do I dynamically add linkbuttons and wire them to same event? I am able to add linkbuttons but they do not fire the event. Does anybody have a working sample? Many thanks, Linda
|
| Refreshing web control after sub-property change | 28 Apr 2004 01:56 GMT | 1 |
I have the following A class called PageHeader that derives from WebControl. The PageHeader class defines a property called ForwardButton As ForwardButtonProperties. This ForwardButtonProperties class TypeConvertor is the ExpandableObjectConvertor. I have defined several ...
|
| User defined property saving problem | 28 Apr 2004 01:48 GMT | 1 |
(Type your message here) Hi, I have a problem with a control (C#) found on the web wich implement a masked text box (derived from TextBox) in a dll file. It has a property 'Masked' implemented as an enum that alows you to select the mask you want (none, date, phone, digit, decimal ...
|
| Creating a COM+ object with c# | 27 Apr 2004 21:00 GMT | 1 |
Is it possible to use c# and .NET to create a COM+ object that can be accessed in classic ASP/VBScript using Create.Object ?
 Signature W '04 <:> Open
|
| DataGrid childcontrols problem | 27 Apr 2004 07:24 GMT | 8 |
I am developing a custom control that inherits from the datagrid. I want the normal functionality of the Datagrid, then several buttons created underneath the grid (not in the footer or pager).
|
| WebBrowser Control won't run in a UserControl | 26 Apr 2004 04:26 GMT | 3 |
I can get the WebBrowser control (shdocvw.dll) to run great on a form using either C# or VB.net but if I try to include it in a user control and then drag the user control onto a form in another project, it doesn't work at all. Are there some pitfalls in doing this? Thanks for any ...
|
| textbox | 26 Apr 2004 03:14 GMT | 2 |
i would like modify font texybox in verdana in onpage_load textbox.font=?
|
| What is the life cycle when there are child controls? | 25 Apr 2004 23:54 GMT | 5 |
The basic life cycle is (hopefully I am correct): OnInit LoadViewState LoadPostBackData* (loads controls with postback data)
|
| Enum causes compiler errors | 25 Apr 2004 16:49 GMT | 2 |
In my web control code I define an enum: public enum LayoutDirections { Horizontal,
|
| how to pass on a variable from a page to a user control / best practice | 25 Apr 2004 16:43 GMT | 4 |
I have a general question what the best practice is passing along values from an aspx-page to a user-control. Let's say I call an aspx page like this: myaspxpage.aspx?id=5. On that page I use Request.Params to store the id value in a variable.
|
| could not load type | 24 Apr 2004 22:41 GMT | 1 |
I tried with "Developing a Simple ASP.NET Server Control" from MSDN a http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cp conwalkthroughdevelopingsimplewebformscontrol.asp But I saw "Error Creating Contro - Firstcontrol1" at the design tim and when I try ...
|
| Custom Calendar Web Server Control | 24 Apr 2004 22:28 GMT | 1 |
I am building a calendar control with an functionality to change year. so, i have a dropdownlist box populated with years. When the user change the year in the dropdownlist box accordingly i addyears to the calendar control.
|