Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
child
- Page 1
Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes
Programming
Web Development
1 Week Ago
by Neil_brown001
… tree changes due to route-based code-splitting, and some
child
components rely on shared context/state from the parent. To…
Re: Selling the house that I grew up
Community Center
Geeks' Lounge
1 Month Ago
by Dani
… to spend time with her grandchild. (I'm an only
child
, so there are no siblings scattered around anywhere else.) However…
Child Form not Centering
Programming
Software Development
19 Years Ago
by bcheath_1
… developing an MDI application in VB.NET (2005). Anyway, my
child
form refuses to center the parent forms' bounds. I have… Show method. [b]Note: frmMain is the name of the
child
form.[/b] This caused a bit of confusion in the… code is not working. Whenever I run the application, the
child
form is loading in the default upper-left hand corner…
Child forms terminate when closing main form
Programming
Software Development
15 Years Ago
by DAVe3283
…to edit specific records in a database. When closing a
child
form, it asks if the user wants to save … data. However, if the main form is closed, all
child
forms are closed without prompting. It would seem that this…t seem to figure it out. I am launching the
child
windows like this: [CODE=C#]private void listResults_DoubleClick(object …
Re: child Form in MDI parent form of the panel
Programming
Software Development
15 Years Ago
by AndreRet
…parent.in my project there is parent form and
child
form. in my MDi parent form i had …want to show the other
child
form . but i dot no how to call
child
form on that fix …panel form[/QUOTE] Would you like to show the
child
form in the fixed panel? I am not sure…what exactly you want to do here. I the
child
needs to fit into the panel, its a …
child tables...yes or no
Programming
Databases
14 Years Ago
by teedoff
…, "keywords" and "catagory" should be in
child
tables. I just dont see that, or I dont understand… CHARSET=latin1 [/CODE] I was trying to find information on
child
tables. The problem I am having though is that the…? Am I wrong on this point? Do I need a
child
table for the keywords column? Catagory column I could actually…
Re: Child object manipulation in other child object problem
Programming
Software Development
13 Years Ago
by Aviras
… parent dungeon I was adressing. By making DungeonRoom a
child
of HostileArea, the
child
also gets the variable dungeon. D'oh, what…over it. And the main reason for making DungeonRoom a
child
was easy access to the parent dungeon.. :P Must've… some godforsaken hour when I decided to make it a
child
. Thanks to you both, even long after our beginner …
Child Windows walkthrough ... please?
Programming
Software Development
13 Years Ago
by flywheeljack
… been trying to wrap my head around how to control
child
windows in other applications. I have several examples of code…how to get control of the
child
windows. The object is simply to close the
child
windows of a different application. I…need something that could police an application to close the
child
windows it produces. Thanks for any help.
Re: child mdi is not clearly visible
Programming
Software Development
15 Years Ago
by Geekitygeek
…behind all the other controls. Whenever you add a
child
form it is placed inside this control ([B]not… the other controls are kept in front of the
child
form. One workaround for this is to loop through…size the MdiClient to fill whats left then the
child
forms will only be able to occupy the unused…Any other controls i want i place in
child
forms.
Re: Child forms terminate when closing main form
Programming
Software Development
15 Years Ago
by phoenix911
… be, disable the main form close button when there are
child
forms open... and just enable it again when there are… no
child
forms open... or create a global variable(a bool perhaps…), that when a
child
form is open.. its set to true... so when pressing…
Child object manipulation in other child object problem
Programming
Software Development
13 Years Ago
by Aviras
… a protected parent object from within a
child
object, the protected parent object being a
child
object of the same class. I… has a "protected DungeonRoom[][] dungeon", DungeonRoom being a
child
of HostileArea. From within one such DungeonRoom object in the…
Re: Child Form not Centering
Programming
Software Development
18 Years Ago
by adrcam
… follow the code line by line to see if the
child
form is being placed in that position when it is… the "Windows Forms Designer generated code" for the
child
form and the main form. some code could be hidden…
Re: Child Form not Centering
Programming
Software Development
16 Years Ago
by Scott Barry
… allow you to at least arbitrarily place a new MDI
child
window anywhere on an MDI parent is the following sequence… after having created a new instance of the
child
form: MDIchild->StartPosition = FormStartPosition::Manual; MDIchild->Location = Point…
Re: Child Form not Centering
Programming
Software Development
15 Years Ago
by mcspidy
… what I've used in the past to center MDI
Child
Forms Dim MDIChildForm As New FormName 'Where FormName is the… name of the MDI
Child
Form MDIChildForm.MdiParent = Me MDIChildForm.Show() Dim BorderWidth As Integer…
child mdi is not clearly visible
Programming
Software Development
15 Years Ago
by plastic
… which contains some labels, text and buttons and also a
child
mdi. when i run the program initially everything is okkk…. but on opening the
child
mdi , the labels,buttons and text of parent mdi, are… also visible on the
child
mdi. i used the enabled and visible in parent mdi…
Re: Child forms terminate when closing main form
Programming
Software Development
15 Years Ago
by kvprajapati
[b]>if the main form is closed, all
child
forms are closed without prompting.[/b] Show/Create Owner form - …a form (
child
) which is owned by other form. Also handle the FormClosing…
child Form in MDI parent form of the panel
Programming
Software Development
15 Years Ago
by pritesh2010
hello everyone. i have a problem with MDI parent.in my project there is parent form and
child
form. in my MDi parent form i had created fix layout panel where i want to show the other
child
form . but i dot no how to call
child
form on that fix MDI panel form
Child Controlling Parent Data
Programming
Software Development
14 Years Ago
by zachattack05
…progress bar and a few labels. Occasionally a
child
form will execute a command that could be tracked…to implement as a parent form can have multiple
child
forms. Here are the suggestions I have run…thread[/URL]. And finally this: [CODE=C#] //IN THE
CHILD
FORM (MDIChild) private void button1_Click(object sender, EventArgs e)…
Re: Child object manipulation in other child object problem
Programming
Software Development
13 Years Ago
by JamesCherrill
…=Aviras;1671827]And the main reason for making DungeonRoom a
child
was easy access to the parent dungeon.. :P Must've… some godforsaken hour when I decided to make it a
child
.[/QUOTE] Excellent! ps where you need to access vars from…
Child overloaded constructor access Parent constructor
Programming
Software Development
10 Years Ago
by strRusty_gal
… syntax for the code below is C#. public class
Child
: Parent { public
Child
(String a, String b) : base(c) { } } I would like… similar way to add ": base(c)" behind the
child
overloaded constructor but it didn't work. Is there any…
Re: Child overloaded constructor access Parent constructor
Programming
Software Development
10 Years Ago
by strRusty_gal
… finally figured out with all your input. =) public class
Child
extends Parent { public
Child
(String a, String b, String c) { super(c… JamesCherrill post but just to add String c in the
child
overloaded constructor so that the system can capture the value…
Re: Child Form not Centering
Programming
Software Development
15 Years Ago
by Mortimern
… Drawing.Point Private sub form_load locat = me.location In your
child
form: private sub form_load me.location = mainformname.locat + new.point…
Re: Child forms terminate when closing main form
Programming
Software Development
15 Years Ago
by Geekitygeek
Also, by setting the Owner to your main form it should call the closing events of the
child
forms when the main form closes.
Re: Child forms terminate when closing main form
Programming
Software Development
15 Years Ago
by DAVe3283
… sender, FormClosingEventArgs e) { FormCollection openForms = Application.OpenForms; // Hold the open
child
froms int openCount; // Count of open forms to determine if…
Re: child Form in MDI parent form of the panel
Programming
Software Development
15 Years Ago
by vb5prgrmr
Did you place a picture box on the mdi parent form and hope to show a mdi
child
form in it??? If so, the SetParent API is what you are looking for. If not, are you sure you set the mdichild propert to true in the intended
child
form??? Good Luck
Re: child Form in MDI parent form of the panel
Programming
Software Development
15 Years Ago
by pritesh2010
… i had created two fix panel on form show the
child
form and another small panel i'm showing the help… panel1.Controls.Add(frm) frm.show() [/CODE] it show the
child
form but it does not fit on he panel. what…
Re: child tables...yes or no
Programming
Databases
14 Years Ago
by teedoff
Anyone? I am trying to figure out if "keywords" should be in a
child
table as suggested by someone on another forum. I dont tbink it should, but I'm fairly new to database design, so Maybe I'm not understanding his reasoning like I should. Please, can someone give me some advice on this. Thanks!
Re: child tables...yes or no
Programming
Databases
14 Years Ago
by teedoff
…;keyword" column from my rlbbulbs table. then create a
child
table called "bulbKeywords" as you suggest above. [code…
Re: Child Window Without Handle
Programming
Software Development
14 Years Ago
by Irina77
…Show us some code[/QUOTE] [CODE]static HWND
child
[10]; static int st = 0; BOOL CALLBACK … first = 1; if (first) { dbe = hwnd; first = 0; }
child
[st] = hwnd; st++; return 1; } main () { HWND dbe = NULL… st; j++ ) { cout << "
child
[st]= " <<
child
[j] << endl; } } [/CODE] Both…
Re: Child Windows walkthrough ... please?
Programming
Software Development
13 Years Ago
by lolafuertes
… able to know if is opened, and to close, any
child
window of application A. If my assumption is right, application…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC