473,404 Members | 2,137 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,404 software developers and data experts.

FolderBrowserDialog hangs in 2005

I have created an app that makes use of the FolderBrowserDialog.

Upon building the app, installing and running it, and invoking the form
using the dialog, it hangs upon folder selection and goes "not responding"

Upon debugging, it hangs as well upon executing the line that extracts the
selected folder without further explanation. All looks well in the debugger
prior to executing the line marked with <<<<<< below. When I step over that
line, it hangs.

With FolderBrowserDialog1
..RootFolder = Environment.SpecialFolder.Desktop

..SelectedPath = Environment.SpecialFolder.Desktop

..Description = "Please select the desired template(s)..."

If .ShowDialog = DialogResult.Cancel Then

Exit Sub

End If

If .ShowDialog = DialogResult.OK Then

DestinationPath = .SelectedPath <<<<<<<<

End If

End With
I noticed the same behavior from a downloaded exe created in VS2005 using
the folderbrowser --- thus, I have two indenpent instances of the
browserdialog hanging, one not of my creation.

Any insights?

--
Grumpy Aero Guy


Jun 17 '06 #1
11 2983
why you call .ShowDialog twice?

i suggest something like this;

Dim dlResult As DialogResult

dlResult = .ShowDialog

If dlResult = Windows.Forms.DialogResult.Cancel Then
Exit Sub
ElseIf dlResult = Windows.Forms.DialogResult.Ok Then
DestinationPath = .SelectedPath
End If
Meelis


"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:k5*****************@tornado.ohiordc.rr.com...
I have created an app that makes use of the FolderBrowserDialog.

Upon building the app, installing and running it, and invoking the form
using the dialog, it hangs upon folder selection and goes "not responding"

Upon debugging, it hangs as well upon executing the line that extracts the
selected folder without further explanation. All looks well in the debugger prior to executing the line marked with <<<<<< below. When I step over that line, it hangs.

With FolderBrowserDialog1
.RootFolder = Environment.SpecialFolder.Desktop

.SelectedPath = Environment.SpecialFolder.Desktop

.Description = "Please select the desired template(s)..."

If .ShowDialog = DialogResult.Cancel Then

Exit Sub

End If

If .ShowDialog = DialogResult.OK Then

DestinationPath = .SelectedPath <<<<<<<<

End If

End With
I noticed the same behavior from a downloaded exe created in VS2005 using
the folderbrowser --- thus, I have two indenpent instances of the
browserdialog hanging, one not of my creation.

Any insights?

--
Grumpy Aero Guy

Jun 17 '06 #2
Fair enough....

BUT, I still hang on the DestinationPath = .SelectedPath line.

--
Grumpy Aero Guy

"Meelis" <me*@hot.ee> wrote in message
news:uY**************@TK2MSFTNGP04.phx.gbl...
why you call .ShowDialog twice?

i suggest something like this;

Dim dlResult As DialogResult

dlResult = .ShowDialog

If dlResult = Windows.Forms.DialogResult.Cancel Then
Exit Sub
ElseIf dlResult = Windows.Forms.DialogResult.Ok Then
DestinationPath = .SelectedPath
End If
Meelis


"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:k5*****************@tornado.ohiordc.rr.com...
I have created an app that makes use of the FolderBrowserDialog.

Upon building the app, installing and running it, and invoking the form
using the dialog, it hangs upon folder selection and goes "not
responding"

Upon debugging, it hangs as well upon executing the line that extracts
the
selected folder without further explanation. All looks well in the

debugger
prior to executing the line marked with <<<<<< below. When I step over

that
line, it hangs.

With FolderBrowserDialog1
.RootFolder = Environment.SpecialFolder.Desktop

.SelectedPath = Environment.SpecialFolder.Desktop

.Description = "Please select the desired template(s)..."

If .ShowDialog = DialogResult.Cancel Then

Exit Sub

End If

If .ShowDialog = DialogResult.OK Then

DestinationPath = .SelectedPath <<<<<<<<

End If

End With
I noticed the same behavior from a downloaded exe created in VS2005 using
the folderbrowser --- thus, I have two indenpent instances of the
browserdialog hanging, one not of my creation.

