Ask a Question related to ASP.NET Building Controls, Design and Development.
-
JackRazz #1
Finding a Component's (ComponentModel.Component) Parent Form
I'm working on a .net component (not a control) and need to find out what form the
component is contained in during runtime (DesignMode=False). With a control, there
is a parent property (and FindForm) to do this with, but no such luck with a
component.
I was thinking that I might be able to iterate thru the Container.Components with
something like this with the Site.Name being the components name. This assumes that
a form is added to the container.components.
Dim c As IComponent
For Each c In Me.Container.Components
Console.WriteLine(c.Site.Name)
Next
But this doesn't seem to work. Does anyone have any idea as to how I can determine
what form a component is placed on??
Thanks - JackRazz
JackRazz Guest
-
Referencing (calling) states in the parent component
Hello All, I think this should be pretty easy to do but I am having a hell of a time doing it. I have a parent component, main.mxml, and a... -
Accessing a ComboBox from the parent component
I have a component that contains several other components and a combobox with date values. I want to be able to access the value of the combobox... -
Calling a function on the component's parent.
How would you go about sending an event in the seeting of a popupWindow? I open a popup window child to parent document. I would like to run an... -
finding an element in the current document's parent
Hi, I'm trying to use MM's findObj function to get the reference to an object which is in the current document's parent, and I'm being a bit... -
Hello Error with Web Services. No se puede serializar el miembro System.ComponentModel.MarshalByValueComponent.Site de tipo System.ComponentModel.ISite porque es una interfaz.
Hello I have a solution iwth a web project and web service project I made a project and I compiled it and it has no errors. But when I try to add... -
John Saunders #2
Re: Finding a Component's (ComponentModel.Component) Parent Form
"JackRazz" <JackRazz@NotValid.com> wrote in message
news:%232tdpobAEHA.2632@TK2MSFTNGP12.phx.gbl...form the> I'm working on a .net component (not a control) and need to find out whatcontrol, there> component is contained in during runtime (DesignMode=False). With aa> is a parent property (and FindForm) to do this with, but no such luck withContainer.Components with> component.
>
> I was thinking that I might be able to iterate thru theassumes that> something like this with the Site.Name being the components name. Thisdetermine> a form is added to the container.components.
>
> Dim c As IComponent
> For Each c In Me.Container.Components
> Console.WriteLine(c.Site.Name)
> Next
>
> But this doesn't seem to work. Does anyone have any idea as to how I canWhat about your components Site property? It has a Container property (as> what form a component is placed on??
well as a DesignMode property).
--
John Saunders
John.Saunders at SurfControl.com
John Saunders Guest



Reply With Quote

