Dialog windows are special notebook windows of the Mathematica front end.
11
votes
1answer
199 views
How to make an unremovable modal window?
Is there any way to securely stick a notebook window (e.g. a dialog) on screen that it cannot be closed/removed/hidden by any of the standard OS shortcuts, like AltF4 or AltTab under Windows? The ...
8
votes
2answers
226 views
Strange behavior of CreateDialog's WindowSize option
Compare the two dialog windows, created by the same code except in the first WindowSize has a value while I omit it in the second one. Note, that ...
6
votes
2answers
243 views
How do I make NotebookEvaluate work inside Button?
The following creates a button to select a notebook to run. When the button is pressed it seems that Mathematica finds the notebook but cannot evaluate it. The following error occurs
Could not ...
6
votes
1answer
140 views
How to save data using FileNameSetter or similar
I would like to export data to a file using a SaveAs type dialog, using something like FileNameSetter[name,"Save"] to give a browse button.
Any help with this ...
6
votes
1answer
152 views
Problems with visual update in GUI
Consider the following. When clicking in "Browse" and then choosing a file, the path will remain the original one and won't change to the one of the file I chose:
...
6
votes
1answer
186 views
How do I remove the top bar and bottom bar from the Mathematica window?
Any idea how to remove the top bar saying
"Wolfram Mathematica .... Demonstrations MathWorld Studenforum Help"
from the Mathematica main window (see screenshot). It has no use to me and it steals ...
6
votes
1answer
297 views
Dialog crashes Mathematica
I have some dialog windows in a GUI of which one regularly crashes the kernel. I managed to focus on this particular piece of code, though I don't really know what causes the crash:
...
4
votes
1answer
96 views
Dialog inside Dynamic Module
The following doesn't appear to work:
DynamicModule[{}, Button["Press Me", ChoiceDialog["OK or Cancel?"]]]
When I press the button labelled "Press Me", a dialog ...
4
votes
1answer
64 views
Skip the revert dialog
When saving a file and making changes to it one can revert using File->Revert in the menu or by entering
...
3
votes
1answer
123 views
How can I create input fields based on the user's choice from a popup menu?
I'm trying to create an interface with Mathematica. However, I need some instructions concerning the code below. This is about 10% of what I have in mind, but first I need to know how can I create ...
3
votes
3answers
184 views
Why does my code work one way in Mathematica and another way in PlayerPro?
I wrote the following simple code and deployed it as a CDF.
Button["Ok", (SystemDialogInput["FileSave", ".PDF"])]
If I ...
3
votes
1answer
182 views
How to perform DialogInput operation within Button
Can someone clarify how to perform a DialogInput operation within a Button?
I wrote some code for that but it's not working.
...
2
votes
1answer
182 views
Can I create a dynamic number of rows in TabView through an iteration?
I have written code, with the help of stackoverflow of course, and I want to make it user friendly so that other people in my lab can use it. I'm playing with DialogCreate and similar functions. I ...
2
votes
1answer
93 views
Restrict SystemDialogInput to open certain file types
The documentation for SystemDialogInput shows how to restrict the types of files shown.
SystemDialogInput["FileOpen",".nb"]
...
2
votes
1answer
91 views
How can I shift from one window to another window?
I am building a cdf application,which has multiple screens,every screen was linked to another screen.
Right now I am using CreateDialog. Are there any other ...
2
votes
2answers
222 views
Transparent background of content in a dialog window
Why dialogs created with CreateDialog cannot correctly show content with transparent background? The following example generates a plot, with white background, ...
1
vote
1answer
133 views
How to print a message dialog window
I'm trying to figure out how to print a message dialog without printing the whole notebook.
FrontEndExecute[FrontEndToken["PrintDialog"]] displays the print window ...