Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
parent
- Page 1
Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes
Programming
Web Development
2 Weeks Ago
by Neil_brown001
… some child components rely on shared context/state from the
parent
. To add complexity, I'm using React Query for client…
Re: Show selected option id
Programming
Web Development
2 Months Ago
by Biiim
… i to the id attribute. Im guessing you accessed the
parent
element and found all its children that way so your…
Parent user control method needs to be accessed from child user control
Programming
Web Development
15 Years Ago
by t2009
Parent
user control method needs to be accessed from child user control. Any solutions???
Re: Parent user control method needs to be accessed from child user control
Programming
Web Development
15 Years Ago
by t2009
…from child user control. Any solutions???[/QUOTE] In the
parent
user control file .ascx as listed below.. [code=asp…;/tr> </table>[/code] --- In the
parent
user control .ascx.vb file the function is as listed…control .ascx.vb file the function with in the
parent
user control i.e., DisplayApprovalChainList(ByVal....) needs to be…
Re: Parent div height does not change when element slides down
Programming
Web Development
11 Years Ago
by cgull
…).
parent
().next())); // var h = $($(this).
parent
().
parent
().
parent
().find('.more')).height(); //console.log(h); //console.log($(this).
parent
().
parent
().
parent
().
parent
()); //$($(this).
parent
().
parent
().
parent
().
parent
()).css('height', 'auto'); //console.log($(this).
parent
().
parent
().
parent
().
parent
…
Re: Parent/Child Windows References
Programming
Web Development
18 Years Ago
by digital-ether
… thing, comes a point where the child refereshes the
parent
window using opener.location.reload(). After the reload happens,… I have realized that the
parent
window no longer has references to its child windows. … the child window, is deleted when you refresh the
parent
window. So the object reference to the child window…
Parent traversal of tree-like structure
Programming
Web Development
11 Years Ago
by sciwizeh
…have its ancestors linked: "Web Development > JSP >
Parent
traversal of tree-like Structure" I have several beans… would look something like: while(currentthing.
parent
!=null) add currentthing.
parent
to ancestors currentthing=currentthing.
parent
reverse ancestors for thing in ancestors format…
parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by rutwvu
…other half to the second child of the
parent
class. I have to do this until only…are sorted the must be returned to the
parent
processes and merged creating one sequence of sorted …stored in a file. The splitting of the
parent
must be done using fork(). I have …no idea how to manipulate the
parent
and child relationship to do splitting and then…
Parent/Child Windows References
Programming
Web Development
18 Years Ago
by MIGSoft
… I have this situation: in JavaScript I have a
parent
window that opens a child window using window.open(). … thing, comes a point where the child refereshes the
parent
window using opener.location.reload(). After the reload happens,… I have realized that the
parent
window no longer has references to its child windows. …
Re: Parent/Child Windows References
Programming
Web Development
18 Years Ago
by alpha_foobar
… probably loses all relationship references (I'm guessing). If the
parent
refreshes, it makes sense that your code no longer controls… the child window to register the
parent
(this assumes that a link still exists from
parent
to child, even though the link…
Re: parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by rutwvu
…must print out the current pid and the
parent
pid. Currently this won't even compile …exit(-1); } printf("Current Process PID: %ld,
Parent
PID:%ld \n", (long)getpid(), (long)getppid());…<= 0) break; printf("Current ProcessID: %ld,
Parent
ID:%ld \n", (long)getpid(), (long)getppid()); …
Re: parent-child cooperation and parallel merge sort
Programming
Software Development
13 Years Ago
by rutwvu
…first child { printf("Current Process PID: %ld,
Parent
PID:%ld \n", (long)getpid(), (long)…array12[400]; printf("Current Process PID: %ld,
Parent
PID:%ld \n", (long)getpid(), (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 jayster419
… ==0)// first child { printf("Current Process PID: %ld,
Parent
PID:%ld \n", (long)getpid(), (long)getppid()); for(i… { int array12[400]; printf("Current Process PID: %ld,
Parent
PID:%ld \n", (long)getpid(), (long)getppid()); for(…\n", (long)getpid()); }//end else if else //
parent
{ wait(NULL); }//end else }// end for[/CODE]
Parent sends input to child
Programming
Software Development
11 Years Ago
by txhornsfan
… and pass back the information to the
parent
process, and display all numbers of the…//no creation flags NULL, //use
parent
's environment block NULL, //use
parent
's existing directory &si, …system("PAUSE"); return -1; } //
parent
will wait for the child to complete WaitForSingleObject(pi.…
Re: Parent/Child Windows References
Programming
Web Development
18 Years Ago
by noppid
… can update the database on the server and the clients
parent
page with only iframe refreshes via JS and it's… close attention to the selection of the
parent
elements and getting the handle of those
parent
objects in order to update the…
Re: Parent traversal of tree-like structure
Programming
Web Development
11 Years Ago
by LastMitch
… beans, though i could make one for the name and
parent
attributes), but I want to know if there's a…
Re: Parent/Child Windows References
Programming
Web Development
17 Years Ago
by mleneveut
The popup will still exist. It is just the
parent
window which is refreshed. So I want to store the popup reference "myRef" (var myRef = window.open(...)) before the unload of the
parent
window, and deserialize it when the window has finished refreshing, to have the control of the same popup (still opened).
Re: Parent/Child Windows References
Programming
Web Development
17 Years Ago
by digital-ether
[QUOTE=~s.o.s~;566610]> even if my
parent
window reloads, it should still be able to hold the … a cookie as it is directly dependent on the current
parent
window/document which is a javascript host object. However, if…
Parent - Child timing problem
Programming
Software Development
17 Years Ago
by edek
…puts(">In Child"); return 0; } else {/*
PARENT
*/ close(toChild[0]); close(fromChild[1]); //create streams: FILE …Parent1"); fputs(">Some text", toChildStream); //
parent
writes to child puts(">Parent2"); } char*…
Re: Parent - Child timing problem
Programming
Software Development
17 Years Ago
by Salem
… implement. Your mis-conception is that every write by the
parent
immediately causes a context switch to the child. It would… inefficient if this happened on a per character basis. The
parent
will wait if the pipe becomes full, the child will… wait if the pipe becomes empty. The
parent
MAY run if there is still room in the pipe…
Re: Parent - Child timing problem
Programming
Software Development
17 Years Ago
by edek
… implement. Your mis-conception is that every write by the
parent
immediately causes a context switch to the child. It would… inefficient if this happened on a per character basis. The
parent
will wait if the pipe becomes full, the child will… wait if the pipe becomes empty. The
parent
MAY run if there is still room in the pipe…
Parent context for swapcontext func
Programming
Software Development
16 Years Ago
by rocosd
… order to execute it,I need to know the main
parent
thread so that I can swap both. How do i… know the
parent
thread..? i want to use swapcontext([B][COLOR="Red… i fill in here in order to swap context with
parent
thread ?
Parent and Child Classes
Programming
Web Development
15 Years Ago
by culebrin
…bParentClass '<-- Here I create a reference to a
parent
class type vParentClass1 = vChildClass1 '<-- Here I point …the
parent
type reference to a child type reference [/CODE] At… type (the one that object was created) from the
parent
reference? someting like the viewstate object, it keep the…
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 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… this would be an instance where I should have a
Parent
form and it's two Children. So, the primary questions… this? What situations would best warrant the use of a
Parent
/Child Form? In advance, thanks for you input. I look…
Re: Parent/Child Windows References
Programming
Web Development
18 Years Ago
by MIGSoft
… easier. Once the child finishes its thing, it refreshes the
parent
and then closes. This web application is going to be…
Re: parent/child
Programming
Software Development
17 Years Ago
by sukhmal.sena
… error and the for loop is being run in the
parent
process. Where as in the second case: [CODE]for (i…(1); } }[/CODE] Here exec function is called in the
parent
process, so
parent
goes on to run new program ("some prog…
Re: Parent/Child Windows References
Programming
Web Development
17 Years Ago
by sprash
… the exact same java script issue where even if my
parent
window reloads, it should still be able to hold the…
Re: Parent/Child Windows References
Programming
Web Development
17 Years Ago
by ~s.o.s~
> even if my
parent
window reloads, it should still be able to hold the …
Re: Parent/Child Windows References
Programming
Web Development
17 Years Ago
by ~s.o.s~
… a cookie as it is directly dependent on the current
parent
window/document which is a javascript host object. However, if…
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