modal

Modal Windows Forms in Office

I have a modal Windows form created in VB.NET that I am using for a PowerPoint add-in (this issue would also apply to an Excel add-in, I suspect). The form lets the user select shapes on the current slide from a ListView object. With each selection, the corresponding shape should be selected on the current slide. I know that my code i...

How to dismiss a modal view as soon as it's displayed (without user interaction)

Hello everybody, I apologize if my question may result trivial or obscure. I am using a view presented modally. In order to achieve a little 'scenographic' animation effect, based on the value of a parameter, I wish to reach the following behavior: If value is 0, the view presented modally stays on display and allows user actions until ...

Issue Implementing Colorbox Correctly in IE (all versions)

I've been pulling my hair out (and going way over allotted hours) to try and figure out why Colorbox isn't working properly on the following page: [link removed] I've set up a Colorbox test link on the very bottom right that says "Web Design By All Web Cafe", which should open up a small logo image. In Firefox, Safari, etc the modal be...

How can I dismiss a cameraviewcontroller on iPhone sdk?

Hi everyone! I would like to dismiss the camera view, while displaying a modal view, so this would be faster because the camera doesn't display anything. I have set up my cameracontroller this way: self.cameraController = [[[UIImagePickerController alloc] init] autorelease]; self.cameraController.sourceType = UIImagePickerControllerSou...

How can I pass object to Eric Martin's OSX modal?

From my jsp I have something like <table> <tr> <td>${event.name}</td> <td>${event.type}</td> <td>${event.dateString}</td> <td>${event.virtualMachine.name}</td> <td><a href="#" class="osx">View event</a></td> </tr> </table> I want to pass the event object to the modal content such that It will display more informati...

Modal Registration Box using ExpressionEnine and jQuery

I'd like to create a modal style registration/login box for my ExpressionEngine site. What's the best way to handle registration on a modal box? Should I call a registration page using an iframe. Are there security concerns? ...

WPF: Dialog shows *under* the main window. How to get it to rise to the top?

I use this code to produce a print-preview window. using (XpsDocument doc = new XpsDocument(fileName, FileAccess.Read)) { FixedDocumentSequence fds = doc.GetFixedDocumentSequence(); using (var reader = new System.Xml.XmlTextReader(new StringReader(xaml))) { Window preview = System.Windows.Markup.XamlReader.Load(re...

jquery modal dialog onclick?

Hello. I want this: http://jqueryui.com/demos/dialog/#modal-message to happend when you click on ClickMe. how to do this? <script type="text/javascript"> $(document).ready(function() { $('div.thedialog').dialog({ autoOpen: false }) $('#thelink').click(function(){ $('div.thedialog').dialog('open'); }); } </script> </head> <body> ...

jQuery modal plus drag and drop

I am using jQuery to build a magentic refrigerator game where you create sentences from the word bank. I have a list of 90+ words. I would like for the user to be able to open the word bank in a draggable modal and then drag each word from the modal to the main content div. The issue I am having is that I can only keep the words insid...

Force wmode on flash content with javascript

Hello there. I'm using a modal window on a client's site where we have no access to the content. The problem is that he has some flash on the page and the wmode for these is not set to transparent. Is there a possibility to force their flash from our javascript to have this parameter added? Thanks ...

SYNCRHONOUS WebServices AND Modal Dialogs!

Hi again, the question is.... The application maybe in Silverligth. It's possible to implement SYNChonous WebService call? I try to realize any application RIA, with Grids, Edits and using WebServices in SL, but I do not understand how to make it's possible without a SYNC calls. And I also need to use MODAL DIALOGS for some tasks. I...

How to make a modeless form "block"?

I have an application that displays two forms/windows at the same time. The first one is shown with the Form.Show() method, so it is modeless and floats off to one side. The second form is shown with Form.ShowDialog(), so it is modal, and it blocks. The fact that it blocks is important, because unlike the first form (which is basic...

How do you create a waiting dialog in WIX?

Hi I'm trying to create a dialog to display whilst the installer is checking an SQL server exists. I've used the following code: <Control Id="Next" Type="PushButton" X="244" Y="243" Width="56" Height="17" Text="!(loc.WixUINext)"> <!--Show Waiting dialog--> <Publish Property="SQLServerChecked" Value="0">1</Publish> <Publis...

From where can i get Light Window 2.0 or similar?

Hi, After seeing tons of web site using modal window with a nice expansion animation i wanted to use it also. I googled it and found that many people recommend to use Light Window 2.0 For example http://www.ajaxdaddy.com/lightwindow.html but all sites linked to http://stickmanlabs.com/ are broken and i can't get Light window 2.0 Is an...

Ho to hide a modal dialog without returning from .ShowDialog?

I have an application in vb.net that starts with a sub function do some things and decide if it shows itself or not. When it shows itself it do so by invoking dialog.ShowDialog(). When dialog.ShowDialog returns the application does some cleaning and end. I'd like to find a way to temporarily hide the dialog (send it to the system tray)...

JSP Modal Dialog

Hi, I need to get the file name (set path) in a text box. So, I need to POP UP the file browser window and then the file I select should be visible in the text box and send this value to the backend bean. How can I do this ? ...

Modal popup extender rendering

Hi, I have a modal popup extender in my page. But after rendering if I look at "view source"(right click on browser and see), I' m not able to see the html part equivalent to the modal popup extender. Since that I'm not able to access the elements in popup using getElementById()...in client side. Please help :( ...

Dojo Dijit Dialog relative position. is it possible?

Hello Friends, I want to position Dojo's Dijit Dialog relative to one of my html element. is it Possible? If yes. How? currently it always shows dialog in middle of viewport. Can any one help me regarding the matter? Thanks. amar4kintu ...

Form usable even when a modal dialog is above

I have a Dialog A and I want it to load a second dialog B which is modeless and stays along side A throughout. Dialog A may then launch a modal dialog C. But when C is present I want B to be usable. I would have fixed this with pretranslate message in A in a C++ application but what is the approach in C#. ...

Keyboard Animation Issues When Calling becomeFirstResponder within a Modal View Controller

I've been having some issues with calling -becomeFirstResponder on a UITextField contained with a view controller that is presented modally. I call this method in the modal view controller's -viewDidLoad method so that the keyboard is immediately displayed. What I expected is for both the keyboard and the modal view controller to animate...