Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
parent-child
- Page 1
Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes
Programming
Web Development
2 Months Ago
by Neil_brown001
… route-based code-splitting, and some
child
components rely on shared context/state from the
parent
. To add complexity, I'm using…
parent/child
Programming
Software Development
17 Years Ago
by peaceful_soul
….\n"); exit(1); } [/code] create children from the same
parent
( the main method i assume) and this code: [code=c… this a
child
that will create a
child
and we will have a relation like this
Parent
-->
Child
-->
Child
-->
Child
-->....and so…
parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by rutwvu
I was asked to write a program, based on
parent
-
child
cooperation, which uses a “parallel” merge sort to a sequence … pass half of them to a
child
, and the other half to the second
child
of the
parent
class. I have to do… fork(). I have no idea how to manipulate the
parent
and
child
relationship to do splitting and then once again merging. I…
Parent/Child Forms - The good and the bad
Programming
Software Development
12 Years Ago
by Papa_Don
… classes on VB I took were some training on creating
Parent
and
Child
Forms. What never was clearly explained is why we… this would be an instance where I should have a
Parent
form and it's two Children. So, the primary … this? What situations would best warrant the use of a
Parent
/
Child
Form? In advance, thanks for you input. I look forward…
Re: Parent/Child Forms - The good and the bad
Programming
Software Development
12 Years Ago
by gusano79
… this? What situations would best warrant the use of a
Parent
/
Child
Form? The [Wikipedia article on MDI](http://en.wikipedia.org… this would be an instance where I should have a
Parent
form and it's two Children. I think not. You…
Parent-child relation in asp.net datagrid control
Programming
Web Development
17 Years Ago
by sbv
hi all i am searching for implementing a
parent
-
child
relation in datagrid (something like tree view). actualy i did this in vb.net using a datatable and navigation property of vb.net datagrid. please help me for this.
Re: parent/child
Programming
Software Development
17 Years Ago
by sukhmal.sena
… }[/CODE] Here exec function is called in the
child
process, so whenever a new
child
is created in the for loop, that… error and the for loop is being run in the
parent
process. Where as in the second case: [CODE]for (… called in the
parent
process, so
parent
goes on to run new program ("some prog") and the
child
will continue the…
Re: parent/child
Programming
Software Development
17 Years Ago
by Ancient Dragon
…quote] On success, the PID of the
child
process is returned in the
parent
's thread of execution, and a 0… is returned in the
child
's thread of … a -1 will be returned in the
parent
's context, no
child
process will be created, and errno will be…
Re: parent/child
Programming
Software Development
17 Years Ago
by Duoas
…(); if (pid > 0) { printf( "I am the
parent
. My
child
's PID is %u\n", pid ); } else if (pid… == 0) { puts( "I am the
child
." ); } else { puts( "I am the
parent
. I lost my fork." ); } [/code…
Re: parent/child
Programming
Software Development
17 Years Ago
by peaceful_soul
i did google it ...i know it return either 0 for the
child
...-1 error and childip for the
parent
..but still i cannot know why .. can u help?
Re: Parent / child class problems
Programming
Software Development
17 Years Ago
by cl3m0ns
Twomers I will try to make it protected instead of private and see if that fixes it but I though with
parent
/
child
classes they could use each others private variables. Thanks again for your help
Re: Parent / child class problems
Programming
Software Development
17 Years Ago
by twomers
>> but I though with
parent
/
child
classes they could use each others private variables. I think …
Re: Parent / child class problems
Programming
Software Development
17 Years Ago
by cl3m0ns
Well changing it to protected work. I guess I just thought that you could use private variables if it were a
parent
child
class thing. Anyway thanks again for your help twomers
Nested Datalist parent-child selection
Programming
Web Development
13 Years Ago
by ariez88
… within a datalist. The outer datalist make
parent
items and the inner one the
child
items both with checkboxes for selection. I… = false; int count = 0;//count=1 means only
parent
exists, count=2 means
parent
+
child
exists int labelID = 0; using (SqlConnection sqlcon = new…
ASP.NET 2.0, Parent/Child Data Control?
Programming
Web Development
19 Years Ago
by tgreer
….NET 2.0 introduced a simplified data control for displaying
parent
/
child
data? Imagine a HelpDesk application, where you want to display… typically referred to as "Master/Detail" or "
Parent
/
Child
" data. I'm just wondering if there is anything…
How can I make parent & child form there in vb.net?
Programming
Software Development
14 Years Ago
by Kingcoder210
How can I make
parent
&
child
form there in vb.net? I guess to make a
parent
form I have to activate IsMdiContainer from form`s properties. But how should I make
child
form? Please help me.
Datareports in VB6 using Parent-Child Commands
Programming
Software Development
16 Years Ago
by sumeetpingale
…. And If i insert a Group Header by creating a
parent
-
child
relationship in dataenvironment, it gives me error (General Error). Please…
help with parent-child in HTML
Programming
Web Development
14 Years Ago
by Ritesh_4
Hello I would be grateful if someone could help me achieve a
parent
-
child
relationship as shown in the attachment, using the <a href> tags
Re: help with parent-child in HTML
Programming
Web Development
14 Years Ago
by Ritesh_4
thanks twiss ans TySkby, but twiss' method is more appropriate as I have no jscript on the page, and need a simple
parent
-
child
view on the page
Re: parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by rutwvu
… numbers stored\n", (long)getpid()); printf("%ld Creating
Child
processes", (long)getpid()); child_pid=fork(); if (child_pid<0… (child_pid=fork() <= 0) break; printf("Current ProcessID: %ld,
Parent
ID:%ld \n", (long)getpid(), (long)getppid()); printf("…
Re: parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by rutwvu
…amp;& n ==0)// first
child
{ printf("Current Process PID: %ld,
Parent
PID:%ld \n", (…n == 1)//second
child
{ int array12[400]; printf("Current Process PID: %ld,
Parent
PID:%ld \n&…getpid()); }//end else if else //
parent
{ wait(NULL); }//end else }// end for[/CODE…
Re: parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by jayster419
…child_pid==0 && n ==0)// first
child
{ printf("Current Process PID: %ld,
Parent
PID:%ld \n", (long)getpid(), (…amp;& n == 1)//second
child
{ int array12[400]; printf("Current Process PID: %ld,
Parent
PID:%ld \n", (long…\n", (long)getpid()); }//end else if else //
parent
{ wait(NULL); }//end else }// end for[/CODE]
Re: parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by Adak
… fully understand your "100 numbers are left in each
child
..." part of the description, but in any case, it…
Re: parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by aspire1
… sub processes, each subprocess sorts one of the smaller arrays.
Parent
process waits for the two subprocesses to finish and then…
parent/child
Programming
Software Development
17 Years Ago
by ceyesuma
Credit card(
parent
)Debitcard(
child
). At the file menu if you choose "credit"+"new Account" the
parent
works fine. At… the file menu if you choose "debit"+"new Account" the
child
does not…
Re: parent/child
Programming
Software Development
17 Years Ago
by ceyesuma
… card .java object that uses the methods of it's
parent
CreditCard.java but sets the variables relative to debit card.
Re: parent/child
Programming
Software Development
17 Years Ago
by peaceful_soul
alright thanks guys :=)
Re: Parent/Child Windows References
Programming
Web Development
18 Years Ago
by digital-ether
…this situation: in JavaScript I have a
parent
window that opens a
child
window using window.open(). Now, through …the whole thing, comes a point where the
child
refereshes the
parent
window using opener.location.reload(). After the reload… frames or iframe. Your
parent
frame can be used to open
child
windows, the
child
windows then refresh a frame…
Re: Parent/Child Windows References
Programming
Web Development
19 Years Ago
by alpha_foobar
… guessing). If the
parent
refreshes, it makes sense that your code no longer controls the
child
. With this in …. Use a variable or function in the
child
window to register the
parent
(this assumes that a link still exists …from
parent
to
child
, even though the link is broken from
child
to
parent
). …
Parent - Child timing problem
Programming
Software Development
17 Years Ago
by edek
… could not create stream puts(">In
Child
"); return 0; } else {/*
PARENT
*/ close(toChild[0]); close(fromChild[1]);…quot;); fputs(">Some text", toChildStream); //
parent
writes to
child
puts(">Parent2"); } char* i; printf…
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC