473,507 Members | 8,022 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Close window

Hi,

I have a popup (child) window that it is called by a button in my main
(parent) window.
How can I set the child window for not closing before the parent window?
What do I have to do?
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca
Nov 18 '05 #1
20 1676
Ruca,

bind the OnClosing event or overwrite OnClosing of the form's base class.
With the EventArgs, use the Cancel property to prevent the form from
closing.

Klaus

"ruca" <ru***@iol.pt> schrieb im Newsbeitrag
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi,

I have a popup (child) window that it is called by a button in my main
(parent) window.
How can I set the child window for not closing before the parent window?
What do I have to do?
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca

Nov 18 '05 #2
Hi

that event don't appear in my list of page events.
What do I have to do?
I have another question. How can I open only one popup at a time, ie, when I
click to open one popup, if another is open this one closes.
I have a funtion but only works if it is called by an link and not a button.

I have this in javascript:
--------------------- begin java code--------------------------
var popup = null;

//destroy popup if aleady opened
function DestroyWnd ()
{
// close the current window
if(popup != null)
{
popup.close();
popup = null;
}
}

function pick(Src)
{
if((popup == null) || popup.closed)
{

var url = "xpto.aspx?srcA=" + Src
popup = window.open(url, "_blank", "height=200, width=200, left=250,
top=200, " +
"location=no, menubar=no, resizable=no, " +
"scrollbars=no, titlebar=no, toolbar=no", true);
}
else
{
DestroyWnd();
pick(Src);
}
}
--------------------- end java code--------------------------
In my page_load i Have this
--------------------- begin vb code--------------------------

Sub Page_Load(...)
...
Button1.Attributes.Add("OnClick","pick('textbox1') ;")
...
End Sub

--------------------- end vb code--------------------------
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca
Nov 18 '05 #3
Cor
Hi Ruca,

When you make a webform in his self container, the page is disconnected as
soon as you have showed it.

There are posibilities to prevent that from closing, I hope you are not
making such an terrible webform.

When you want what you ask, why than not just use a large label on your
form in a very different colour, the only problem is that the user cannot
move it. (Although with some Javascript and the style possitition absolute
that should be possible too)

Just my thought,

Cor

Nov 18 '05 #4
Are you talking WinForms or ASP.NET - because that's different?
If ASP.NET, you're in the wrong group.
Make sure to not crosspost the next time.

Klaus

"Klaus Löffelmann" <fo***********@loeffelmann.de> schrieb im Newsbeitrag
news:%2***************@TK2MSFTNGP09.phx.gbl...
Ruca,

bind the OnClosing event or overwrite OnClosing of the form's base class.
With the EventArgs, use the Cancel property to prevent the form from
closing.

Klaus

"ruca" <ru***@iol.pt> schrieb im Newsbeitrag
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi,

I have a popup (child) window that it is called by a button in my main
(parent) window.
How can I set the child window for not closing before the parent window?
What do I have to do?
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca


Nov 18 '05 #5
Cor
Hi Klaus,

Why is this the wrong group for VB.net development for webapplications, that
is normally done here?

There is no other international newsgroup for that.

I know that this is not as in the German newsgroups, but there is a
newsgroup entwickler.dotnet.asp)

I hope this makes it more clear?

Cor
Nov 18 '05 #6
Cor
Hi Klaus,

Rucca does vb.net webforms (I know this) but he has that too in the footer
from his message.

Cor
Nov 18 '05 #7
Cor
Hi Claus,

I saw I forgot to send this message (pusch the send button) an hour ago.

Sorry

:-)

Cor
Nov 18 '05 #8
Cor,

you're absolutely right. Sorry for that.
I really thought, there was not only
microsoft.public.dotnet.framework.asp.net, but that group also seperated in
VB and C#.
(Why isn't that so, by the way, would make sense, wouldn't it?)

Klaus

