/// </summary>\r
public void BrowseSendFileTo()\r
{\r
- VistaOpenFileDialog dialog = new VistaOpenFileDialog { Filter = "All files (*.*)|*.*", FileName = this.sendFileToPath };\r
+ OpenFileDialog dialog = new OpenFileDialog { Filter = "All files (*.*)|*.*", FileName = this.sendFileToPath };\r
bool? dialogResult = dialog.ShowDialog();\r
if (dialogResult.HasValue && dialogResult.Value)\r
{\r
/// </summary>\r
public void BrowseVlcPath()\r
{\r
- VistaOpenFileDialog dialog = new VistaOpenFileDialog { Filter = "All files (*.exe)|*.exe", FileName = this.VLCPath };\r
+ OpenFileDialog dialog = new OpenFileDialog { Filter = "All files (*.exe)|*.exe", FileName = this.VLCPath };\r
bool? dialogResult = dialog.ShowDialog();\r
if (dialogResult.HasValue && dialogResult.Value)\r
{\r