Any insights?

--
Grumpy Aero Guy


Jun 18 '06 #3
ljh
Here is a folder browser that does not use the component.....

--------------------------------
Imports System.Windows.Forms.Design

Public Class BrowseForFolder
Inherits FolderNameEditor

Public Enum enuFolderBrowserFolder
Desktop = FolderBrowserFolder.Desktop
Favorites = FolderBrowserFolder.Favorites
MyComputer = FolderBrowserFolder.MyComputer
MyDocuments = FolderBrowserFolder.MyDocuments
MyPictures = FolderBrowserFolder.MyPictures
NetAndDialUpConnections =
FolderBrowserFolder.NetAndDialUpConnections
NetworkNeighborhood = FolderBrowserFolder.NetworkNeighborhood
Printers = FolderBrowserFolder.Printers
Recent = FolderBrowserFolder.Recent
SendTo = FolderBrowserFolder.SendTo
StartMenu = FolderBrowserFolder.StartMenu
Templates = FolderBrowserFolder.Templates
End Enum

'The FolderBrowserStyles collection is a member of FolderNameEditor
Public Enum enuFolderBrowserStyles
BrowseForComputer = FolderBrowserStyles.BrowseForComputer
BrowseForEverything = FolderBrowserStyles.BrowseForEverything
BrowseForPrinter = FolderBrowserStyles.BrowseForPrinter
RestrictToDomain = FolderBrowserStyles.RestrictToDomain
RestrictToFilesystem = FolderBrowserStyles.RestrictToFilesystem
RestrictToSubfolders = FolderBrowserStyles.RestrictToSubfolders
ShowTextBox = FolderBrowserStyles.ShowTextBox
End Enum

Public StartLocation As enuFolderBrowserFolder =
enuFolderBrowserFolder.MyDocuments '.BrowseForComputer
Public Style As enuFolderBrowserStyles =
enuFolderBrowserStyles.ShowTextBox

Private mstrDescription As String = "Please select a directory below:"
Private mstrPath As String = String.Empty
Private mobjFB As New FolderBrowser()

'Adds Description to dialog box
Public Property Description() As String
Get
Return mstrDescription
End Get
Set(ByVal Value As String)
mstrDescription = Value
End Set
End Property

Public ReadOnly Property Path() As String
Get
Return mstrPath
End Get
End Property

Public Function ShowBrowser() As System.Windows.Forms.DialogResult
With mobjFB
.Description = mstrDescription
.StartLocation = CType(Me.StartLocation,
FolderNameEditor.FolderBrowserFolder)
.Style = CType(Me.Style, FolderNameEditor.FolderBrowserStyles)
Dim dlgResult As DialogResult = .ShowDialog
If dlgResult = DialogResult.OK Then
mstrPath = .DirectoryPath
Else
mstrPath = String.Empty
End If
Return dlgResult
End With
End Function

End Class
--------------------------------

Usage is like....

--------------------------------
Dim objFB As New BrowseForFolder()
If objFB.ShowBrowser = Windows.Forms.DialogResult.OK Then
MessageBox.Show(objFB.Path)
End If
--------------------------------

"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:k5*****************@tornado.ohiordc.rr.com...
I have created an app that makes use of the FolderBrowserDialog.

Upon building the app, installing and running it, and invoking the form
using the dialog, it hangs upon folder selection and goes "not responding"

Upon debugging, it hangs as well upon executing the line that extracts the
selected folder without further explanation. All looks well in the
debugger prior to executing the line marked with <<<<<< below. When I
step over that line, it hangs.

With FolderBrowserDialog1
.RootFolder = Environment.SpecialFolder.Desktop

.SelectedPath = Environment.SpecialFolder.Desktop

.Description = "Please select the desired template(s)..."

If .ShowDialog = DialogResult.Cancel Then

Exit Sub

End If

If .ShowDialog = DialogResult.OK Then

DestinationPath = .SelectedPath <<<<<<<<

End If

End With
I noticed the same behavior from a downloaded exe created in VS2005 using
the folderbrowser --- thus, I have two indenpent instances of the
browserdialog hanging, one not of my creation.

