Click here to Skip to main content
15,914,608 members
Home / Discussions / C#
   

C#

 
QuestionRe: populate textbox in selectedindexchangeevent Pin
Wayne Gaylard10-Sep-12 21:01
professionalWayne Gaylard10-Sep-12 21:01 
AnswerRe: populate textbox in selectedindexchangeevent Pin
Bernhard Hiller10-Sep-12 22:00
Bernhard Hiller10-Sep-12 22:00 
QuestionWindows Login Box Pin
mamoony10-Sep-12 10:45
mamoony10-Sep-12 10:45 
AnswerRe: Windows Login Box Pin
Michael_Lu10-Sep-12 11:18
Michael_Lu10-Sep-12 11:18 
GeneralRe: Windows Login Box Pin
mamoony11-Sep-12 2:39
mamoony11-Sep-12 2:39 
AnswerRe: Windows Login Box Pin
Abhinav S10-Sep-12 17:35
Abhinav S10-Sep-12 17:35 
GeneralRe: Windows Login Box Pin
mamoony11-Sep-12 2:43
mamoony11-Sep-12 2:43 
QuestionWeb Service Stack trace .. Pin
UBX10-Sep-12 4:02
UBX10-Sep-12 4:02 
AnswerRe: Web Service Stack trace .. Pin
Dave Kreskowiak10-Sep-12 5:57
mveDave Kreskowiak10-Sep-12 5:57 
GeneralRe: Web Service Stack trace .. Pin
BobJanova11-Sep-12 0:23
BobJanova11-Sep-12 0:23 
GeneralRe: Web Service Stack trace .. Pin
Pete O'Hanlon11-Sep-12 0:36
mvePete O'Hanlon11-Sep-12 0:36 
GeneralRe: Web Service Stack trace .. Pin
BobJanova11-Sep-12 0:44
BobJanova11-Sep-12 0:44 
GeneralRe: Web Service Stack trace .. Pin
Pete O'Hanlon11-Sep-12 1:56
mvePete O'Hanlon11-Sep-12 1:56 
GeneralRe: Web Service Stack trace .. Pin
Dave Kreskowiak11-Sep-12 2:03
mveDave Kreskowiak11-Sep-12 2:03 
QuestionHelp File Authoring Pin
Bart10-Sep-12 3:07
Bart10-Sep-12 3:07 
AnswerRe: Help File Authoring Pin
Pete O'Hanlon10-Sep-12 3:13
mvePete O'Hanlon10-Sep-12 3:13 
GeneralRe: Help File Authoring Pin
Bart10-Sep-12 3:42
Bart10-Sep-12 3:42 
GeneralRe: Help File Authoring Pin
Pete O'Hanlon10-Sep-12 3:47
mvePete O'Hanlon10-Sep-12 3:47 
GeneralRe: Help File Authoring Pin
Bart10-Sep-12 3:57
Bart10-Sep-12 3:57 
GeneralRe: Help File Authoring Pin
Pete O'Hanlon10-Sep-12 4:05
mvePete O'Hanlon10-Sep-12 4:05 
AnswerRe: Help File Authoring Pin
Bernhard Hiller10-Sep-12 22:07
Bernhard Hiller10-Sep-12 22:07 
AnswerRe: Help File Authoring Pin
BobJanova11-Sep-12 0:26
BobJanova11-Sep-12 0:26 
QuestionSystem.AccessViolationException openfiledialog win7 Pin
Rahul Sabharwal10-Sep-12 1:29
Rahul Sabharwal10-Sep-12 1:29 
AnswerRe: System.AccessViolationException openfiledialog win7 Pin
Eddy Vluggen10-Sep-12 1:40
professionalEddy Vluggen10-Sep-12 1:40 
GeneralRe: System.AccessViolationException openfiledialog win7 Pin
Rahul Sabharwal10-Sep-12 1:47
Rahul Sabharwal10-Sep-12 1:47 
<pre lang="c#">OpenFileDialog dlg = new OpenFileDialog();
                        
                        #endregion

                        #region DIALOG BOX SETTINGS
                        string previousOpenFilePath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
                        
                        dlg.RestoreDirectory = true;
                        dlg.DefaultExt = ".xml";
                        dlg.Filter = "XML Document (*.xml)|*.xml|Excel File (*.xls)|*.xls|Excel File (*.xlsx)|*.xlsx|VPI File (*.vpi)|*.vpi|All Files (*.*)|*.*";
                        #endregion

                        dlg.CheckPathExists = true;
                        dlg.CheckFileExists = true;
                        if (dlg.ShowDialog() == DialogResult.OK)


Here the exception comes at the showdialog call. The stacktrace goes in eventviewer.

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.