The dialogbox tag has no wiki summary.
0
votes
0answers
37 views
R wait for user inpuut
I have a problem with simple script in R. I want to manually input range (range1 and range2) for the fit, but when I'm using my code it's not waiting and read code lines instead (it reads ...
1
vote
4answers
52 views
Show an AlertDialog when button is clicked
I am trying to view a dialog box with radio buttons but when I clicked on the button alert dialog box never appears. Below is the code. Please let me know if there is any alternate solution to this. ...
0
votes
2answers
37 views
how to use Alert Box?
I have an application that uses data stored on the SD card, but my problem, I want to display a dialog box with error message before the application terminates. I tried to create a dialog box not in ...
0
votes
0answers
30 views
to change color of a gridview cell on select of a dialog box item
I am creating an android app for attendamce where in i am displaying a calendar where the user has to select a date..when the date is selected a popup will appear with two buttons PRESENT and ABSENT.
...
0
votes
0answers
44 views
to display a dialog box on click of a date in calendar change the color of the grid cell
I am creating an app where i need to display a calendar in full screen and ask the user to select a date..after the selection of date a dialog box will appear with two buttons in it BUTTON 1 and ...
0
votes
0answers
30 views
Jquery: File download dailog box through Jquery without any server
I have to develop a static page with HTML and Jquery.
On click of a link File download dialog box should get popped with filename with "save as","open" and "cancel" options.When I click on "save as" ...
0
votes
0answers
44 views
Matlab: Suppressing the warning dialog box of uiputfile
I want to use uiputfile to get file path to insert some sheets to Excel file but a warning dialog box is displayed when existing file is selected. As I am not going to overwrite file and my code only ...
-2
votes
0answers
85 views
Syntax for ajax success function for dialog box
I want to update a main form in the jquery UI dialog box with (external) html that is fetched using AJAX.
Using firebug to verify the working of the code, I have managed to get the response i want. ...
0
votes
1answer
63 views
C++ Getting data from a dialogbox
I have made a simple win32 application, that opens a dialog box with an edit control. After searching for hours I couldn't find a way to get the user input from this edit control and store it in a ...
1
vote
0answers
48 views
How to use DialogBox in Windows API
I'm learning windows api for some weeks, now I got a problem, my code is like this
LRESULT CALLBACK MainWndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam){
switch(message){
case(...)
...
1
vote
1answer
411 views
Create a save/save as dialog box in java that save a newly created file or an edited file
Java Beginner: Please help been working on this for days and my brain is dead.
I have created a java program (in eclipse) that has 3 menu: FILE, EDIT, HELP
once file is clicked it display 4menuBar: ...
1
vote
1answer
55 views
How can I make Dialog Box to hide when user clicks anywhere outside Dialog Box?
How can I make Dialog Box to hide when user clicks anywhere outside Dialog Box?
It is a GWT application where a view is extending Dialog Box. I have a Close button in Dialog Box which OnClicked ...
0
votes
0answers
236 views
Saving data using Shared Preferences from dialog box
i am trying to save data using shared preference from a dialog box and then showing that data in List view. i am able to show data in list view but not able to save data with shared preference
here's ...
0
votes
1answer
39 views
Having Dialogbox call itself causes checkboxes to go blank vb.net
I'm converting a table top cardgame to computer. When someone attacks someone who has a dodge/block/disarm(if atked via weapon) then the defender has a chance to avoid taking damage from the attack. ...
-2
votes
1answer
69 views
how to add popup window for long texts Android
How to write a long text in a pop up window. I tried this dlgAlert.setMessage("Long Text"); but it is not good for long text's like descriptions. i want a new popup window with long text and OK ...
0
votes
1answer
122 views
Dialog Box in Activity group inside a TabActivity not working
I'm trying to run an ActivityGroup embedded inside another
ActivityGroup. (Example : an ActivityGroup inside a TabActivity)
This seems to display properly but throw an exception when I'm trying
to ...
0
votes
1answer
45 views
GWT IE9 marking text of DialogBox freezes window
I have following strange behavior:
If I open a DialogBox with Internet Explorer 9, mark a text and click on the appearing built-in icon the whole window is freezing. You can try this with the showcase ...
-4
votes
1answer
96 views
execute program while window handled mfc
I want to make program work while handle is available. I thinking about setting timer on initialization... and insert all source of program in to it, but if I got lost handle when program processing ...
0
votes
0answers
35 views
dialog box jquery for each dynamic result
I have a list of results that dynamically come every time from a for loop, and i would like to place a button at the end of each result when clicked a dialog box opens and the id of the result has to ...
0
votes
1answer
202 views
UserControl TextBox Validation in C#
I have a TextBox UserControl. I create a Dynamic Property for the Textbox for MaximumLength.
public int MaximumLength { get; set; }
private void txtLocl_KeyPress(object sender, KeyPressEventArgs ...
0
votes
0answers
17 views
Pyside Code display nothing
Please can some tell me why this code does seem to work. That is display a dialog box atleast.
import sys
from PySide.QtCore import *
from PySide.QtGui import *
class Form(QDialog):
def ...
0
votes
3answers
292 views
Get event on dialog( Ok ,Cancel) button pressed(Android)
In my Android application I am displaying the dialogbox which contains edittext. This dialogbox is displayed using PreferenceCategory.My xml file looks like
<PreferenceScreen ...
1
vote
1answer
74 views
Detecting if user has made changes to FontDialog object
I've got a FontDialog box called aFontDialog.
Can I detect changes made to this dialog box?
Initially my object creates the dialog using this code aFontDialog.ShowDialog, the user than makes ...
-1
votes
3answers
120 views
GWT ConfirmMessageBox [closed]
I need some kind of ConfirmMessageBox for an gwt implementation. Is there something prepared for this from gwt, or is the only way to do that to extend dialog boxes ?
the basic idea is a box with ...
0
votes
3answers
95 views
How to popup a dialog box in c++ wxidgets using main() not init()
I am popuping a dialogbox from displaying logs using wxwidgets of c++, which contains init() for initialization. i want to know that can init() is necessary to popup a dialog or same can be done using ...
0
votes
2answers
107 views
Using A Dialog Box To Print 2 dimensional array In Java
We got as a homework, to implement the game of life in java.
I have a 2 dimensional array and I want to print it in the dialog box.
My array type is Boolean.
What I did is to convert it into one ...
0
votes
0answers
87 views
bat file ignore pop up error [closed]
I am opening a dos program on someone's computer using a bat file. The program its self access comb port 1 and 2. Com port 2 is used by another program (radio programs, he has 30 com ports in use), ...
0
votes
1answer
162 views
Check for dialog box event using windows API in C#
I'm trying to check for dialog box open and close events in powerpoint 2010 (example: Saveas dialog box) using C#.net. Is there any other way to find out the events?
0
votes
2answers
118 views
Designing dialog box in R
How can we a design a dialog box in R?
In my mind I have something in which an alert message is displayed or where we can write a certain value and then clicking a button it performs some ...
0
votes
3answers
97 views
Adapter for displaying list view
In my application i have an class extending dialog fragment. The class displays normal dialog(not Alert dialog).
1.displaying a listview inside dialog. the list view contains 2 text views , both are ...
0
votes
1answer
68 views
How to Hide Task Manager's Error Message Dialog Box When Task Manager is Disabled
Hi i try to make a program with java which must be full screen and always on top. However, when i press CTRL + ALT + DEL task manager comes up. I blocked Task Manager by editing regedit values but now ...
0
votes
0answers
84 views
How can I add a Composite to another UiBinder
Hi I'm working with UiBinder atm and I have a problem which i can't solve.
I tried to open a created Widget in a new Window on button click.
That's the ui.xml within the DialogBox.
<gwt:DialogBox ...
0
votes
0answers
57 views
Closing Import File Dialog Box when importing a text file
I recorded a macro to import text file in a sheet. Everything is working fine, except that a dialog box "Import file" pops up. Now the extension is defined in the code, all it prompts me to do is ...
0
votes
2answers
182 views
unable to add values to multichoice dialog box in android
I have small problem in android for Multichoice dialog box.
I have done with this below code for showing a multichoice dialog box and calling that on button click event.
I have set Title, Message, ...
0
votes
1answer
137 views
GWT DialogBox spawns multiple copies of itself
The following are two inner classes that pop up a simple DialogBox when the user clicks the respective button. They then update the values in a List that populates a ListBox on the interface.
I have ...
0
votes
1answer
1k views
Download File to client PC in asp.net using VB.net
I am developing a website that would be accessible only within our organisation
I want to implement a functionality in which client will download a file (Visio File *.vsd) from server and save it to ...
1
vote
0answers
64 views
C - How can I center a Dialog Box over main program window position
I've got this code to open an InputBox defined on a DLL that get HMODULE that I save on hInstance variable when main program calls. How can I center it over the main program window?
It occurs that ...
0
votes
1answer
140 views
How can I get a winMain's hInstance? windows32 programming
How can I get a winMain's HWND hwnd's hInstance application handle without using globals? I'm trying to make a dialog box to be sent to the LRESULT CALLBACK to have certain menu items make it show up.
...
1
vote
2answers
131 views
Hide softkeyboard on dialog box loading in Android 4.0
I have an activity which opens up a dialog that contains edittexts on a button click. As soon as the dialog opens the softkeyboard shows. I want to prevent this. Only when I click on the edittext in ...
0
votes
2answers
477 views
How to get data from a custom dialog box
I Have a dialoge box in my code, that when i click a button in Main activity it pops up, this dilog box is like this :
I want to put String data from "Enter NUmber" and "Enter Name" Test box to a ...
2
votes
1answer
321 views
GWT DialogBox that returns values back to the “opener”
I want to create a popup (implemented as a DialogBox or other similar component) which i should be able to reuse in multiple pages or forms. I want the DialogBox to be able to return a value to the ...
0
votes
1answer
80 views
How to have 2 set of radio groups in a dialog box in android
Is there any way to create a dialogbox with 2 set of radio groups other than creating a custom dialog box through layout.
I mean I want to have 2 independent set of radio groups (each has 3 radio ...
0
votes
3answers
183 views
How to transfer parameters value from dialog box to activity in android?
I have an activity (Main) and I inserted a button in it.
When button the user press it, a dialog box with 2 Radio boxes appear. I want to set "1" or "0" value to "ntv", based on which radiobutton is ...
0
votes
1answer
282 views
JQuery Dialog w/ .NET: Hidden Div shows after unrelated postback
I'm using a very simple JQuery dialog box. User clicks on a link, and the previously hidden dialog box opens. It works great with one catch: There are unrelated buttons on the same page which cause ...
0
votes
1answer
126 views
JQuery UI dialog box appears only once in IE8
I have a submit button that triggers the dialog box to open during form validation. It works fine in Firefox and Chrome, but in IE8, after it appeared once and I closed it, when I click the button ...
2
votes
5answers
437 views
Match password using custom dialog box
I want to use a custom dialog box for Pin Authentication. Here is my code:
public void fetchUI()
{
add=(Button)findViewById(R.id.pinButton);
add.setOnClickListener(new View.OnClickListener() ...
0
votes
1answer
211 views
Having a popup menu show/create a dialog box? Windows32 programming
I've looked at MSDN for about 2 hours so far and I'm still very confused as to how to even use a dialog box. I've tried reading several examples on google and just got confused further.
Currently I ...
2
votes
1answer
142 views
Why is WM_CLOSE not handled automatically by DefDlgProc?
When I create a dialog using DialogBox, it won't close unless I handle WM_CLOSE in my own DLGPROC function and call EndDialog.
I know that this is by design, but I'm interested why was it chosen for ...
0
votes
0answers
231 views
Creating the Windows 8 HTML dialog box in jQuery
I was looking to use the HTML5 dialog box to ask a user of my Windows 8 HTML5 app for their name, but as I suspected, and I know there is a Stack Overflow question about it, the dialog box only takes ...
1
vote
7answers
4k views
How do you create a dialog message box using ASP .NET?
In WinForms, I can do this:
var msg = MessageBox.Show("Are you sure?", "WARNING!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button2);
if (msg == DialogResult.Yes)
{
...