Any insights?

--
Grumpy Aero Guy

Jun 18 '06 #4
OK... thank you.

I'll give it a shot !

--
Grumpy Aero Guy

"ljh" <Re***@groups.please> wrote in message
news:a0*******************@bignews3.bellsouth.net. ..
Here is a folder browser that does not use the component.....

--------------------------------
Imports System.Windows.Forms.Design

Public Class BrowseForFolder
Inherits FolderNameEditor

Public Enum enuFolderBrowserFolder
Desktop = FolderBrowserFolder.Desktop
Favorites = FolderBrowserFolder.Favorites
MyComputer = FolderBrowserFolder.MyComputer
MyDocuments = FolderBrowserFolder.MyDocuments
MyPictures = FolderBrowserFolder.MyPictures
NetAndDialUpConnections =
FolderBrowserFolder.NetAndDialUpConnections
NetworkNeighborhood = FolderBrowserFolder.NetworkNeighborhood
Printers = FolderBrowserFolder.Printers
Recent = FolderBrowserFolder.Recent
SendTo = FolderBrowserFolder.SendTo
StartMenu = FolderBrowserFolder.StartMenu
Templates = FolderBrowserFolder.Templates
End Enum

'The FolderBrowserStyles collection is a member of FolderNameEditor
Public Enum enuFolderBrowserStyles
BrowseForComputer = FolderBrowserStyles.BrowseForComputer
BrowseForEverything = FolderBrowserStyles.BrowseForEverything
BrowseForPrinter = FolderBrowserStyles.BrowseForPrinter
RestrictToDomain = FolderBrowserStyles.RestrictToDomain
RestrictToFilesystem = FolderBrowserStyles.RestrictToFilesystem
RestrictToSubfolders = FolderBrowserStyles.RestrictToSubfolders
ShowTextBox = FolderBrowserStyles.ShowTextBox
End Enum

Public StartLocation As enuFolderBrowserFolder =
enuFolderBrowserFolder.MyDocuments '.BrowseForComputer
Public Style As enuFolderBrowserStyles =
enuFolderBrowserStyles.ShowTextBox

Private mstrDescription As String = "Please select a directory below:"
Private mstrPath As String = String.Empty
Private mobjFB As New FolderBrowser()

'Adds Description to dialog box
Public Property Description() As String
Get
Return mstrDescription
End Get
Set(ByVal Value As String)
mstrDescription = Value
End Set
End Property

Public ReadOnly Property Path() As String
Get
Return mstrPath
End Get
End Property

Public Function ShowBrowser() As System.Windows.Forms.DialogResult
With mobjFB
.Description = mstrDescription
.StartLocation = CType(Me.StartLocation,
FolderNameEditor.FolderBrowserFolder)
.Style = CType(Me.Style, FolderNameEditor.FolderBrowserStyles)
Dim dlgResult As DialogResult = .ShowDialog
If dlgResult = DialogResult.OK Then
mstrPath = .DirectoryPath
Else
mstrPath = String.Empty
End If
Return dlgResult
End With
End Function

End Class
--------------------------------

Usage is like....

--------------------------------
Dim objFB As New BrowseForFolder()
If objFB.ShowBrowser = Windows.Forms.DialogResult.OK Then
MessageBox.Show(objFB.Path)
End If
--------------------------------

"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:k5*****************@tornado.ohiordc.rr.com...
I have created an app that makes use of the FolderBrowserDialog.

Upon building the app, installing and running it, and invoking the form
using the dialog, it hangs upon folder selection and goes "not
responding"

Upon debugging, it hangs as well upon executing the line that extracts
the selected folder without further explanation. All looks well in the
debugger prior to executing the line marked with <<<<<< below. When I
step over that line, it hangs.

With FolderBrowserDialog1
.RootFolder = Environment.SpecialFolder.Desktop

.SelectedPath = Environment.SpecialFolder.Desktop

.Description = "Please select the desired template(s)..."

If .ShowDialog = DialogResult.Cancel Then

Exit Sub

End If

If .ShowDialog = DialogResult.OK Then

DestinationPath = .SelectedPath <<<<<<<<

