Good afternoon experts!
I'm having some strange problems with a SaveFileDialog within a VB.NET app. This is a reporting application that is in testing with 7 users, plus myself. Two of the users are having problems when they try and save the results. The SaveFileDialog comes up, however the contents of the window are blank (see attached image), and it will not allow them to save the file.
I've tried changing the security settings, thinking this could be the cause, but it doesn't seem to be. I'm just baffled as to why the SaveFileDialog doesn't work on these two users. They have other applications coded with the same type of dialog and it works correctly. Has anyone else experienced this type of error, or know what I can do to correct it?
I'm having some strange problems with a SaveFileDialog within a VB.NET app. This is a reporting application that is in testing with 7 users, plus myself. Two of the users are having problems when they try and save the results. The SaveFileDialog comes up, however the contents of the window are blank (see attached image), and it will not allow them to save the file.
I've tried changing the security settings, thinking this could be the cause, but it doesn't seem to be. I'm just baffled as to why the SaveFileDialog doesn't work on these two users. They have other applications coded with the same type of dialog and it works correctly. Has anyone else experienced this type of error, or know what I can do to correct it?
Code:
SaveFileDialog1.InitialDirectory = "\\wldapp051\chcdata\SLS\Audit\"
SaveFileDialog1.CheckFileExists = False
SaveFileDialog1.CheckPathExists = True
SaveFileDialog1.AddExtension = True
SaveFileDialog1.OverwritePrompt = True
SaveFileDialog1.ValidateNames = True
SaveFileDialog1.ValidateNames = True
SaveFileDialog1.Title = "Export workbook..."
SaveFileDialog1.FileName = "WKBK"
SaveFileDialog1.Filter = _
"All Files (*.*)|*.*" & _
"|Microsoft Excel (.xls)|*.xls"
result = Me.SaveFileDialog1.ShowDialog(Me)
Comment