popup

How do I disable system pop-ups in Windows CE 6?

What do I have to do to disable all system pop-ups in WinCE 6 R2? I read Mike Hall's post about Kiosk mode [1] but that's not going to work for us because we still want the standard graphical Explorer shell. We plan on hiding the taskbar and start menu and clearing icons off the desktop but need an easy way to make sure that no pop-ups...

Selenium - Pop Up window

Hi , I am testing the Router UI using selenium. I am using cisco routers. I am pinging a website and the router opens a pop up window showing the Ping statistics. The selenium ide is recording the popup window as " Ping table " but when i am running it the ide shows an error. I want to verify and validate the data in the pop up window ...

How to make a simple popup box in Visual C#?

When I click a button, I want a box to popup on the screen and display a simple message. Nothing fancy really. How would I do that? ...

JavaScript PopUp - Link target from Popup = other Window of browser

Hello, i open a html page with a js popup <script language="javascript" type="text/javascript"> <!-- function popitup(url) { newwindow=window.open(url,'foobar','height=575,width=950'); if (window.focus) {newwindow.focus()} return false; } // --> </script> <a href="index.php" onclick="return popitup('foobar.html')">Link to...

Javascript OnClick Event - 2 functions

Hello, i used a onclick event for this js function: window.opener.location.href =foobar; After loading foobar in the Parent window this window should close. It is a popup (opended with JS) ...

Opacity is not getting applied in WPF PopupControl.

Popup popUpControl = new Popup(); popUpControl.PlacementTarget = this; popUpControl.StaysOpen = true; popUpControl.Child = new MyUserControl(); /// my user control popUpControl.Opacity = 0.5; // this code has no effect in the appearance of the popup popUpControl.IsOpen = true; how to do ? Thanks in advance. ...

send a net send type popup to all users 1 day a week on my network

Hi, I'm looking to send a net send type message popup to all users in my network 1 day week every week. Can I do this via Windows somwhow or would I need a script running somewhere? Thanks, ...

How can I disable and gray the top level menu item using MFC

I have a dialog application in which I want to have clickable menu items at the top of the dialog. These items do not show a drop down menu but actually run the associated commands. I did this by setting Popup=False in the dialogs properties and assigning a message-id but my problem is not having the ability to disable the item properl...

Can you access properties/methods of parent window from the child?

if I create a popup in JavaScript I can access its properties: var myWin = window.open("test.htm"); myWin.property1; but my question is, can I access properties/methods of parent window from the child? ...

ModalBox display only once sitewide

I am using the script called ModalBox. I want to display the ModalBox on page load the first time a visitor reaches my site. Every time after the first visit the modalbox should not display again. How can I do this? I have set up a testing page. Please Visit this page to view my code. Testing Site The code that I am using to pop up the...

how to print just the popup window

Using our custom Drupal module to display tabular information pulled via another server's view (so it's not saved to drupal db). Users click a line item in this table, which causes a shadowboxed popup modal window containing that line item's details. We are using the popups api function call to achieve this: popups_add_popups() Unfor...

Open id authentication in the same page

I have a requirement where the login page opens up the main page in a popup, this is how I handled it in normal authentication: <http> ... <form-login login-page="/Login.html" authentication-failure-url="/LoginHandler.jsp" always-use-default-target="false" default-target-url="/LoginHandler.jsp"/> ... </http> Login page creates an aja...

The proper way to handle popup closing

I'm looking for close event for popup. I've found one for XUL, but I need it for HTML. Popup has closed property. >>> var popup = open('http://example.com/', 'popup', 'height=400,width=500'); >>> popup.closed false Well, I can check it once at half second. function open_popup() { var popup = open('http://example.com/', 'popup', 'h...

Run multiple instances of a Popup in ASP.NET

I have done a sticky note application in asp.net. I have a parent window with a button, When I click on the button the sticky notes is opened as popup. I am using javascript window.open to open the popup. But I can run only one instance at a time. How I can I run multiple instances of the window in my application? ...

Open and Close Popup windows without Javascript in ASP.NET

How can I Open and Close Popup windows without Javascript in ASP.NET? ...

WPF: PopUp on MouseOver of a ComboBoxItem

Does anyone know of an example of how to display a PopUp on MouseOver of a ComboBoxItem? TIA EDIT: I know how to create, style and position the PopUp but not how to display it! I may be retired. ...

how do i make that dang wpf popup go away?

when i use a popup, it seems to hang around. in the code below i attach a popup to a textBox using by overriding the control template, and make the popup appear when the TextBox has focus. When you tab to the next on screen element the popup goes away, but if you just alt-tab to a different application the popup stays there in the foregr...

modern windowless popups

Hello all, I have seen for some time popups without window and it looks like a custom made png file as popup. many times there is a big close cross in the upper right corner. Can someone tell me please how this is called and in what kind of code this is made? ...

Problem with Pop-up Windows using Selenium

Hello, I'm new to the testing world, so my question might seem a lil' bit too naive and stupid. At risk of looking/sounding stupid, my question is this: i've been trying to test the contents in a pop up window on my company's webapp. i've figured out how to detect the pop up window for now, but i can't get selenium to 'click' on the li...

WPF: Eating a click on a ComboBoxItem

I have a ComboBoxItem [Line Color] that displays a PopUp on IsHighlighted and I want to eat the click on the ComboBoxItem. I know how to do it programmatically but I was wondering if there's any way to accomplish this in XAML? ...