End If

End With
I noticed the same behavior from a downloaded exe created in VS2005 using
the folderbrowser --- thus, I have two indenpent instances of the
browserdialog hanging, one not of my creation.

Any insights?

--
Grumpy Aero Guy


Jun 18 '06 #5
Hi
Is DestinaionPath a variable, function or property?

Meelis


"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:RZ*****************@tornado.ohiordc.rr.com...
Fair enough....

BUT, I still hang on the DestinationPath = .SelectedPath line.

--
Grumpy Aero Guy

"Meelis" <me*@hot.ee> wrote in message
news:uY**************@TK2MSFTNGP04.phx.gbl...
why you call .ShowDialog twice?

i suggest something like this;

Dim dlResult As DialogResult

dlResult = .ShowDialog

If dlResult = Windows.Forms.DialogResult.Cancel Then
Exit Sub
ElseIf dlResult = Windows.Forms.DialogResult.Ok Then
DestinationPath = .SelectedPath
End If
Meelis


"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:k5*****************@tornado.ohiordc.rr.com...
I have created an app that makes use of the FolderBrowserDialog.

Upon building the app, installing and running it, and invoking the form
using the dialog, it hangs upon folder selection and goes "not
responding"

Upon debugging, it hangs as well upon executing the line that extracts
the
selected folder without further explanation. All looks well in the

debugger
prior to executing the line marked with <<<<<< below. When I step over

that
line, it hangs.

With FolderBrowserDialog1
.RootFolder = Environment.SpecialFolder.Desktop

.SelectedPath = Environment.SpecialFolder.Desktop

.Description = "Please select the desired template(s)..."

If .ShowDialog = DialogResult.Cancel Then

Exit Sub

End If

If .ShowDialog = DialogResult.OK Then

DestinationPath = .SelectedPath <<<<<<<<

End If

End With
I noticed the same behavior from a downloaded exe created in VS2005 using the folderbrowser --- thus, I have two indenpent instances of the
browserdialog hanging, one not of my creation.

Any insights?

--
Grumpy Aero Guy



Jun 18 '06 #6
property of the control... that's what's baffling...

--
Grumpy Aero Guy

"Meelis" <me*@hot.ee> wrote in message
news:eE**************@TK2MSFTNGP04.phx.gbl...
Hi
Is DestinaionPath a variable, function or property?

Meelis


"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:RZ*****************@tornado.ohiordc.rr.com...
Fair enough....

BUT, I still hang on the DestinationPath = .SelectedPath line.

--
Grumpy Aero Guy

"Meelis" <me*@hot.ee> wrote in message
news:uY**************@TK2MSFTNGP04.phx.gbl...
> why you call .ShowDialog twice?
>
> i suggest something like this;
>
> Dim dlResult As DialogResult
>
> dlResult = .ShowDialog
>
> If dlResult = Windows.Forms.DialogResult.Cancel Then
> Exit Sub
> ElseIf dlResult = Windows.Forms.DialogResult.Ok Then
> DestinationPath = .SelectedPath
> End If
>
>
> Meelis
>
>
>
>
> "Grumpy Aero Guy" <fb@beerme.org> wrote in message
> news:k5*****************@tornado.ohiordc.rr.com...
>> I have created an app that makes use of the FolderBrowserDialog.
>>
>> Upon building the app, installing and running it, and invoking the
>> form
>> using the dialog, it hangs upon folder selection and goes "not
>> responding"
>>
>> Upon debugging, it hangs as well upon executing the line that extracts
>> the
>> selected folder without further explanation. All looks well in the
> debugger
>> prior to executing the line marked with <<<<<< below. When I step
>> over
> that
>> line, it hangs.
>>
>> With FolderBrowserDialog1
>> .RootFolder = Environment.SpecialFolder.Desktop
>>
>> .SelectedPath = Environment.SpecialFolder.Desktop
>>
>> .Description = "Please select the desired template(s)..."
>>
>> If .ShowDialog = DialogResult.Cancel Then
>>
>> Exit Sub
>>
>> End If
>>
>> If .ShowDialog = DialogResult.OK Then
>>
>> DestinationPath = .SelectedPath <<<<<<<<
>>
>> End If
>>
>> End With
>>
>>
>> I noticed the same behavior from a downloaded exe created in VS2005 using >> the folderbrowser --- thus, I have two indenpent instances of the
>> browserdialog hanging, one not of my creation.
>>
>> Any insights?
>>
>> --
>> Grumpy Aero Guy
>>
>>
>>
>>
>
>



