0
votes
0answers
2 views
Scroll event of DataGridView and UserControl.
I have added User control in 1st column of every row in DataGridView. But I am unable to move them when user scroll DataGridView vertically or horizontally
below i have wrote code used to draw …
0
votes
1answer
15 views
Design-time moving of a child control owned by a composite user control
Hi,
I have a Windows Forms user control, which (for various reasons irrelevant to this issue) are exposed in the designer, much like the panels in a split panel. Most everything works nicely, except …
0
votes
3answers
23 views
Asp.Net: Problem setting property value in UserControl
Hi all,
I have a UserControl called 'Inspirations' with the following public property
private int pagenumber;
public int PageNumber
{
get { return pagenumber; }
set { pagenumber = value; }
…
0
votes
0answers
13 views
Add user control in Visual C++ 2008 Express
I can't seem to add a user control from an existing solution I've created in visual C++ 2008 Express. I don't see the option located anywhere. Perhaps I'm looking in the wrong area or it's just not …
1
vote
2answers
29 views
C# exclude complete form / usercontrol by using compiler constants
I'd like to exclude / include a complete form in my project. But when I add the needed #if CONST and #endif the compiler complains about resources that may get wrong names.
warning MSB3042: A …
1
vote
2answers
28 views
Asp.Net: Passing value from Page to UserControl
Hi all,
I have a textbox on my aspx page and I need a usercontrol to be able to see or access that value, how would I do that please.
I created a public property on my aspx page
public string …
0
votes
0answers
15 views
How to add more than one control to a custom control’s placeholder?
we have created a container custom control and this is how they were called in OnPreInit:
private void RenderModules() {
List<Modules> modules = GetModulesList();
foreach(var item in …
1
vote
6answers
60 views
Maximum number of entries in a ListBox
What is the maximum number of entries a simple ListBox (ComboBox) should contain? There are fifty states in the US - is 50 too many? There are over 270 countries and territories in the world - is …
0
votes
1answer
35 views
ASP.NET User Control inner content
Hey,
I have a user control which accepts a title attribute. I would also like that input inner HTML (ASP Controls also) inside of that user control tag like so:
<uc:customPanel title="My …
2
votes
1answer
25 views
how to load usercontrols from the assembly using the filename?
we have a set of usercontrols complied to a dll. we could just load the controls using their classnames by like ASP.theusercontrol_ascx blah = new ASP.theusercontrol_ascx();
but if we have dynamic …
0
votes
1answer
28 views
Start and End Divs Using Two Controls - Aps.net mvc
In an Asp.net MVC application I'd like to encapsulate the ugly wrapper code (just a literal html opening string and another closing string) we use to make corners and shadows compatible with older …
0
votes
3answers
67 views
Replace a string with a user control
How can I replace a string with UserControl?
if string = [$control1$]
replace with control1.ascx
0
votes
1answer
14 views
ASP.NET: User control with dependent attributes
I'm writing a user control with two attributes, A and B. I want the programmer using this control to be warned when defining a value for attribute A but not for B.
Can I accomplish this somehow?
0
votes
2answers
61 views
Programatically add UserControl with events
Hi everybody
I need to add multiple user controls to a panel for further editing of the contained data. My user control contains some panels, dropdown lists and input elements, which are populated in …
0
votes
1answer
12 views
add one xaml based usercontrol to another on mouse event
I have three xaml files + their code behind files in my Silverlight (C#) web project.
One is the MainPage.xaml, which is what gets rendered in the browser.
The other two (lets call them Dot and Box) …
