473,788 Members | 2,898 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

FolderBrowserDi alog hangs in 2005

I have created an app that makes use of the FolderBrowserDi alog.

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 FolderBrowserDi alog1
..RootFolder = Environment.Spe cialFolder.Desk top

..SelectedPath = Environment.Spe cialFolder.Desk top

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

If .ShowDialog = DialogResult.Ca ncel 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 3023
why you call .ShowDialog twice?

i suggest something like this;

Dim dlResult As DialogResult

dlResult = .ShowDialog

If dlResult = Windows.Forms.D ialogResult.Can cel Then
Exit Sub
ElseIf dlResult = Windows.Forms.D ialogResult.Ok Then
DestinationPath = .SelectedPath
End If
Meelis


"Grumpy Aero Guy" <fb@beerme.or g> wrote in message
news:k5******** *********@torna do.ohiordc.rr.c om...
I have created an app that makes use of the FolderBrowserDi alog.

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 FolderBrowserDi alog1
.RootFolder = Environment.Spe cialFolder.Desk top

.SelectedPath = Environment.Spe cialFolder.Desk top

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

If .ShowDialog = DialogResult.Ca ncel 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******** ******@TK2MSFTN GP04.phx.gbl...
why you call .ShowDialog twice?

i suggest something like this;

Dim dlResult As DialogResult

dlResult = .ShowDialog

If dlResult = Windows.Forms.D ialogResult.Can cel Then
Exit Sub
ElseIf dlResult = Windows.Forms.D ialogResult.Ok Then
DestinationPath = .SelectedPath
End If
Meelis


"Grumpy Aero Guy" <fb@beerme.or g> wrote in message
news:k5******** *********@torna do.ohiordc.rr.c om...
I have created an app that makes use of the FolderBrowserDi alog.

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 FolderBrowserDi alog1
.RootFolder = Environment.Spe cialFolder.Desk top

.SelectedPath = Environment.Spe cialFolder.Desk top

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

If .ShowDialog = DialogResult.Ca ncel 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 FolderNameEdito r

Public Enum enuFolderBrowse rFolder
Desktop = FolderBrowserFo lder.Desktop
Favorites = FolderBrowserFo lder.Favorites
MyComputer = FolderBrowserFo lder.MyComputer
MyDocuments = FolderBrowserFo lder.MyDocument s
MyPictures = FolderBrowserFo lder.MyPictures
NetAndDialUpCon nections =
FolderBrowserFo lder.NetAndDial UpConnections
NetworkNeighbor hood = FolderBrowserFo lder.NetworkNei ghborhood
Printers = FolderBrowserFo lder.Printers
Recent = FolderBrowserFo lder.Recent
SendTo = FolderBrowserFo lder.SendTo
StartMenu = FolderBrowserFo lder.StartMenu
Templates = FolderBrowserFo lder.Templates
End Enum

'The FolderBrowserSt yles collection is a member of FolderNameEdito r
Public Enum enuFolderBrowse rStyles
BrowseForComput er = FolderBrowserSt yles.BrowseForC omputer
BrowseForEveryt hing = FolderBrowserSt yles.BrowseForE verything
BrowseForPrinte r = FolderBrowserSt yles.BrowseForP rinter
RestrictToDomai n = FolderBrowserSt yles.RestrictTo Domain
RestrictToFiles ystem = FolderBrowserSt yles.RestrictTo Filesystem
RestrictToSubfo lders = FolderBrowserSt yles.RestrictTo Subfolders
ShowTextBox = FolderBrowserSt yles.ShowTextBo x
End Enum

Public StartLocation As enuFolderBrowse rFolder =
enuFolderBrowse rFolder.MyDocum ents '.BrowseForComp uter
Public Style As enuFolderBrowse rStyles =
enuFolderBrowse rStyles.ShowTex tBox

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.DialogRes ult
With mobjFB
.Description = mstrDescription
.StartLocation = CType(Me.StartL ocation,
FolderNameEdito r.FolderBrowser Folder)
.Style = CType(Me.Style, FolderNameEdito r.FolderBrowser Styles)
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.ShowBrows er = Windows.Forms.D ialogResult.OK Then
MessageBox.Show (objFB.Path)
End If
--------------------------------