Jun 18 '06 #7
On Sun, 18 Jun 2006 13:28:12 GMT, "Grumpy Aero Guy" <fb@beerme.org>
wrote:
property of the control... that's what's baffling...


No such property as DestinationPath for the FolderBrowserDialog

Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
With FolderBrowserDialog1
.RootFolder = Environment.SpecialFolder.Desktop
.SelectedPath = Environment.SpecialFolder.Desktop.ToString
.Description = "Please select the desired template(s)..."

If .ShowDialog = Windows.Forms.DialogResult.OK Then
Me.Label1.Text = .SelectedPath
End If
End With
End Sub

Gene
Jun 18 '06 #8
My Bad..

It is always hanging here... even in debugger:

Me.Label1.Text = .SelectedPath

It's the .selectedpath line that hangs

--
Grumpy Aero Guy

"gene kelley" <ok**@by.me> wrote in message
news:dq********************************@4ax.com...
On Sun, 18 Jun 2006 13:28:12 GMT, "Grumpy Aero Guy" <fb@beerme.org>
wrote:
property of the control... that's what's baffling...


No such property as DestinationPath for the FolderBrowserDialog

Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
With FolderBrowserDialog1
.RootFolder = Environment.SpecialFolder.Desktop
.SelectedPath = Environment.SpecialFolder.Desktop.ToString
.Description = "Please select the desired template(s)..."

If .ShowDialog = Windows.Forms.DialogResult.OK Then
Me.Label1.Text = .SelectedPath
End If
End With
End Sub

Gene

Jun 19 '06 #9
On Mon, 19 Jun 2006 02:44:16 GMT, "Grumpy Aero Guy" <fb@beerme.org>
wrote:
My Bad..

It is always hanging here... even in debugger:

Me.Label1.Text = .SelectedPath

It's the .selectedpath line that hangs

Start a new project. Add a FolderBrowserDialog, Button and Label.
Copy the code for the Button1_Click event that I previously posted and
paste it to the button click event in the project. Run the example.

What results do you get?

Gene
Jun 19 '06 #10
OK... did it ...

