dialog

Loading jQuery Dialog changes Browser viewport Focus

I am loading a jQuery UI window a few scrolls down from the top of the page. When it opens the Browser resets it's position to the top of the page. If it helps just prior to the dialog loading I am inserting some HTML into the page (html for the dialog). Does anyone know how to stop this? Edit The answer on the question guessed what...

Adding a tab to the "Add Reference" dialog in VS?

Been working on a personal add-in for VS 2008 and have been researching automation and control. I see there are lots of examples for adding a .dll reference to the registry so they show in the ".NET" tab in the Add Reference dialog. What I would like to do, however, is add a new tab to the reference dialog with some functionality therei...

Non-blocking Dialog box in Applescript

Hi All, I have to write a small script to deploy a patch for our Application. The patch will replace a couple of files in the application.I decided to depploy the patch using Applescript. The files to be copied are quite large and it takes some time for the files to be copied. I wanted to know if there is any way I can get a dialog box...

Modal Dialog Box

Hi All, I have created two forms in my Windows Application. One Form acts as a Form and the other form acts as a MODAL DIALOG BOX. The Form Dialog Box contains a button and One textBox. When this button is clicked the MODAL DIALOGBOX should be displayed. This dialog box also contains One Textbox and Two Buttons(Ok and Cancel). Now wh...

jQuery dialog + ASP.NET buttons - strange behaviour

Hi Having this div: <div id="advSearchDialog" style="visibility:hidden;"> <xx:search ID="searchUC" runat="server" /> </div> And a button: <input type="button" id="btnAdvSearch" value="Search" /> I turn it into a jQuery dialog, where the button opens the dialog: $(document).ready(function() { $('#advSearchDialog').dialog({...

Full-screen window sizing in screen (pixel) units with VS6 C++ GUI editor, MFC?

I am trying to create a full-screen control panel window with many controls: buttons, sliders, list boxes, etc. I can create a dialog window and add controls to it, but everything is scaled in dialog units. I just want to create a window in the GUI editor that is scaled in pixels, not derived units like dialog units. I can sort of...

What is the best practice for form and dialog placement on single and multi-monitor systems?

I'm having a sort out of my (Delphi) applications and I been visiting the floating form size and location persistence which seems to be increasingly important with larger screen real-estate and multi-monitors. Clearly it is often desireable to have a user's form reopen in the same place as they closed it, but maybe not always, for exampl...

Android: how to display folder content in a dialog

Hi, I would like to create a dialog with the list of files from selected folder. Does anyone know about any good example available on the web or just briefly describe how to solve this task? Thanks! ...

Should loading/startup dialogs be locked on top?

Introduction I have been so annoyed by applications that have a startup dialog which is Always on Top configured. By start dialog I mean the annoying box that tells you what program you just opened (and probably opened on purpose so useless information), who the program is registered to (most likely you, more uselessness), and some oth...

Conditions of Use dialog for Windows logins

I need to design a "Conditions of Use" dialog that is presented to users after they logon to Windows XP. It must not allow the user to proceed until they check an "I agree" box. It must not be possible to shut it using Task Manager or any other method. And it should be fullscreen and modal. The "I agree" will remain checked automatically...

WPF - Truly modal window possible?

Or would I have to do something like create a windows form and host the xaml inside it? Trying to get as consistent a look and feel as I can. If I can only do the latter, how do I achieve that? ...

Dialog position

I am trying to change the left position for a dialog box created with jQuery, but it does not seems to recognize the new value; here is my code: $('#settype_dialog').dialog({ autoOpen: true, width: 200, height: 200, show: 'bounce', hide: 'puff' } ); $('#settype_di...

QT Signal to specific object's slot

Hello, I would like to know which of the following is the proper way of doing thing with signal/slot in QT. I need a way to have multiple instance of a Dialog, i.e: A and B. And I need to tell A to print "A" and B to print "B" from a different thread. So I believe I need something like either: OPTION 1) A->print("A"); and B->print("B"...

Eclipse CDT, creating dialogs.

Hi. I have installed (on Linux) and configured CDT successfully. I need to create dialog-based application with Eclipce CDT(C++). How can I to make it? Thx! ...

dojo dialog - check to see it is loaded

I am running a function that needs to close a dojo dialog if it is loaded. How do I check if a dojo dialog is running? Do I use pure javascript and check by id if it is undefined? if (dijit.byId("blah") !== undefined) { destroyRecursive dijit; } Or do i use a property of the dialog object like isFocusable method isLoaded pro...

Default script in Font dialogs

Hi guys! I'm working on a WinForms application that shows standard Font dialogs to let the user select a font. Since I'm in Russia the default script is "Cyrillic". The problem is that when the application is deployed on the customer's PC in Denmark the default script is not changed - it is still "Cyrillic". The customer would prefer "W...

jQuery in-browser popup / dialog

What is the best (prettiest, easiest API, best performing, most maintainable, most customizable, etc) in browser popup / dialog plugin for jQuery? I've had good experiences with with Facebox, but I'm curious what else is out there. ...

Looking for a tool to auto-enlarge all of our dialog resources

So far my Gooling and searching around here haven't come up with anything of the sort. There are translation tools aplenty - we even have a license for Alchemy Catalyst 5.0. But what I want is a tool that will take an .rc file and grow all of the dialogs by a certain percentage - say 20%. That way the English will be a little more spa...

.NET Open File Dialog

Possible Duplicate: C# OpenFileDialog Non-Modal possible I am working on a C# Windows Form project. While an open file dialog is up I am not able to select anything around it in the GUI. Is there any way to have the openfile dialog open and still be able to select other controls on the main ui? ...

Access to file download dialog in Firefox

Is there any kind of API that can allow me to manipulate a file download dialog in Firefox? (I want to access the one that appears when user does something, not initiate one myself). What I want to do is to access this dialog from Selenium (and whether Selenium "privileged mode" is enough to access chrome interface is something I am not...