"Grumpy Aero Guy" <fb@beerme.or g> wrote in message
news:k5******** *********@torna do.ohiordc.rr.c om...
I have created an app that makes use of the FolderBrowserDi alog.

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 FolderBrowserDi alog1
.RootFolder = Environment.Spe cialFolder.Desk top

.SelectedPath = Environment.Spe cialFolder.Desk top

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

If .ShowDialog = DialogResult.Ca ncel 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.p lease> wrote in message
news:a0******** ***********@big news3.bellsouth .net...
Here is a folder browser that does not use the component.....

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

Public Class BrowseForFolder
Inherits FolderNameEdito r

Public Enum enuFolderBrowse rFolder
Desktop = FolderBrowserFo lder.Desktop
Favorites = FolderBrowserFo lder.Favorites
MyComputer = FolderBrowserFo lder.MyComputer
MyDocuments = FolderBrowserFo lder.MyDocument s
MyPictures = FolderBrowserFo lder.MyPictures
NetAndDialUpCon nections =
FolderBrowserFo lder.NetAndDial UpConnections
NetworkNeighbor hood = FolderBrowserFo lder.NetworkNei ghborhood
Printers = FolderBrowserFo lder.Printers
Recent = FolderBrowserFo lder.Recent
SendTo = FolderBrowserFo lder.SendTo
StartMenu = FolderBrowserFo lder.StartMenu
Templates = FolderBrowserFo lder.Templates
End Enum

'The FolderBrowserSt yles collection is a member of FolderNameEdito r
Public Enum enuFolderBrowse rStyles
BrowseForComput er = FolderBrowserSt yles.BrowseForC omputer
BrowseForEveryt hing = FolderBrowserSt yles.BrowseForE verything
BrowseForPrinte r = FolderBrowserSt yles.BrowseForP rinter
RestrictToDomai n = FolderBrowserSt yles.RestrictTo Domain
RestrictToFiles ystem = FolderBrowserSt yles.RestrictTo Filesystem
RestrictToSubfo lders = FolderBrowserSt yles.RestrictTo Subfolders
ShowTextBox = FolderBrowserSt yles.ShowTextBo x
End Enum

Public StartLocation As enuFolderBrowse rFolder =
enuFolderBrowse rFolder.MyDocum ents '.BrowseForComp uter
Public Style As enuFolderBrowse rStyles =
enuFolderBrowse rStyles.ShowTex tBox

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.DialogRes ult
With mobjFB
.Description = mstrDescription
.StartLocation = CType(Me.StartL ocation,
FolderNameEdito r.FolderBrowser Folder)
.Style = CType(Me.Style, FolderNameEdito r.FolderBrowser Styles)
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.ShowBrows er = Windows.Forms.D ialogResult.OK Then
MessageBox.Show (objFB.Path)
End If
--------------------------------

"Grumpy Aero Guy" <fb@beerme.or g> wrote in message
news:k5******** *********@torna do.ohiordc.rr.c om...
I have created an app that makes use of the FolderBrowserDi alog.

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 FolderBrowserDi alog1
.RootFolder = Environment.Spe cialFolder.Desk top

.SelectedPath = Environment.Spe cialFolder.Desk top

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

If .ShowDialog = DialogResult.Ca ncel 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.or g> wrote in message
news:RZ******** *********@torna do.ohiordc.rr.c om...
Fair enough....

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

--
Grumpy Aero Guy

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

i suggest something like this;

Dim dlResult As DialogResult

dlResult = .ShowDialog

If dlResult = Windows.Forms.D ialogResult.Can cel Then
Exit Sub
ElseIf dlResult = Windows.Forms.D ialogResult.Ok Then
DestinationPath = .SelectedPath
End If
Meelis


"Grumpy Aero Guy" <fb@beerme.or g> wrote in message
news:k5******** *********@torna do.ohiordc.rr.c om...
I have created an app that makes use of the FolderBrowserDi alog.

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 FolderBrowserDi alog1
.RootFolder = Environment.Spe cialFolder.Desk top

.SelectedPath = Environment.Spe cialFolder.Desk top

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

If .ShowDialog = DialogResult.Ca ncel 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******** ******@TK2MSFTN GP04.phx.gbl...
Hi
Is DestinaionPath a variable, function or property?

Meelis


