I located the following code to create a popup window in VBScript. It's kind of simple I think.
Sub cmdTest_Click
Set oPopup = Window.createPopup
Set oPopBody = oPopup.Document.Body
oPopBody.Style.Backgroundcolor = "lightyellow"
oPopBody.InnerHTML = "click outside <B>popup</B> to close."
call oPopup.Show(200,200,250,50, document.body)
End Sub
I need to create a popup window with a MSHFlexGrid and populate it with a recordset. From that I need to be able to add the selected row to another MSHFlexGrid on the page behind the popup. Also several items may need to be added and prices totaled up from the recordset. Any ideas?
Rob
Just my $.02.
Sub cmdTest_Click
Set oPopup = Window.createPopup
Set oPopBody = oPopup.Document.Body
oPopBody.Style.Backgroundcolor = "lightyellow"
oPopBody.InnerHTML = "click outside <B>popup</B> to close."
call oPopup.Show(200,200,250,50, document.body)
End Sub
I need to create a popup window with a MSHFlexGrid and populate it with a recordset. From that I need to be able to add the selected row to another MSHFlexGrid on the page behind the popup. Also several items may need to be added and prices totaled up from the recordset. Any ideas?
Rob
Just my $.02.