(except i used a textbox instead of a lable, which shouldn't matter...)

When I run the project from within VS2005, it works, although the dialog is
VERY sluggish.... takes a LONG time to navigate to "My Computer", acts as
though it'd deciding whether it wants to hang or physically work....

When I build the solution, and run the .exe in the "Release" folder, it
hangs upon selecting a folder in the dialog....

As I indicated before, I have downloaded a few exe s from CodeProject that
use folderbrowsers, and get the SAME hanging.....

Try the exe thing in the release folder several times. I would be curious if
you get a hang.

FWIW, I did a quick google on "folderbrowserdialog hans VS 2005" and get
quite a few "hits"... this one is interesting:

http://groups.google.com/group/micro...c4cb022010b082

here's MY code:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

With FolderBrowserDialog1

..RootFolder = Environment.SpecialFolder.Desktop

..SelectedPath = Environment.SpecialFolder.Desktop.ToString

..Description = "Please select the desired template(s)..."

If .ShowDialog = Windows.Forms.DialogResult.OK Then

Me.TextBox1.Text = .SelectedPath

End If

End With

End Sub


--
Grumpy Aero Guy

"gene kelley" <ok**@by.me> wrote in message
news:1m********************************@4ax.com...
On Mon, 19 Jun 2006 02:44:16 GMT, "Grumpy Aero Guy" <fb@beerme.org>
wrote:
My Bad..

It is always hanging here... even in debugger:

Me.Label1.Text = .SelectedPath

It's the .selectedpath line that hangs

Start a new project. Add a FolderBrowserDialog, Button and Label.
Copy the code for the Button1_Click event that I previously posted and
paste it to the button click event in the project. Run the example.

What results do you get?

Gene

Jun 19 '06 #11
BTW, a re-boot gives you one shot at it working. Any second attempt, it
hangs. I get similiar behavior described via the link in the previous
e-mail.

--
Grumpy Aero Guy

"Grumpy Aero Guy" <fb@beerme.org> wrote in message
news:lf*****************@tornado.ohiordc.rr.com...
OK... did it ...

(except i used a textbox instead of a lable, which shouldn't matter...)

When I run the project from within VS2005, it works, although the dialog
is VERY sluggish.... takes a LONG time to navigate to "My Computer", acts
as though it'd deciding whether it wants to hang or physically work....

When I build the solution, and run the .exe in the "Release" folder, it
hangs upon selecting a folder in the dialog....

As I indicated before, I have downloaded a few exe s from CodeProject that
use folderbrowsers, and get the SAME hanging.....

Try the exe thing in the release folder several times. I would be curious
if you get a hang.

FWIW, I did a quick google on "folderbrowserdialog hans VS 2005" and get
quite a few "hits"... this one is interesting:

http://groups.google.com/group/micro...c4cb022010b082

here's MY code:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click

With FolderBrowserDialog1

.RootFolder = Environment.SpecialFolder.Desktop

.SelectedPath = Environment.SpecialFolder.Desktop.ToString

.Description = "Please select the desired template(s)..."

If .ShowDialog = Windows.Forms.DialogResult.OK Then

Me.TextBox1.Text = .SelectedPath

End If

End With

End Sub


--
Grumpy Aero Guy

"gene kelley" <ok**@by.me> wrote in message
news:1m********************************@4ax.com...
On Mon, 19 Jun 2006 02:44:16 GMT, "Grumpy Aero Guy" <fb@beerme.org>
wrote:
My Bad..

It is always hanging here... even in debugger:

Me.Label1.Text = .SelectedPath

It's the .selectedpath line that hangs

Start a new project. Add a FolderBrowserDialog, Button and Label.
Copy the code for the Button1_Click event that I previously posted and
paste it to the button click event in the project. Run the example.

What results do you get?

Gene


Jun 19 '06 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Anja | last post by:
I have installed the new Visual Studio 2003 and implemented the FolderBrowserDialog. Everything works fine, if I open the FolderBrowserDialog before opening a Database Connection. If I open...
25
by: | last post by:
Hi, The following code shows the FolderBrowserDialog = broken. FolderBrowserDialog folderDialog = new FolderBrowserDialog(); folderDialog.ShowNewFolderButton = false;...
9
by: hhh12347 | last post by:
FolderBrowserDialog crashes on my Windows 2000 computer. Here is a C# test program: using System; using System.Windows.Forms; public class TestForm : Form { FolderBrowserDialog...
10
by: Tomas Vera | last post by:
Hello All, I'ma having trouble getting GetCurrentProcess() to work properly. What I'm trying to accomplish is list all running processes. But my call get GetProcesses() hangs. While testing...
5
by: Loane Sharp | last post by:
Hi there I've got a hang of a problem ... I'm running the .NET framework (2.0.40903), SQL Server 2000 and SQL Express 2005 on Windows XP Pro on a pretty good and new IBM Thinkpad X41. Some...
12
by: JohnR | last post by:
I have narrowed a problem down to a simple example. A form with two buttons. One EXIT and one FBD. The exit button does an "END" to end the application. The FBD button does a...
3
by: Trevor | last post by:
I need to find a way to see if the user clicked cancel on a FolderBrowserDialog. Thanks for any help. Trevor From http://www.developmentnow.com/g/38_0_0_0_0_0/dotnet-languages-vb.htm Posted...
3
by: Edwin Smith | last post by:
I have a 2 form project in VS2005 that now hangs whenever I try to do anything with the second form. This seems to have started when I added some SQL tables from a Pervasive v.9 database using the...
3
by: ImageAnalyst | last post by:
I'm trying to have the user browse to a folder, once they click a button, using the standard FolderBrowserDialog tool, System.Windows.Forms.FolderBrowserDialog. I'm using VB.Net 2005. There is a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.