"Grumpy Aero Guy" <fb@beerme.or g> wrote in message
news:RZ******** *********@torna do.ohiordc.rr.c om...
Fair enough....

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

--
Grumpy Aero Guy

"Meelis" <me*@hot.ee> wrote in message
news:uY******** ******@TK2MSFTN GP04.phx.gbl...
> why you call .ShowDialog twice?
>
> i suggest something like this;
>
> Dim dlResult As DialogResult
>
> dlResult = .ShowDialog
>
> If dlResult = Windows.Forms.D ialogResult.Can cel Then
> Exit Sub
> ElseIf dlResult = Windows.Forms.D ialogResult.Ok Then
> DestinationPath = .SelectedPath
> End If
>
>
> Meelis
>
>
>
>
> "Grumpy Aero Guy" <fb@beerme.or g> wrote in message
> news:k5******** *********@torna do.ohiordc.rr.c om...
>> I have created an app that makes use of the FolderBrowserDi alog.
>>
>> 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 FolderBrowserDi alog1
>> .RootFolder = Environment.Spe cialFolder.Desk top
>>
>> .SelectedPath = Environment.Spe cialFolder.Desk top
>>
>> .Description = "Please select the desired template(s)..."
>>
>> If .ShowDialog = DialogResult.Ca ncel 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.or g>
wrote:
property of the control... that's what's baffling...


No such property as DestinationPath for the FolderBrowserDi alog

Private Sub Button1_Click(B yVal sender As System.Object, _
ByVal e As System.EventArg s) Handles Button1.Click
With FolderBrowserDi alog1
.RootFolder = Environment.Spe cialFolder.Desk top
.SelectedPath = Environment.Spe cialFolder.Desk top.ToString
.Description = "Please select the desired template(s)..."

If .ShowDialog = Windows.Forms.D ialogResult.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.c om...
On Sun, 18 Jun 2006 13:28:12 GMT, "Grumpy Aero Guy" <fb@beerme.or g>
wrote:
property of the control... that's what's baffling...


No such property as DestinationPath for the FolderBrowserDi alog

Private Sub Button1_Click(B yVal sender As System.Object, _
ByVal e As System.EventArg s) Handles Button1.Click
With FolderBrowserDi alog1
.RootFolder = Environment.Spe cialFolder.Desk top
.SelectedPath = Environment.Spe cialFolder.Desk top.ToString
.Description = "Please select the desired template(s)..."

If .ShowDialog = Windows.Forms.D ialogResult.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.or g>
wrote:
My Bad..

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

Me.Label1.Te xt = .SelectedPath

It's the .selectedpath line that hangs

Start a new project. Add a FolderBrowserDi alog, 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

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

Similar topics

0
1877
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 the FolderBrowserDialog after I opened the database connection no folders will be displayed in the FolderBrowserDialog. It's empty.
25
2241
by: | last post by:
Hi, The following code shows the FolderBrowserDialog = broken. FolderBrowserDialog folderDialog = new FolderBrowserDialog(); folderDialog.ShowNewFolderButton = false; folderDialog.ShowDialog(); Setting ShowNewFolderButton to false does bugger all. If I set this to false it is STILL shown. Genius.
9
2426
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 folderBrowserDlg; OpenFileDialog openFileDlg;
10
1959
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 things out I found that the tiny program listed below hangs as well. Am I missing something?
5
2312
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 time ago, following the advice in http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvs05/html/codecompilation.asp, I used aspnet_compiler.exe to compile my application. Soon thereafter, every
12
5880
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 FolderBrowserDialog and nothing else. When I start the application and hit EXIT everything works fine. However if it display the FBD box (even if I don't pick a folder and immediately hit cancel) and then try to exit one of two things happens. Either (1) the...
3
4110
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 via DevelopmentNow.com Groups http://www.developmentnow.com
3
6064
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 Pervasive ODBC driver. The devenv.exe process hangs and will not respond with about 50% cpu usage and about 100 megs of memory used. I am running it on an Athlon 64 bit dual core with 32 bit Windows XP pro. I have 2 megs of memory so I don't...
3
6730
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 property, SelectedPath, that you're supposed to be able to set that will initialize the folder browser window so that the tree structure is already opened at that folder. The problem is that it doesn't seem to work. No matter what I put, it has...
0
9656
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10364
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10110
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9967
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8993
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5398
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5536
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.