[2005] showModalDialog -
I've tried every different option for using showModalDialog, but I just cant seem to get it to work the way I need it to.
I've got 2 pages (Parent is NewUser.aspx and child is FindUser.aspx). On the parent I have a textbox (txtUserId) and a button that opens the dialog.
On the child I have a textbox (txtSearch), grid and a button to close the dialog.
I want to tell the parent's txtUserId this: GridView1.Selectedrow.Cells(3).Text
and update the txtUserID to show that.
Any ideas?
showmodaldialog and asp.net problem -
using just the window.open is fine but when using showmodaldialog i always get an invalid procedure call or argument error. This is basically what it is being set on the client side in a jscript method:
window.showModalDialog('<%=System.Configuration.ConfigurationManager.AppSetti
showmodaldialog -
Hi,
How can I center the showmodaldialog after window.onload?
or any solution?
my showmodaldialog width and height is vari depend on data in database that why I need to be change the height and width after window onload and move it into center.
--nightworlds--
[2005] WebBrowser + close ShowModalDialog automatically -
hi,
In a windows application i've got a webbrowser component that open a extranet page.
On onload event of that initial page it calls a ShowModalDialog with a User Agreement with an Ok and Cancel buttons.
I need to click in Ok button automatically, without any user interventi
[2005] showModalDialog -
I've tried every different option for using showModalDialog, but I just cant seem to get it to work the way I need it to.
I've got 2 pages (Parent is NewUser.aspx and child is FindUser.aspx). On the parent I have a textbox (txtUserId) and a button that opens the dialog.
On the ch
showModalDialog - Close -
Hi ,
I'm relatively new to ASP and was wondering if anyone could help me .... I'm using showModalDialog to display a HTML window.How can I trap when the user has used the Close button ('X') in the controlbox ( where the min,max,help,close buttons exist) to close the window ?
Than
Javascript Timer question -
I have a javascript timer that I start at the press of a button and then execute a showModalDialog to open another screen (this has to happen and it has to use the showModalDialog). The timer does not start until the screen I opened is closed. Do you know a way around this so that th
Window.showModalDialog JS and doing a post back on the modal form. -
If you pop a window up using Window.showModalDialog in JS then you cannot add code behind button clicks....
What happens it when the forms posts back to the server to do stuff it reopens a new instance of the form, and doesn't use the same one. So you end up with a modal instance of
window.showModalDialog cache problem -
Hi all,
I am using window.showModalDialog to open a dialog window and I'm having problem refreshing the changes on my dialog window as I need to clear cache in order to have my changes to be reflected on screen. Below is my calling script:-
Code:
strNewURL = strPswdURL + '?
ShowModalDialog window. -
Here's the MS reference for the JS function
and
Here's a demo page showing you the params you can pass to the JS function
Anyways, when we open a popup window we set the width and height according to what the popwindow is going to display etc.
We have it so that the OK/cancel but
[2005] WebBrowser close ModalDialog on page -
Hi,
I use VB 2005 WebBrowser control to load a web page which opens a ModalDialog.
Page:
<SCRIPT language=javascript>
window.showModalDialog('finish.php', '', 'dialogHeight=130px;');
</SCRIPT>
How can I close this modal dialog from VB? Thanks.
Internet Explorer: Overlapped I/O Operation Is in Progress -
OK, this is a javascript issue, specifically for IE. I hope someone can help.
There is one woman on our test team that randomly gets the error 'Overlapped I/O Operation Is in Progress' when the showModalDialog() function is called.
We pass (url, null, "status:no;scroll:no&q
[2005] Modal form dropdownlist postback problem!!! Help!! -
i am using a javascript to popup a modal form as below
window.showModalDialog('Default.aspx?main_model=' + main_model + '&main_serial=' + main_serial ,'','dialogHeight:450px; dialogWidth:500px; edge: Raised; status: Yes; scroll:no; resizable:no; center:yes; help:no;');
the m
my button code behind doesn execute -
Hi,
I have a button on a page that I call from default.aspx using this js function:
window.showModalDialog('EditNews.aspx?hist=0&newsID=' + newsID ,'',
'statut:no;help:no;scroll:no;dialogWidth:700px;dialogHeight:600px;');
On the page 'EditNews.aspx, I have th
modaldialog as a login page -
hello all..
i would like to solicite some ideas.
what do you guys think of modaldialogs (IE's showmodaldialog) used as as the login page to check/authenticate users ?
=( huhu im really having some glitches. please advise... :'(
Puzzling question on Matching up dates and accounting for double entries -
Hi there,
I have two worksheets in one excel file. The First Worksheet is a complete worksheet, and the second is to update the first.
First Sheet:
01/01/2005 .....more data.....
02/01/2005
03/01/2005
04/01/2005
05/01/2005
06/01/2005
07/01/2005
08/01/2005
09/01/2005
10/
focus of popup window -
Hi,
I have an asp that allow user to send email, after that, system will popup a msg and return to the previous screen. I use the following code to do so:
...
top.location.href = locationPath;
remote=window.open(theURL,winName,features);
remote.focus();
...
but I always ha
Refresh Parent Window -
Hi Guys,
I am using window.showModalDialog() function to open a popup window. When I click the save button on the popup window I call a function to insert values into a table and then close the child window which is fine.
But what I want is to refresh the parent window which isn'
Return Record for each day if any [HALF - RESOLVED] -
hi, got other problem here
i need to return detail (like OrderQuantity, SaleQuantity) for each Ordered/Saled day for Specific Product
so let say if i had ProductID "a" which got Ordered at '01-06-2005' ,'05-06-2005', '13-06-2005' and Saled at '13-06-2005', '14-06-2005'
Group by times in a hour span in Crystal Reports -
I would like to group data like the data posted below by the hour. Basicaly what I want to end up with is between 8:00 and 9:00 there were 3 records. I can count the records easily enough but I don't know how to group by each hour. Anybody have an idea for me to get started with.
St
How do I know its child window -
Hi there!
I need to perform a particular task if it is a child IE window and another task if it is a normal IE window. Atpresent I am checking the window.opener property to check whether its a child window. But if the window is a modal dialog (opened using window.ShowmodalDial
get record of current date based on specific table -
Table Name = Calendar
CalendarDate Year Workweek Workday
............... ....... ...... ......
30/12/2004 2004 12 4
31/12/2004 2004 12 5
01/01/2005 2005
Help with showModalDialog -
Hi All
I'm having trouble wrapping my head around refreshing the parent from a modal dialog.
In the RowDataBound event of my gridview, I attach this to an anchor in each row
*The showModal is commented, because I can't get the parent to refresh
Code:
Dim test As HtmlAnch
Opening page in modal window -
Dear all,
I have got a form on an asp page. I am opening the page in a modal window using showModalDialog. The target attribute of the form has been set to window.self. When I submit the form the modal dialog opens the form submission results in a new browser instance. How do I av
Examine Form routine call sequence -
Form Sequence
Download and run to see the sequence of a form as it loads. Add controls to the form and trace their operations also (You will need to modify code).
Log File of form load:
Randem Systems - FormSeq - Version 1.0.0
10/29/2005 7:57:53 PM - Start Form_Initializ
Modal Form -
Hi everyone,
Need Feedback ASAP
Can I made a Modal Form, so that the user need to close the browser before go to the Main browser.
I'm using
onBlur="Self.Focus()"
but still can go to the main page, just it not allow u to minimize.
The "showmodaldialog&quo
Using Mysql and VB.net 2005 Pro -
Hello guys i want to know some about that can i use Mysql 2005 and Vb.net 2005 together or MSSQL 2005 is more comfortable to work with vb . Which one is easy to use and develop app's with VB.net 2005
VB .NET/VB 2005 Express/ VB 2005 -
Hi.
Ive decided to move from VB6 programming and Im not really sure where to go..
Ive got a copy of VB .Net 2003, and Ive also downloaded VB 2005 Express edition, with a possible view to getting hold of Visual Studio 2005 to program VB 2005. The problem (and confusion) that I hav
[2005] Does VB2005 comes with sql server... -
Hi all, just to ask since I am installing visual studio 2005, does the software itself comes with sql sever 2005 or do i need to install/download a sql server 2005 itself?
There is this microsoft sql server 2005 in my program list but containing the configuration tools. So does that
[2005] Accessing data from a EXE -
Hi...
I have another teasing doubt with respect to EXE's.In my VS 2005 Project(VB),I trigger a EXE created in VB6 on a Button Click event.In this EXE,a label contains a value of my interest.I need this value(from the EXE) in the VS 2005 project.So,is it possible to somehow get this va
DataGridView in VB 2005 -
Hi Friends,
I am working on Client/Server app. in VB.NET using VS 2003.
I have hard time using DataGrid component.
I came to know that DataGridView component is way far better.
But its available in VS 2005 which I dont have.
VisualBasic 2005 Express edition is free bee, which
date validations with ontextchangeevent... -
hi all,
I have two textboxes txt1 and txt2...
i have to program the ontextchange event and validate the to be date i would be entering ...
suppose current system date is 1/4/2005
with above as reference my output should be somewaht like the following table....
difference between VB 2005 and VB 2005 Exp Edition -
HI,
I would like to know the differences between VB 2005 and VB 2005 Express Edition. I know that VB 2005 Express Edition is free to download but is it good enough to create .NET applications? the reason i ask is that i personally believe that there must be some lacks in the free st
VWD 2005 vs VS 2005 -
Hi,
I just wanted to know, if you had the choice which development package would you get for developing web applications? Visual Web Developer 2005 Express Edition(FREE) or Visual Studio 2005?
Does VWD Express Edition have limited functionality because it is free? I am thinking o
[2005] What VS 2005 app is recommended -
We are looking at getting either Visual Studio 2005 Standard Edition or Visual Studio 2005 Professional Edition. Are the following the only major differences?
-XML Editor Support
-SQL Server 2005 Express vs Developer
Just curious if Pro is the better way to go.
vs 2005 or vs 2003 -
Okay. My background is php and C++. 90% of what I do is web based applications.
But I want to start doing some desktop apps. At first I was going to use C++. But it was a monster! I was trying to use the win32 API but got frustrated because you basically had to code the windows and
window.showModalDiaolg not working in firefox -
I am using javascript on a vb.net program created in VS2005 to open a dialog box and get a value from the user. The code below works great in IE and Safari but NOT in Firefox. Does anyone have any idea's?
Code:
Me.btnEdit.Attributes.Add("onclick", "var strRetur
Vb6, Vb.net, Visual Basic 2005 -
I already have VB6 (SP6) and VB.NET 2003 installed on a computer. Does anyone know if I will have a problem if I install VB 2005 also or will I have to uninstall the others. I have a lot of apps done in VB6 and want to make sure that I will have no conflict with DLL's or OCX's being u
Questions about vb 2005 express -
I've been trying to get Microsoft's sql express installed on one of my pc's but can't.
Instead, I've gotten it installed with vb.net 2005 express. So, I guess I'm going to have to start using 2005. (Though I still consider myself a beginner with 2003 and haven't learned it all that
how to generate multiple report -
for example
from 11/01/2005 to 11/20/2005, with each day is a report
( 11/01/2005 - 1 report, 11/02/2005 - 1 report. .... 11/20/2005 is a report)
all of them must be shown concurrently
plz show me the way how to do that
thanks in advance
(sry if my english is too bad)
how do you refresh a parent window...SOLVED -
this is all VBScript.. client side and server side...
ok i have an ASP page that opens another page modally using
window.showModalDialog "page.asp"
now in page.asp i want to refresh the parent page that called it. and then close the popup window...
i tried
Co