"Cor" <no*@non.com> schrieb im Newsbeitrag
news:eF*************@TK2MSFTNGP11.phx.gbl...
Hi Klaus,

Why is this the wrong group for VB.net development for webapplications, that is normally done here?

There is no other international newsgroup for that.

I know that this is not as in the German newsgroups, but there is a
newsgroup entwickler.dotnet.asp)

I hope this makes it more clear?

Cor

Nov 18 '05 #9
Cor,

funny, the whole thread is messed up... :-)
I just noticed, that I actually answered myself in the first branch.
I guess, I'm confused today. Should get more sleep.

Klaus

"Cor" <no*@non.com> schrieb im Newsbeitrag
news:ej**************@TK2MSFTNGP09.phx.gbl...
Hi Claus,

I saw I forgot to send this message (pusch the send button) an hour ago.

Sorry

:-)

Cor

Nov 18 '05 #10
Thank you guys for your help.
I only was enable to see all your messages now, and I must say that this is
the most funny thread that I ever participate.
Sorry I'm posting this message in a group of work, but I can't resist. :)
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca

"ruca" <ru***@iol.pt> escreveu na mensagem
news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi,

I have a popup (child) window that it is called by a button in my main
(parent) window.
How can I set the child window for not closing before the parent window?
What do I have to do?
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca

Nov 18 '05 #11
Sorry Cor, but maybe I don't understand what you trying to say me.

My popup window have some fields (but it is not terrible, heheh) that when
closed return to main window if user change one of them.
I can't understand whne you says:
"...why than not just use a large label on your form in a very different
colour, the only problem is that the user cannot move it."

Sorry not understand the idea, but I'll glad if you explain to me again.

Thank you very much.
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca
"Cor" <no*@non.com> escreveu na mensagem
news:eQ**************@tk2msftngp13.phx.gbl...
Hi Ruca,

When you make a webform in his self container, the page is disconnected as
soon as you have showed it.

There are posibilities to prevent that from closing, I hope you are not
making such an terrible webform.

When you want what you ask, why than not just use a large label on your
form in a very different colour, the only problem is that the user cannot
move it. (Although with some Javascript and the style possitition absolute
that should be possible too)

Just my thought,

Cor

Nov 18 '05 #12
Cor
Hi Ruca,

I can be wrong, but when I see that code is what I think happening that you
open an assynchonous window in another window.

You have in my opinion no control anymore over that window.

Therefore I said, can you not better create a label, and now I know there
are fields in it, create a panel in your main form with the information you
want. That is than full controlled from the Server side. That panel can you
show and hide any time you want. The fields on it you can even create
dynamicly.

However just my thought,

Cor
Nov 18 '05 #13
Ok, I already understand your point.
But one moe questio if you know How to answer:

If I have a link (not link button) calling the popup window, I can have only
and only one popup window at a time.
With the exactly the same code in VB and JavaScript, if I have a button or
linkbutton the same code don't work and opens so many popup's as the clicks
that I do.
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca

"Cor" <no*@non.com> escreveu na mensagem
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hi Ruca,

I can be wrong, but when I see that code is what I think happening that you open an assynchonous window in another window.

You have in my opinion no control anymore over that window.

Therefore I said, can you not better create a label, and now I know there
are fields in it, create a panel in your main form with the information you want. That is than full controlled from the Server side. That panel can you show and hide any time you want. The fields on it you can even create
dynamicly.

However just my thought,

Cor

Nov 18 '05 #14
Ok, I already understand your point.
But one moe questio if you know How to answer:

If I have a link (not link button) calling the popup window, I can have only
and only one popup window at a time.
With the exactly the same code in VB and JavaScript, if I have a button or
linkbutton the same code don't work and opens so many popup's as the clicks
that I do.
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca

"Cor" <no*@non.com> escreveu na mensagem
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hi Ruca,

I can be wrong, but when I see that code is what I think happening that you open an assynchonous window in another window.

