Tagged Questions
0
votes
1answer
19 views
CommonFileDialog to return UNC path
The question is simple, can CommonFileDialog be forced to return paths exclusively in UNC format? E.g. the problem is when user selects a file on own machine using the dialog, path is relative. This ...
2
votes
5answers
71 views
putting “*” values in a dialog box C# forms
I am using the simple Dialog box given in the following link as a crude (that's all I need) password input box:
http://www.csharp-examples.net/inputbox-class/
How do I set the text to display **** ...
0
votes
1answer
83 views
Easy way to create MessageBox with “custom button” [duplicate]
I've a winform application, and we are trying to make it ergonomic as possible, so we respect a lot microsoft guidelines.
We have some "Deletion confirmation" to implement, and according the ...
1
vote
1answer
64 views
Form does not displayed as Dialog inside backgroundworker?
the Form does not displayed as Dialog inside backgroundworker?
Here is my code:
//From Form1
private void backgroundWorkerResult_DoWork(object sender, DoWorkEventArgs e)
{
//do ...
0
votes
1answer
117 views
How to create a checkbox for each possible enum value in Windows forms?
Say we have an enum Identifier {Name, Id, Number} and we want to provide user with a message like dialog with only checkboxes for each possible Identifier value and Ok button. On dialog confirmation ...
0
votes
3answers
142 views
Simple dialog based application using C# [closed]
I want to develop a simple windows application (using C#) as follows:
a simple dialog based application with three screens
the first screen is just a screen to welcome the user and give some ...
1
vote
1answer
33 views
Blocking custom ad dialog in webbrowser
I've checked other threads but are not working for me.
Following them, I've implemented this way so far:
private void InjectAlertBlocker()
{
HtmlElement head = ...
0
votes
1answer
80 views
Dialog box doing more than just hiding itself on close
According to the MSDN document, the close operation on a form shown with ShowDialog() should only cause the form to be hidden. Subsequent calls to ShowDialog() will unhide the form.
This doesn't seem ...
2
votes
3answers
160 views
Override WinForms MessageBox Control
All, I understand that for extensively customised dialogs I would need to create my own form and ShowDialog(). However, in my current case I would just like to extend the MessageBox class to ...
-2
votes
1answer
198 views
C# Form with buttons and dynamic forms beside those buttons
I am using Windows form in C# and i am trying to create one single form dialog that will be responsible displaying other dialogs within the boundary of it's dialog. To do that i tried Tab Control and ...
0
votes
4answers
153 views
Form doesn't show anything
I am new to Winforms and C# so this may sound like a stupid question. I have the class shown below for creating a form to be displayed as a modal dialog.
class FrmDelivery : Form
{
ListBox s;
...
2
votes
3answers
174 views
How to show a standard windows data sources (ODBC) dialog
Is there any simple way to display a standard windows data sources dialog from a winforms application?
I'd like to show it to a user and pick up a system dsn or create a new one and return a ...
0
votes
2answers
678 views
How to open a Form Dialog from a MDI child form (MDI application)
I have a MDI main form, a menu item that shows a child form (let's call it frmEmployees), inside this form a Button (btnNew...), how do I open from here a form as Dialog (frmNewEmployee); I mean, ...
2
votes
2answers
186 views
Open a “ColorDialog” dialog at a specified location [duplicate]
Possible Duplicate:
Setting the start position for OpenFileDialog/SaveFileDialog
I've to show a ColorDialog, just above the button where the user clicked.
Currently I can't find how to ...
0
votes
2answers
60 views
Open modal AND non-modal
First off: Im a total Winform newbie... but im trying :)
My customer wants something like this:
Simple scenario:
1) From my Main-form a non-modal dialog is opened (for reading and taking notes).
2) ...
0
votes
1answer
109 views
Saving the user last dialog/form entered values
What is the best practice to save user last entered values on a form (dialog)
I have a dialog, which I use for entering additional information when opening RAW image files, i.e. FileName, Width, ...
0
votes
3answers
124 views
Handling an event on click of a button
I am making a button in C# 4.0. I want to click this button and I want to open a dialog box inside the adobe reader. So I am making use of itextsharp also. Please let me know what must I use to make ...
1
vote
1answer
233 views
MessageBox.Show issue
I have a lot of code like this and it usually works
private void button_Click(object sender, EventArgs e)
{
try
{
DialogResult result;
result = MessageBox.Show( "Questa ...
0
votes
2answers
193 views
Confirm Dialog with options
I need some instructions on the best way to do this, I have some pseudo code.
/*form needs to be a drop down as below*/
// -------------------------------
// | X |
// ...
1
vote
0answers
913 views
XNA with Windows Forms - Opening new window
Okay, so here we go. I'm attempting to make an application, using XNA as the base because of its renderer. One of the things that is necessary in this project is to open a new window (as a dialog), in ...
0
votes
4answers
376 views
OpenFileDialog in C#
How can I get the result (meaning the file name and its location) from an Open File Dialog?
My code:
private void selectFileButton_Click( object sender, EventArgs e ) {
var selectedFile = ...
1
vote
2answers
332 views
Closing Parent without closing child
I have a project where a setup dialog (Parent) pops. When the user hit continue a main dialog is opened (Child).
From within the main dialog the user can re-edit the setup dialog (Parent). When the ...
0
votes
3answers
228 views
Partial nested Form class with designer
I am making a MessageBox like class (MessageBoxCustom).
I would like to have a Form with designer support in a separate file so I can modify the appearance through Visual Studio ...
0
votes
0answers
155 views
Use Windows Form or Dialog Form for a config wizard?
I am trying to create a multi-step configuration wizard for my VB.NET application. My question is, is it easier/better/more customary to use a dialog form for the wizard, or should I just use a ...
0
votes
1answer
75 views
How to customized icon image on a dialog box
I used a button click event to call the dialog box as follows:
private void btnDialog_Click(object sender, EventArgs e)
{
DialogResult result = BetterDialog.ShowDialog("Special Dialog", ...
0
votes
2answers
800 views
Customized MessageBox (dialog box) Windows Forms C#
In order to try to use a dialog box instead of MessageBox I used the next code:
static public DialogResult ShowDialog(string title, string largeHeading, string smallExplanation,
...
0
votes
1answer
61 views
Translate coords to re-position dialog box?
I am hooking CreateDialogIndirectParam. I want to do some manipulations over the dialog box, but but the width, height, and x and y positions are in dialog box units. Can someone explain how to ...
1
vote
2answers
417 views
SaveFileDialog doesn't show in new thread?
I've been confused by this problem for a very long time. I start the new thread by using System.Threading, just like this:
ParameterizedThreadStart threadFileExport = FileExport;
Thread threadExport ...
0
votes
4answers
203 views
File System Entries Browser Dialog c#
I'm usin Windows.Forms aplication and I can get files or directory from my user using OpenFileDialog or FolderBrowserDialog. But I need get both in a unique dialog. I Try use OpenFileDialog with ...
0
votes
1answer
59 views
Why is my pseudo dialog form hiding its “charms” and ignoring its own properties?
I've created a pseudo dialog (form with FormBorderStyle property set to FixedDialog) that contains a label, a DatetimePicker, and an OK button. The OK button's DialogResult property is "OK"
Adapted ...
0
votes
0answers
63 views
Argument exception when using a openFileDialog c#
I am trying to open a image using a file open dialog and Im getting this error message:
Argument exception - The path is not of a legal form.
how can a image not be a legal form?
SetPIcture Method
...
1
vote
2answers
2k views
How can I get a folder or file path through a single WinForm dialog?
UPDATE: It seems I wasn't clear in what my problem was. John Arlen's edit to my title also seems to be causing more of a misunderstanding. The title was changed to "How can I get a folder or file ...
3
votes
4answers
3k views
Prevent ShowDialog() from returning when OK button is clicked
I have a dialog that I want to prevent from closing when the OK button is clicked, but it returns, and that even if the AcceptButton property is set to none instead of my OK button. What is the best ...
0
votes
3answers
120 views
Populate CheckedBoxList1 from previous dialog
The API I'm using dosnt respond to Form_Load events. So i'd like to populate the CheckedListBox1 with code included in the button I use to call the dialog containing the CheckedlistBox1. Here was my ...
0
votes
1answer
134 views
WinForms Dialog: Button is cut off the screen
guys!
I'm having an issue with my dialog app on only one computer where it is being tested..
(You can see on the image how I expect to see in Maximized mode and how it really looks on that computer)
...
0
votes
1answer
150 views
custom dialog preventing browser navigation
As Rie819 has pointed out, this is a duplicate question. However, the other post does not discuss how to create a custom Dialog with this feature. With that being said, I will revise my question and ...
1
vote
0answers
92 views
Possible to check a window for pop-up dialog boxes?
If I have a Process ID or MainWindowHandle, is it possible to check that window for any pop-up dialog boxes? 99% of them are created using Messagebox.Show().
The idea is that we have about 50 PCs ...
0
votes
2answers
4k views
Easiest way to create a custom dialog box which returns a value?
I want to create a custom dialog box for my C# project .. I want to have a DataGridView in this custom dialog box, and there will also be a button .. When the user clicks this button, an integer value ...
0
votes
4answers
813 views
FolderBrowserDialog Cancel Event C#
I have an issue with dialog forms. Below is a section of C# code which calls the FolderBrowserDialog window. Now when I click "ok" on a folder it will close the dialog so not concerned about that so ...
1
vote
4answers
1k views
Stop the Enter Key from Firing on a WinForm
I have a basic custom dialog box for use with various controls in a WinForms application. The dialog looks like:
For various reasons I do not want the user to have the ability to use the Enter key ...
0
votes
1answer
109 views
Is there an open source task runner for Winforms or ASP.NET?
Is this available as an open source component anywhere?
If my code behind a Form or Page (winforms or asp.net) does something like this:
var pidList = PidsToSynch;
pidList.AsParallel().ForAll(pid ...
1
vote
1answer
258 views
.net Custom MessageBox text is highlighted
Why?
I built a simple custom MessageBox as as a Dialog in C#. When I show the message boxvia Show(), the message text is not highlighted. When I show this messagebox vi ShowDialog(), the text is ...
3
votes
1answer
452 views
Display error dialog (MessageBox) with Only “Close” or “Cancel” buttons?
I read in Windows Experience Guidelines: Error Messages that "OK" is an incorrect button to display on an error dialog.
...provide a Close button. Don't use OK for error messages, because this ...
0
votes
1answer
2k views
Get all the Font Styles Available for a Font Family in c# Winforms
I want to get all the font styles available for a fontfamily.By using ff.IsStyleAvailable i can check each style.But there are specific styles for different types of fonts.How can i fetch the ...
8
votes
2answers
1k views
Designing a Custom Font Dialog/Selector for C# that filters out non true type fonts
Since the inbuilt Font Dialog returns a 'Not a True Type Font' Exception on selecting a Non True Type Font, I'm trying to create a Custom Font Dialog using Font-families which filter out non true type ...
2
votes
1answer
114 views
Replicate Windows 7 “add a device” dialog in C#
I'm looking to replicate the "Add a device" dialog (I can't attach a picture because of my reputation, but just go in "Devices and Printers" and click on
Add a device") from Windows 7 in C#, more ...
0
votes
3answers
2k views
Use ShowDialog(form) where form is created on another thread?
I have a form that is used like a dialog, to be sure that the dialog get the correct parent the following method is used :
this.ShowDialog(myForm);
The problem is that this(my dialog form) and ...
1
vote
4answers
436 views
Winforms C# - Show Cancel dialog when main UI thread is busy
I have a main form that contains an edit control that occupies the entire form. There is another worker thread that constantly writes log messages to this edit control. Now I want to show a dialog box ...
1
vote
1answer
67 views
How determine within a dialog form if it was opened as a modal or non-modal dialog by its parent?
I have a dialog form that can be opened as a modal or non-modal dialog. From within the dialog, how can I tell in which manner the dialog was opened, i.e. modal or not?
4
votes
2answers
1k views
Why won't my WPF application close property after it displays a WinForms dialog?
I am using a 3rd party WinForms Login Dialog in my WPF app, and for some reason this is making my WPF application not close correctly when debugging.
If I exit the winforms login dialog prior to ...



