popup

Visual Studio Express 2012 annoying pop-up dialog on thrown exception

做~自己de王妃 提交于 2019-12-05 04:40:47
Problem description: Whenever an exception is thrown and not catched a dialog pops up. I want Visual Studio Express 2012 just to break and stop grabbing all my input with this modal dialog window. Example of the dialog: Wanted solution: VS 2010 does not show this annoying pop-up window but something called exception assistant. How an I can get the same type of break on exceptions in 2012 as in 2010? Even if that's not possible I really want the pop-up to be gone while keeping the break. Things I've tried to solve this problem: Search for a solution on both Google and here on StackOverflow

FB.ui and setting popup size

橙三吉。 提交于 2019-12-05 03:13:51
问题 I am using FB.ui with the display parameter set to popup. When the method is 'stream.publish', it autoresizes when the content is loaded. However, when using 'fbml.dialog' (in order to display a multi-friend selector) it shows a size that I'm not able to change (and the content is displayed cropped). I have tried with the following approaches, with no luck: FB.ui({ method: 'fbml.dialog', size: {width: 800, height: 500}, ... FB.ui({ method: 'fbml.dialog', width: 800, height: 500, ... Also I've

How to open JQuery UI popup onclick

六月ゝ 毕业季﹏ 提交于 2019-12-05 03:08:52
I have simple html page: <html> <head> <title></title> </head> <body> <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/redmond/jquery-ui.css" rel="stylesheet" type="text/css"/> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#OpenDialog").click(function () { $("#dialog").dialog({modal: true, height: 590, width: 1005 }); }); }); </script> <a id="#OpenDialog" href="#">Click here to

ContentDialog Windows 10 Mobile XAML - FullScreen - Padding

和自甴很熟 提交于 2019-12-05 02:50:55
问题 I put an ContentDialog in my project to use for Login Popup on Windows 10. When I run this project on mobile, ContentDialog not shown in full screen and have a minimal padding around this element.On keyboard is visible (on focus element textbox for example) exist margin between keyboard and content dialog Have any solution to how this on FullScreen? I set the property "FullSizeDesired" true, mas the problem is the same? Someone help to remove this: - Padding, - Full Screen My code are:

ToolTip versus Popup (WPF control)

北慕城南 提交于 2019-12-05 02:47:04
What are the main differences between these WPF controls? And when I should use a ToolTip instead of Popup ? A ToolTip is a small pop-up window that appears when a user pauses the mouse pointer over an element; the Popup control provides a way to display content in a separate window that floats over the current application window relative to a designated element or screen coordinate. A Popup does not automatically open when the mouse pointer moves over its parent object. If you want a Popup to automatically open, use the ToolTip or ToolTipService class. For more information see: ToolTip

WPF popup with arrow head style

爷,独闯天下 提交于 2019-12-05 01:16:05
问题 I would like to implement a popup style that looks like the following design: The gray square represents the UIElement that shows the popup when it is clicked. The popup style is just a border (the easy part) with an arrow head that points to the center of the target element (the hard part). Also the aligment is important, when a control is placed on the right part of the window, the popup should be aligned to the right, otherwise to the left. Is there an example or some documentation that

Popup menu on click of a button in action Bar

百般思念 提交于 2019-12-05 00:34:32
问题 I am trying to implement an action bar in which one of the buttons on click shows a popup menu. Here's the menu. XML (menu items in the action bar) <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/search" android:icon="@drawable/ic_action_search" android:orderInCategory="0" android:showAsAction="always" android:title="@string/menu_search"/> <item android:id="@+id/refresh" android:icon="@drawable/ic_action_refresh" android:orderInCategory="1" android

Prevent JQuery Mobile from closing a popup when user taps outside of it

佐手、 提交于 2019-12-04 23:03:33
I'm using JQuery Mobile 1.2.0 alpha 1. Currently, when I open a popup and tap outside of it anywhere on the screen the popup is being closed. I was wondering if there's any JQuery Mobile attribute I have missed which can be set and prevent closing the popup upon outside-tap? (modal popup) (The documentation for popups can be found here ) EDIT: I had an idea of solving this but still can't implement it to work: When a JQM popup show up theres a div which covers all of the screen with class of ui-popup-screen. I thought somehow to give it a large z-index and unbind all click/tap function from it

Redirect to a new tab within javascript file

廉价感情. 提交于 2019-12-04 22:37:40
I have code that sets: top.location.href = [someurl] But I want it to open up in a new tab. Is there anyway to have the above code include: target="_blank" ? Use the method window.open(url, target) to open a new window (it depends on the browser or the user's settings whether the URL is opened in a new window or tab): window.open('http://stackoverflow.com', '_blank'); For more information about window.open() , read the documentation at w3schools . Please note: Randomly opening a new window (or tab) isn't allowed in most browsers, because it is then treated as an "unwanted popup". If you're

I want to display a popup menu if a user clicks on my Imageview. Either i get an IllegalStateException or the Code won't Compile

断了今生、忘了曾经 提交于 2019-12-04 21:09:48
I want to display a popup menu if a user clicks on my Imageview . Either i get an IllegalStateException or the Code won't Compile. For this I am getting a NullPointerException on the line where I've declared Imageview . But when I implement its methods the code won't compile. onCreateOptions isn't working either. Please rectify the error. Thanks in advance @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Toolbar toolbar = (Toolbar) findViewById(R.id.my_toolbar); setSupportActionBar(toolbar); // Set the content of the activity to use the