You have in my opinion no control anymore over that window.

Therefore I said, can you not better create a label, and now I know there
are fields in it, create a panel in your main form with the information you want. That is than full controlled from the Server side. That panel can you show and hide any time you want. The fields on it you can even create
dynamicly.

However just my thought,

Cor

Nov 18 '05 #15
Cor
Hi Ruca,

Can you not disable that A object in its onclick event?

Cor
Nov 18 '05 #16
Cor
Hi Ruca,

Can you not disable that A object in its onclick event?

Cor
Nov 18 '05 #17
How come?
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca

"Cor" <no*@non.com> escreveu na mensagem
news:uL**************@TK2MSFTNGP12.phx.gbl...
Hi Ruca,

Can you not disable that A object in its onclick event?

Cor

Nov 18 '05 #18
How come?
--
Programming ASP.NET with VB.NET
Thank's (if you try to help me)
Hope this help you (if I try to help you)
ruca

"Cor" <no*@non.com> escreveu na mensagem
news:uL**************@TK2MSFTNGP12.phx.gbl...
Hi Ruca,

Can you not disable that A object in its onclick event?

Cor

Nov 18 '05 #19
Maybe to cryptic

A link is normaly an A object if another word for it is an HREF.

I thought you did only want to open your window once.

So when you try to write a piece of java in the onclick of that A object to
disable it, I thought it would not open that window anymore.

Not that I did do it ever in this way, therefore was it more as a question.

:-)

Cor
Nov 18 '05 #20
Maybe to cryptic

A link is normaly an A object if another word for it is an HREF.

I thought you did only want to open your window once.

So when you try to write a piece of java in the onclick of that A object to
disable it, I thought it would not open that window anymore.

Not that I did do it ever in this way, therefore was it more as a question.

:-)

Cor
Nov 18 '05 #21

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
5146
by: J P Singh | last post by:
Hi Guys Wonder if someone can help me with this. I have a form where a user clicks a button which gives them a pop up windows to allow them to add the data. The user adds the data and click...
4
22055
by: John H. | last post by:
Hello I have some trouble in closing a window, Here is the problem: I develop a asp.net website use client side valiation <asp:CustomValidator id="CustomValidator1"...
9
3226
by: Graham | last post by:
What I currently have is a page that opens another browser at 800x600, once that is loaded I would like to close the orginal page down while keeping the page that it has just opened open (To make...
6
2727
by: marcelf3 | last post by:
Hello.. This page opens a window with some information, but everytime the user changes a field in the parent window, the child window needs to be closed. These 2 functions were supposed to do the...
4
34831
by: GrantS | last post by:
I am having a problem closing a popup window opened modally. When I try to close the window (when the user hits save button and the data has been processed), the Popup window opens as a full screen...
5
3069
by: lindanr | last post by:
In ASP.NET 2005 I have an onblur="window.close()" javascript event in the <body> tag. When I click on the window's scrollbar, the window closes. The same code works fine in ASP.NET 2003. Any...
9
4646
by: Stan B | last post by:
I create a popup window by calling window.showModalDialog Popup window has Ok button with this code attached: === string Script = "<script language=JavaScript>" + "{" + "window.close();" +...
7
5791
by: Toccoa | last post by:
After considerable googling - I mean searching with Google(r) - I could not find javascript on a button or <a href=... to close a window in the latest versions of IE and FireFox. There seemed...
2
6740
by: kurt sune | last post by:
Hello, I have a weird problem, I hope someone can explain this for me. I have a webpage using masterpage. In it I create a popup window using this code: Dim js As String = "<script...
6
3230
by: =?Utf-8?B?UGF1bA==?= | last post by:
I am looking for a java script to close a web form that I can attatch to a button click event. I am using vs2005, c#. Thanks -- Paul G Software engineer.
0
7220
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7308
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7371
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7023
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5617
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3188
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1534
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
757
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
410
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.