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 32 2715
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
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
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
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
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
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
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
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
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
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
Hi Klaus,
Rucca does vb.net webforms (I know this) but he has that too in the footer
from his message.
Cor
Hi Klaus,
Rucca does vb.net webforms (I know this) but he has that too in the footer
from his message.
Cor
Hi Claus,
I saw I forgot to send this message (pusch the send button) an hour ago.
Sorry
:-)
Cor
Hi Claus,
I saw I forgot to send this message (pusch the send button) an hour ago.
Sorry
:-)
Cor
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
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
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
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
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
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
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
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
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
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
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
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
Hi Ruca,
Can you not disable that A object in its onclick event?
Cor
Hi Ruca,
Can you not disable that A object in its onclick event?
Cor
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
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
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
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 This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
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...
|
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"...
|
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...
|
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...
|
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...
|
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...
|
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();" +...
|
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...
|
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...
|
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.
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |