Setting Usercontrol Properties Within A Usercontrol
Mar 22, 2012
I have a usercontrol that has a main form and calls another form within the usercontrol to get some data from a database that allows the user to select some items from a CheckedListBox control on the sub form. I want to pass the selected items from the CheckedListBox back to the main form and display the results there. I have a public property called DBList of type List(of String) on the main user control. If I create a reference to the usercontrol form the second form within the usercontrol I get a new instance of a user control. All I want to do is set the property on the usercontrol and close the secondary form. How do I reference the usercontrol from the form within the usercontrol?
Code in UserControl:
Public Property DBItems() As List(Of String)
Get
Return DBItems
[Code]....
View 3 Replies
ADVERTISEMENT
Jun 12, 2011
I have a Windows Form frmMain() holding seven more-or-less unrelated UserControls, ucFlopsy", "ucMopsy", "ucCottontail", etc...I say "more-or-less" because each of the seven UC has three similar public read/write properties:
IsLocked (a boolean indicating if the following two properties are "Locked")
IsLockedID (if IsLocked=True then IsLockedID is an integer)
IsLockedName (if IsLocked=True then IsLockedName is a string)
[code].....
View 1 Replies
Aug 19, 2009
Is there a way to expose a UserControl's properties to the Properties Window in the Designer?
View 3 Replies
Jan 31, 2011
I have MainLayout.master that has UC_Menu.ascx on it. I have a page named Customer.aspx that uses MainLayout.master. Customer.aspx also contains a UserControl named UC_Details.ascx.How can I have UC_Menu.ascx call a function that is in UC_Details.ascx with this scenario?
View 3 Replies
Jul 30, 2010
I am trying to develop a control that'll allow the developer to populate a collection through markup (e.g. Properties decorated with the attribute PersistenceMode(PersistenceMode.InnerProperty). I have an example from Brian Chavez that more or less does what I want but I want to have the control inherit from UserControl and not Control.Here is the code I have in vb.net:
AggregateFeeds.ascx.vb
Imports Microsoft.VisualBasic
<ParseChildren(True)>
<PersistChildren(False)>
Public Class AggregateFeeds
[Code]...
As it is now when I try to compile I get a compiler error that simply says object instance not set to an instance of an object on the line above. If I take it out, the page loads just fine and the Settings object reflects the values in the markup. Why am I having trouble getting the collection to populate correctly?
View 2 Replies
Oct 22, 2010
I'm trying to create a UserControl in ASP.NET to display news items based on two values that are passed in, NewsTag and ItemLimit. The problem is that the SQLdatasource is not picking up the properties in SqlDataSource1_Init. Instead the calls to the properties are empty when this is called but after render have values.
<script runat="server">
Public Property NewsTag() As String
Get
[Code].....
View 1 Replies
Jan 31, 2011
i've created a usercontrol in a win forms project + the properties work as expected, but when i recreated my usercontrol as a win forms usercontrol class library, the properties changed at runtime aren't persistent.i tried adding a DesignerSerializationVisibility attribute to the property but that didn't work.
View 2 Replies
Jul 25, 2011
I must have done something really, really dumb somewhere, but I don't know if I did a really, really dumb VB.Net thing or a really, really dumb Framework thing.I have a dirt simple UserControl - it consists of one Button. Nothing more.
[Code]...
View 5 Replies
Nov 27, 2010
Is there any simple way to hide all the design time properties of a User Control.
When my UC is on a form there's a lot of properties in the properties explorer. All those default ones that every UC has. AccessibleName, AccessibleRole, Anchor etc etc etc (dozens of the them)
Any way to hide most/all those and just expose my own ?
I suppose I want my User Control to be more like a 'Component' like the Timer and other components that don't have a UI. Short of rewriting my UC as a Component is there any quick way to hide all those form properties ?
View 4 Replies
Jun 23, 2009
Creating a usecontrol:
The control will have numberous properties available at design and run time.
I am having trouble creating and exposing FONT properties for the child objects.
Example: The control will have a label with a designtime and useradjustable Display font. I wish to
1) be able to set the Font attributes via the properties dialog at design time.
2) set those properties via GUI at runtime.
The problem...
Code:
Private propArtistHeaderFont() As Font
Public Property ArtistHeaderFont() As Font
Get
[Code].....
So clearly I can not pass the FONT properties back and forth via the SET/GET method.
View 2 Replies
Nov 12, 2009
I am programatically creating instance of usercontrol as shown below
[code]...
I have two public properties in my usercontorl like clerkName and RespName. How can I set those values in the above code. Intellisense is not showing ClerkName and respName Properties.
View 1 Replies
Jul 11, 2011
I have a Windows Form that contains a custom control container as a UserControl. For the sake of this question, this custom control container is called Dashboard. This container called Dashboard contains numerous other controls depending on their permissions. I need to raise events that are contained on these controls through the Dashboard control and over to the Windows Form.
How can I bubble up the event? I'm using VB.NET for this project, but can convert C# into VB.NET.Also, to complicate matters, the main Windows Form is a VB6 project. So, I'm using the InteropFormsToolkit to accomplish this.
View 1 Replies
Jan 19, 2011
I have two UserControls on a MasterPage. DataEntryUC contains several TextBoxes and DropDownList. NavSaveUC contains navigation buttons. When the user clicks on a navigation button, I will be saving the data entered into DataEntryUC from the NavSaveUC UserControl.
I have a couple of tables in my DB that contain stored procedure names, control names, control types, SqlDbTypes, etc.... that correlate with DataEntryUC.
How do I reference a text box that is on DataEntryUC from NavSaveUC?
I have been working on the following code from NavSaveUC with no luck.
Dim MyControlName = "txtFirstName"
Dim MyControlType = "TextBox"
Dim MyStringValue as String
[Code]....
View 2 Replies
Aug 13, 2011
I can create a Custom UserControl with simple properties (Integer, String, etc) and have those properties show up in the Property Panel. I can also create a Custom UserControl with properties like Size, Rectangle, etc and the properties will show up as an expandable item in the Property Panel (click on the '+' and the Size expands to Width & Height).
Is it possible to create properties with my own custom structure? e.g. Property 'Message' expands to Text, ForeColor, BackColor, Blink etc. I have tried creating a property that references a simple class or structure with containing the properties representing my custom structure but in the Property Panel the property is greyed out and cannot be expanded or modified.
View 1 Replies
Sep 21, 2009
I have a UserControl that has a Property - Text. How can I allow multi-lines of text to be created in its Properties (as a TextBox)
View 2 Replies
May 11, 2010
limit the default events, properties and methods exposed from a UserControl so it only displays to the developer the new events etc that I code myself.What i mean is I have created a UserControl with a panel and 5 buttons, written 1 Public Eventonly at this stage, I have placed an instance of the control on a form in a new project, but in the drop down menu that comes up after say (myUserControl1.), there is a massive list of options, I don't want those to appear.
View 3 Replies
Sep 25, 2011
I just discovered the joys of UserControl's and I was wondering if it is possible to populate the usercontrol with data from a database in the UserControl's Form.Load event instead of the form the userControl is placed on. I feel it would make using the control a lot easier if it just populated itself without anymore code.I tried it with a ListView but it gave me a bunch of errors, so I didn't know if it had to be done a certain way or if it was just one of those things that doesn't work no matter what.
View 8 Replies
Aug 29, 2009
I have created a usercontrol named note. in the note usercontrol in contains 6 labels. now i want to access the usercontrol at runtime. it means that, when the right button is press, the note usercontrol is appear, when it pressed again it appear again beside the previous usercontrol. how can i access it like when user is click at one of the labels, that labels backcolor change to other color. it is means that a label that has been clicked is the selected label. and we can change the properties of that selected label.
View 2 Replies
Aug 12, 2010
I want to add a usercontrol to a panel. My code does not work: Panel1.Controls.Add(uc1)
View 1 Replies
Sep 30, 2010
I got a user control that has a few links, one of them is "add article". It's placed on top of the article and bottom of it. When the user clicks on it, the text changes to 'article added'.
But the text only gets changed for one of the links which has been clicked on. How can I make it so that both text changes no matter which one gets clicked?
View 1 Replies
May 17, 2012
How to convert UserControl.vb to dll? I'am using Microsoft Visual Studio 2010 Professional
View 2 Replies
Apr 18, 2012
I downloaded the next project from here:
[URL]
Now the project itself was built in C #, but the interesting part of me is "Toolbar.cs".
There is a way to replace the "Toolbar.cs" from C#, to VB? Or i must convert all the project? (Unfortunately, I do not know how)
I just want to build the part that I need(UserControl - "Toolbar.cs") in VB, and the rest can stay in C #, it does not matter to me.
View 7 Replies
Jun 1, 2009
I created Custom Paging User Control for a GridView. The Custom Control I am using at the top of GridView and Bottom of GridView. If I am clicking Next on top of Grid View, it is not effecting in the bottom.
View 1 Replies
Feb 19, 2009
I created a UserControl in a ClassLibrary project and then built it to generate the .dll file. I then want to create a new project and i added this .dll as a reference to my new project. but how do I add the UserControl in the class to my Toolbox? I'm using Visual Basic 2005 Express Edition.
View 2 Replies
Jun 3, 2010
I am running through an issue for which I am unable to find a solution.My goal is to:1- compile a x64 .NET library (vb) which has a simple User Control 2- Use this dll in a .NET WinForm application targeted to x64 CPU ONLY.
I have been able to do the first step, but now I am unable to add the library into the VisualStudio Toolbox. With our previous x86 version we had just to right click to VS toolbox, click on "Choose items...", then brows to the needed x86 assembly. If we do the same selecting a x64 lib (of course I am running vs on a 64 bit OS), we get the following message "[DLL PATH] is not a Microsoft .NET module."
View 1 Replies
May 26, 2010
I've created a usercontrol in VB that handles paging more efficiently than the DataPager (at least for very large datasets). I'd like to use it in a C# project, but I've been having trouble getting it to work.I've tried simply adding PagingControl.ascx to the C# project, but when I do that the markup and VB code behind don't seem to see each other. --Is this a namespace issue?I've tried adding the PagingControl.ascx to its own VB project, then adding that project to the C# project's solution, as well as a reference. --That almost works. I can register the PagingControl usercontrol in the markup. I can access the usercontrol's properties in the code behind, but any property that involves the UI of the usercontrol fails.
Its seems as if the usercontrol's form hasn't had a chance to load by the time the C# page's Page_Load event handler fires. --Maybe this is an "order of operations" problem? At what point in the C# page's lifetime should a usercontrol's form be loaded?
View 1 Replies
Feb 3, 2011
Have actually managed to create a UserControl complete with buttons, windows media player ... Right-Clicking in the toolbox I browsed to the dll and that brought the control into the toolbox successfully as VideoSourceControl.I can drag/drop this control onto the form and it is fine, buttons etc looking good. Now I want to create it programmatically - I actually want to refer to an array of them.On the form load I have
Public mySources() as SourceVideoControl and I get an error saying that 'SourceVideoControl is not defined'The dll that I loaded was called VideoMixerControl.dll?
View 6 Replies
Jan 13, 2009
how to use a ToolTip on a UserControl? I have a UserControl with some TextBoxes on it & I am adding the UC to a panel on my form at runtime. Now I want to set the ToolTip text for one of the TextBoxes, but I can't figure out how to do that. I have added a ToolTip component to my UserControl at design time.
View 20 Replies
Apr 5, 2012
I made a User control.I add two Panel in this Usercontrol. But i want one of panel keep control like container when i add my usercontrol in the from.but when i add user cousercontrol does not contrin any controlntrol in the from but my . how can i user usercontrol like container
View 3 Replies
May 3, 2010
I believe I am on the right path but didnt get it to fire. userControl1 contains a lstBox, it has MouseDoubleClick event doing something inside the userControl. But I want to add something to that event from the form containing the userControl1. So when I mouseDoubleClick the lstBox inside UserControl1 I want to fire the code in my form eventHandler and in the control eventHandler? RaiseEvent?
Public Class myForm
'CodeBehind of form containing userControl1
Private Sub UserControl1_MouseDoubleClick(ByVal sender As System.Object,
ByVal e As System.Windows.Forms.MouseEventArgs
) Handeles UserControl1.MouseDoubleClick
ds1.clear()
[Code] .....
View 1 Replies