Click here to Skip to main content
15,886,535 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionEncrypt Live Audiovideo stream in ASP.NET Web Application Pin
er.sandy18-May-09 2:46
er.sandy18-May-09 2:46 
AnswerRe: Encrypt Live Audiovideo stream in ASP.NET Web Application Pin
Dave Kreskowiak18-May-09 8:51
mveDave Kreskowiak18-May-09 8:51 
GeneralRe: Encrypt Live Audiovideo stream in ASP.NET Web Application Pin
er.sandy18-May-09 18:46
er.sandy18-May-09 18:46 
GeneralRe: Encrypt Live Audiovideo stream in ASP.NET Web Application Pin
Dave Kreskowiak19-May-09 4:41
mveDave Kreskowiak19-May-09 4:41 
QuestionGetting Error message in debuging Pin
deadlyabbas17-May-09 19:02
deadlyabbas17-May-09 19:02 
AnswerRe: Getting Error message in debuging Pin
Dave Kreskowiak18-May-09 8:52
mveDave Kreskowiak18-May-09 8:52 
QuestionFolderBrowserDialog closes my dialog window Pin
Poolee17-May-09 9:24
Poolee17-May-09 9:24 
AnswerRe: FolderBrowserDialog closes my dialog window Pin
Mark Salsbery17-May-09 10:13
Mark Salsbery17-May-09 10:13 
I can't reproduce this.


I took a forms project and added a new form called Form2.

On Form2 I added a button, and to this button a Click event handler
that does the following code (ripped from the MSDN docs):
FolderBrowserDialog folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();

// Show the FolderBrowserDialog.
DialogResult result = folderBrowserDialog1.ShowDialog();
if (result == DialogResult.OK)
{
    string folderName = folderBrowserDialog1.SelectedPath;
}

On my project's original Form1, I added a button with a Click event handler
to launch the Form2 modal like this:
Form2 subForm = new Form2();
subForm.ShowDialog(this);

Running this, closing the FolderBrowserDialog does not close Form2.

What have you done differently?

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: FolderBrowserDialog closes my dialog window Pin
Poolee17-May-09 12:02
Poolee17-May-09 12:02 
GeneralRe: FolderBrowserDialog closes my dialog window Pin
Mark Salsbery17-May-09 15:14
Mark Salsbery17-May-09 15:14 
GeneralRe: FolderBrowserDialog closes my dialog window Pin
Poolee17-May-09 16:47
Poolee17-May-09 16:47 
AnswerRe: FolderBrowserDialog closes my dialog window Pin
Poolee17-May-09 18:48
Poolee17-May-09 18:48 
GeneralRe: FolderBrowserDialog closes my dialog window Pin
Mark Salsbery17-May-09 19:05
Mark Salsbery17-May-09 19:05 
QuestionMySql connector problem Pin
JayKhatri15-May-09 21:39
JayKhatri15-May-09 21:39 
AnswerRe: MySql connector problem Pin
Dave Kreskowiak17-May-09 6:15
mveDave Kreskowiak17-May-09 6:15 
GeneralRe: MySql connector problem Pin
JayKhatri27-May-09 19:12
JayKhatri27-May-09 19:12 
GeneralRe: MySql connector problem Pin
Dave Kreskowiak28-May-09 2:05
mveDave Kreskowiak28-May-09 2:05 
GeneralRe: MySql connector problem Pin
JayKhatri28-May-09 3:16
JayKhatri28-May-09 3:16 
AnswerRe: MySql connector problem Pin
JayKhatri17-May-09 21:40
JayKhatri17-May-09 21:40 
QuestionWeb setup project fails in Windows vista and IIS7 Pin
Muhammad Sohaib Yousaf15-May-09 2:12
Muhammad Sohaib Yousaf15-May-09 2:12 
AnswerRe: Web setup project fails in Windows vista and IIS7 Pin
Dave Kreskowiak15-May-09 4:11
mveDave Kreskowiak15-May-09 4:11 
QuestionFinding IP Address of Device Connected To PC via LAN Cable. Pin
VikashGohil14-May-09 21:43
VikashGohil14-May-09 21:43 
AnswerRe: Finding IP Address of Device Connected To PC via LAN Cable. Pin
Dave Kreskowiak15-May-09 4:12
mveDave Kreskowiak15-May-09 4:12 
GeneralRe: Finding IP Address of Device Connected To PC via LAN Cable. Pin
VikashGohil16-May-09 21:42
VikashGohil16-May-09 21:42 
GeneralRe: Finding IP Address of Device Connected To PC via LAN Cable. Pin
Dave Kreskowiak17-May-09 3:27
mveDave Kreskowiak17-May-09 3:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.