Search Result
Collapse
13 results in 0.0041 seconds.
Keywords
Members
Tags
-
How to introduce hierarchy in a xml parser using XMLReader?
I want to introduce hierarchy among elements while showing the output i.e. parent of every element if it exists? as of now my code parses every element without hierarchy among nested elemets. -
Type Cast Pointer, Child and Parent Interaction
Hello there, until now i am still confused about this one, i mean what for we cast the child class to parent class?.. since child class can access all of the member of the parent class, yeah since its has public modifier..
And also, we can cast the parent as a child using dynamic_cast right?.. but what for?..
I still relly confused about pointer interaction, why we need access the pointer thingy..
Thx... -
Simple Parent Child Form Switching
This article is aimed at beginners, so don't judge me on the quality please.
I know many of you are there sitting at your computers looking at the title going 'what is he on about?'. I would too.
Over the past few weeks, many of the forums I've browsed have nothing on switching between a 'parent' and a 'child' form other than some really complex 'mumbo jumbo'. I am here to show a simple solution.
Also... -
How do I display data linked by a data relation in different text boxes?
I have a data set with a parent child relationship between a patient table and an insurance table. There can be up to 4 insurances for each patient. I want to display them in 4 separate panels of a vb.net form. So if a patient had 2 insurances, then txtName1.text on panel 1 would have the company name of the first insurance, txtName2.text on panel 2 would hold the company name of the second insurance, and so on.
How do I display only... -
Refering to an array in a parent form?
Hello! I would like to retreive data from an array in a parent form. I think it's best explained by showing an example...
Parent Form
Child FormCode:Option Compare Database Dim ChildNum(1 To 255) As Integer ... 'Inside a sub I have a loop with this inside it... ChildNum(ii) = Nz(rstPODetails!RecordId)
Can anyone see where...Code:MsgBox Me.Parent.ChildNum(Me.CurrentRecord)
-
How to detect the window close event.
I have an parent-child window. I need to refresh the parent window when the child window is closed. I had triedWhen i navigate to different page in the child window , each and every time the parent window is refreshed. I want to refresh it only when the child window is closed. How can i do that?Code:<body onunload="window.opener.location.reload();">
-
CURL with JS Query
Hello,
I'm currently trying to query an HTML page to extract data into a DB via the CURL command. The page containing the data is a frame within a 'parent' window. The parent window expects a number of parameters (which it uses as a form of login), then the 'child' window is displayed.
Code of the 'parent window'...
...Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html>
-
Child and popup window problem!
Hey buddy,
I have three pages 1)index.php 2)login.php 3)client.php.
When I click on "login" on index.php page, it opens a popup.
When I submit that login page at that time I want to redirect to client.php.
The problem arise here, when the submit is successful in login.php (popup window), my client.php page appears inside popup window.
There may be simple solution... -
Multiple mdi Children
I have a main window (form) wich is an mdi container.
i can open one form which mdi parent is this main window like this:
NewDistribution distr = new NewDistribution ();
distr.MdiParent = this;
distr.Show();
in this New Distribution i have a new button wich opens another form... how do i set the second form to be opened in the main window's mdi container?
... -
Accessing grand parent function when parent window is closed.
Is this possible?
I am trying to access function from grand parent window (the main window) in my child popup window but the parent window is closed in this case.
a.jsp --> grand parent window (main browser window)
b.jsp--> parent window (pop up window)
c.jsp--> child window (pop up window)
I need to call a function from a.jsp in c.jsp when b.jsp is closed.
Than... -
Problem with path between parent and child html pages
HI. I have a html page 'parent'. I have loaded an html page as 'child' through Object tag from parent html page.
Parent html page has a function callF()
I am trying to call callF() from child html page.
So, the code in the child html page would be:
parent.callF();
While Google Chrome, Mozilla Firefox process the above code smoothly, Internet Explorer 6 & 7 gives error -
stopping the child control from exceeding parent div element
i have a div element with a child control in it which gets populated with data
depending on data teh control expands and also the div. if i set the div width the data overflows in the extended control
i need to use clip property
i tried setting it but i am not getting teh result
clip:rect(0 30 30 0);
how do i set the parent and child element -
Sending events to parent form even when a dialogue is open
Hello guys
I have some custom events in my application i.e. KeyPress such as full screen for pressing F11 and so on. Currently this works fine but only when the main form which is listening tot he KayPress events. I would like this to work even when a Dialogue window is open from this form for example I am opening a child window with Show.Dialogue() . This is blocking the events from going to the parent form.
Can someone...