473,625 Members | 3,251 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Copy directory listing to text file

I'd like to copy the listing of a directory (& sub directories) to a text
file in vb.net.

I'm looking for teh equivilant of the DOS command dir [SourceDirectory] /s >
TargetFile.txt.
Thanks!
Nov 20 '05 #1
11 2108
* "F. Michael Miller" <fm***@netzero. net> scripsit:
I'd like to copy the listing of a directory (& sub directories) to a text
file in vb.net.

I'm looking for teh equivilant of the DOS command dir [SourceDirectory] /s >
TargetFile.txt.


Enumerating files in a folder and its subfolders:

<http://www.mvps.org/dotnet/dotnet/samples/filesystem/downloads/RecursiveFileSc an.zip>

For writing the file, you can use 'System.IO.Stre amWriter'.

--
Herfried K. Wagner [MVP]
<http://www.mvps.org/dotnet>
Nov 20 '05 #2
In article <40************ ***********@new sreader.visi.co m>, F. Michael Miller wrote:
I'd like to copy the listing of a directory (& sub directories) to a text
file in vb.net.

I'm looking for teh equivilant of the DOS command dir [SourceDirectory] /s >
TargetFile.txt.
Thanks!


How 'bout this:

Option Explicit On
Option Strict On

Imports System.Diagnost ics
Imports System.IO

Public Class Form1
Inherits System.Windows. Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeCompo nent()

'Add any initialization after the InitializeCompo nent() call

End Sub

'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As
Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Disp ose()
End If
End If
MyBase.Dispose( disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.Componen tModel.IContain er

'NOTE: The following procedure is required by the Windows Form
Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents sourceDirectory As System.Windows. Forms.TextBox
Friend WithEvents outputFile As System.Windows. Forms.TextBox
Friend WithEvents Label1 As System.Windows. Forms.Label
Friend WithEvents Label2 As System.Windows. Forms.Label
Friend WithEvents go As System.Windows. Forms.Button
<System.Diagnos tics.DebuggerSt epThrough()> Private Sub
InitializeCompo nent()
Me.sourceDirect ory = New System.Windows. Forms.TextBox
Me.outputFile = New System.Windows. Forms.TextBox
Me.Label1 = New System.Windows. Forms.Label
Me.Label2 = New System.Windows. Forms.Label
Me.go = New System.Windows. Forms.Button
Me.SuspendLayou t()
'
'sourceDirector y
'
Me.sourceDirect ory.Location = New System.Drawing. Point(108, 4)
Me.sourceDirect ory.Name = "sourceDirector y"
Me.sourceDirect ory.Size = New System.Drawing. Size(180, 20)
Me.sourceDirect ory.TabIndex = 0
Me.sourceDirect ory.Text = ""
'
'outputFile
'
Me.outputFile.L ocation = New System.Drawing. Point(108, 32)
Me.outputFile.N ame = "outputFile "
Me.outputFile.S ize = New System.Drawing. Size(180, 20)
Me.outputFile.T abIndex = 1
Me.outputFile.T ext = ""
'
'Label1
'
Me.Label1.Locat ion = New System.Drawing. Point(4, 4)
Me.Label1.Name = "Label1"
Me.Label1.TabIn dex = 2
Me.Label1.Text = "Source Directory"
Me.Label1.TextA lign = System.Drawing. ContentAlignmen t.MiddleLeft
'
'Label2
'
Me.Label2.Locat ion = New System.Drawing. Point(4, 32)
Me.Label2.Name = "Label2"
Me.Label2.TabIn dex = 3
Me.Label2.Text = "Output File Name"
Me.Label2.TextA lign = System.Drawing. ContentAlignmen t.MiddleLeft
'
'go
'
Me.go.Location = New System.Drawing. Point(109, 64)
Me.go.Name = "go"
Me.go.TabIndex = 4
Me.go.Text = "&Go"
'
'Form1
'
Me.AutoScaleBas eSize = New System.Drawing. Size(5, 13)
Me.ClientSize = New System.Drawing. Size(292, 93)
Me.Controls.Add (Me.go)
Me.Controls.Add (Me.Label2)
Me.Controls.Add (Me.Label1)
Me.Controls.Add (Me.outputFile)
Me.Controls.Add (Me.sourceDirec tory)
Me.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout (False)

End Sub

#End Region

Private Sub go_Click(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles go.Click
Dim command As New Process

go.Enabled = False

With command.StartIn fo
.FileName =
System.Environm ent.GetEnvironm entVariable("CO MSPEC")
.Arguments = "/c dir /s " & Me.sourceDirect ory.Text
.CreateNoWindow = True
.UseShellExecut e = False
.RedirectStanda rdOutput = True
End With

command.Start()

Dim output As StreamWriter = File.CreateText (Me.outputFile. Text)
Dim line As String = command.Standar dOutput.ReadLin e()
Do Until line Is Nothing
output.WriteLin e(line)
line = command.Standar dOutput.ReadLin e()
Loop

output.Close()
command.Dispose ()
go.Enabled = True
End Sub

End Class

Obviously, there is no error trapping, etc. in this - so you would want
to add that in a real world scenario.

--
Tom Shelton [MVP]
OS Name: Microsoft Windows XP Professional
OS Version: 5.1.2600 Service Pack 1 Build 2600
System Up Time: 0 Days, 19 Hours, 40 Minutes, 6 Seconds
Nov 20 '05 #3
Good example.
regards - OHM
Tom Shelton wrote:
In article <40************ ***********@new sreader.visi.co m>, F.
Michael Miller wrote:
I'd like to copy the listing of a directory (& sub directories) to a
text file in vb.net.

I'm looking for teh equivilant of the DOS command dir
[SourceDirectory] /s > TargetFile.txt.
Thanks!


How 'bout this:

Option Explicit On
Option Strict On

Imports System.Diagnost ics
Imports System.IO

Public Class Form1
Inherits System.Windows. Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeCompo nent()

'Add any initialization after the InitializeCompo nent() call

End Sub

'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As
Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Disp ose()
End If
End If
MyBase.Dispose( disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.Componen tModel.IContain er

'NOTE: The following procedure is required by the Windows Form
Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents sourceDirectory As System.Windows. Forms.TextBox
Friend WithEvents outputFile As System.Windows. Forms.TextBox
Friend WithEvents Label1 As System.Windows. Forms.Label
Friend WithEvents Label2 As System.Windows. Forms.Label
Friend WithEvents go As System.Windows. Forms.Button
<System.Diagnos tics.DebuggerSt epThrough()> Private Sub
InitializeCompo nent()
Me.sourceDirect ory = New System.Windows. Forms.TextBox
Me.outputFile = New System.Windows. Forms.TextBox
Me.Label1 = New System.Windows. Forms.Label
Me.Label2 = New System.Windows. Forms.Label
Me.go = New System.Windows. Forms.Button
Me.SuspendLayou t()
'
'sourceDirector y
'
Me.sourceDirect ory.Location = New System.Drawing. Point(108, 4)
Me.sourceDirect ory.Name = "sourceDirector y"
Me.sourceDirect ory.Size = New System.Drawing. Size(180, 20)
Me.sourceDirect ory.TabIndex = 0
Me.sourceDirect ory.Text = ""
'
'outputFile
'
Me.outputFile.L ocation = New System.Drawing. Point(108, 32)
Me.outputFile.N ame = "outputFile "
Me.outputFile.S ize = New System.Drawing. Size(180, 20)
Me.outputFile.T abIndex = 1
Me.outputFile.T ext = ""
'
'Label1
'
Me.Label1.Locat ion = New System.Drawing. Point(4, 4)
Me.Label1.Name = "Label1"
Me.Label1.TabIn dex = 2
Me.Label1.Text = "Source Directory"
Me.Label1.TextA lign =
System.Drawing. ContentAlignmen t.MiddleLeft '
'Label2
'
Me.Label2.Locat ion = New System.Drawing. Point(4, 32)
Me.Label2.Name = "Label2"
Me.Label2.TabIn dex = 3
Me.Label2.Text = "Output File Name"
Me.Label2.TextA lign =
System.Drawing. ContentAlignmen t.MiddleLeft '
'go
'
Me.go.Location = New System.Drawing. Point(109, 64)
Me.go.Name = "go"
Me.go.TabIndex = 4
Me.go.Text = "&Go"
'
'Form1
'
Me.AutoScaleBas eSize = New System.Drawing. Size(5, 13)
Me.ClientSize = New System.Drawing. Size(292, 93)
Me.Controls.Add (Me.go)
Me.Controls.Add (Me.Label2)
Me.Controls.Add (Me.Label1)
Me.Controls.Add (Me.outputFile)
Me.Controls.Add (Me.sourceDirec tory)
Me.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout (False)

End Sub

#End Region

Private Sub go_Click(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles go.Click
Dim command As New Process

go.Enabled = False

With command.StartIn fo
.FileName =
System.Environm ent.GetEnvironm entVariable("CO MSPEC")
.Arguments = "/c dir /s " & Me.sourceDirect ory.Text
.CreateNoWindow = True
.UseShellExecut e = False
.RedirectStanda rdOutput = True
End With

command.Start()

Dim output As StreamWriter =
File.CreateText (Me.outputFile. Text) Dim line As String =
command.Standar dOutput.ReadLin e() Do Until line Is Nothing
output.WriteLin e(line)
line = command.Standar dOutput.ReadLin e()
Loop

output.Close()
command.Dispose ()
go.Enabled = True
End Sub

End Class

Obviously, there is no error trapping, etc. in this - so you would
want
to add that in a real world scenario.


--
Best Regards - OHM

O_H_M{at}BTInte rnet{dot}com
Nov 20 '05 #4
Cor
Hi F. Michael,

Have a look at the control OpenFileDialog with multiselect

Just an alternative

Cor
Nov 20 '05 #5
I shall gives these a shot, but none of them are exactly what I'm looking
for.

I have an app that checks for the existance of a large list of files. The
original technique was to use the DIR function to determine if the file
existed. This is too slow. It's much faster to dupm the directory to a
text file and search that instead.

My gut feeling is that the methods presented so far will be slower then
opening a DOS session and using dir [SourcePath] /s > TargetFile.txt. I was
trying to do this with the SHELL function but without success.

"Tom Shelton" <to*@mtogden.co m> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
In article <40************ ***********@new sreader.visi.co m>, F. Michael

Miller wrote:
I'd like to copy the listing of a directory (& sub directories) to a text file in vb.net.

I'm looking for teh equivilant of the DOS command dir [SourceDirectory] /s > TargetFile.txt.
Thanks!


How 'bout this:

Option Explicit On
Option Strict On

Imports System.Diagnost ics
Imports System.IO

Public Class Form1
Inherits System.Windows. Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeCompo nent()

'Add any initialization after the InitializeCompo nent() call

End Sub

'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As
Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Disp ose()
End If
End If
MyBase.Dispose( disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.Componen tModel.IContain er

'NOTE: The following procedure is required by the Windows Form
Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents sourceDirectory As System.Windows. Forms.TextBox
Friend WithEvents outputFile As System.Windows. Forms.TextBox
Friend WithEvents Label1 As System.Windows. Forms.Label
Friend WithEvents Label2 As System.Windows. Forms.Label
Friend WithEvents go As System.Windows. Forms.Button
<System.Diagnos tics.DebuggerSt epThrough()> Private Sub
InitializeCompo nent()
Me.sourceDirect ory = New System.Windows. Forms.TextBox
Me.outputFile = New System.Windows. Forms.TextBox
Me.Label1 = New System.Windows. Forms.Label
Me.Label2 = New System.Windows. Forms.Label
Me.go = New System.Windows. Forms.Button
Me.SuspendLayou t()
'
'sourceDirector y
'
Me.sourceDirect ory.Location = New System.Drawing. Point(108, 4)
Me.sourceDirect ory.Name = "sourceDirector y"
Me.sourceDirect ory.Size = New System.Drawing. Size(180, 20)
Me.sourceDirect ory.TabIndex = 0
Me.sourceDirect ory.Text = ""
'
'outputFile
'
Me.outputFile.L ocation = New System.Drawing. Point(108, 32)
Me.outputFile.N ame = "outputFile "
Me.outputFile.S ize = New System.Drawing. Size(180, 20)
Me.outputFile.T abIndex = 1
Me.outputFile.T ext = ""
'
'Label1
'
Me.Label1.Locat ion = New System.Drawing. Point(4, 4)
Me.Label1.Name = "Label1"
Me.Label1.TabIn dex = 2
Me.Label1.Text = "Source Directory"
Me.Label1.TextA lign = System.Drawing. ContentAlignmen t.MiddleLeft
'
'Label2
'
Me.Label2.Locat ion = New System.Drawing. Point(4, 32)
Me.Label2.Name = "Label2"
Me.Label2.TabIn dex = 3
Me.Label2.Text = "Output File Name"
Me.Label2.TextA lign = System.Drawing. ContentAlignmen t.MiddleLeft
'
'go
'
Me.go.Location = New System.Drawing. Point(109, 64)
Me.go.Name = "go"
Me.go.TabIndex = 4
Me.go.Text = "&Go"
'
'Form1
'
Me.AutoScaleBas eSize = New System.Drawing. Size(5, 13)
Me.ClientSize = New System.Drawing. Size(292, 93)
Me.Controls.Add (Me.go)
Me.Controls.Add (Me.Label2)
Me.Controls.Add (Me.Label1)
Me.Controls.Add (Me.outputFile)
Me.Controls.Add (Me.sourceDirec tory)
Me.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout (False)

End Sub

#End Region

Private Sub go_Click(ByVal sender As System.Object, ByVal e As
System.EventArg s) Handles go.Click
Dim command As New Process

go.Enabled = False

With command.StartIn fo
.FileName =
System.Environm ent.GetEnvironm entVariable("CO MSPEC")
.Arguments = "/c dir /s " & Me.sourceDirect ory.Text
.CreateNoWindow = True
.UseShellExecut e = False
.RedirectStanda rdOutput = True
End With

command.Start()

Dim output As StreamWriter = File.CreateText (Me.outputFile. Text)
Dim line As String = command.Standar dOutput.ReadLin e()
Do Until line Is Nothing
output.WriteLin e(line)
line = command.Standar dOutput.ReadLin e()
Loop

output.Close()
command.Dispose ()
go.Enabled = True
End Sub

End Class

Obviously, there is no error trapping, etc. in this - so you would want
to add that in a real world scenario.

--
Tom Shelton [MVP]
OS Name: Microsoft Windows XP Professional
OS Version: 5.1.2600 Service Pack 1 Build 2600
System Up Time: 0 Days, 19 Hours, 40 Minutes, 6 Seconds

Nov 20 '05 #6
Cor
Hi F,

Have a look at this just the answer

http://msdn.microsoft.com/library/de...oriestopic.asp

Cor
Nov 20 '05 #7
In article <40************ ***********@new sreader.visi.co m>, F. Michael Miller wrote:
I shall gives these a shot, but none of them are exactly what I'm looking
for.

I have an app that checks for the existance of a large list of files. The
original technique was to use the DIR function to determine if the file
existed. This is too slow. It's much faster to dupm the directory to a
text file and search that instead.

Wow... Maybe something like:

const dirName as string = "c:\whateve r"

dim searchFile as streamreader = file.opentext(" filelist.txt")
dim searchlist() as string = searchFile.Read ToEnd().Split(E nvironment.NewL ine)

for i as integer = 0 to searchlist.getu pperbound(0)
if file.exists(pat h.combine(dirNa me, searchlist(i)) Then
' file exists
else
file.doesn't exist
end if
next i

should be fairly easy to modify this into a recursive routine that would
scan an entire directory tree if needs be...
My gut feeling is that the methods presented so far will be slower then
opening a DOS session and using dir [SourcePath] /s > TargetFile.txt. I was
trying to do this with the SHELL function but without success.


My method would have been somewhat slower - but I don't think by much,
since you are simply running the same command... Of course, you could
just put the redirect on the command line and then call it like this...
with command.StartIn fo
.FileName = System.Environm ent.GetEnvironm entVariable("CO MSPEC")
.Arguments = "/c dir /s " & Me.sourceDirect ory.Text _
& " > " & outputFile.Text
.CreateNoWindow = True
.UseShellExecut e = False
End With

command.Start()
command.WaitFor Exit()
command.Dispose ()

Read in your output file... But personally, I think your going to want
to take a closer look at the System.IO namespace, especially the
Directory, File, and Path classes.

--
Tom Shelton [MVP]
OS Name: Microsoft Windows XP Professional
OS Version: 5.1.2600 Service Pack 1 Build 2600
System Up Time: 0 Days, 21 Hours, 9 Minutes, 45 Seconds
Nov 20 '05 #8
I must be missing an Import statement. It doesn't like the
with Command.StartIn fo line, or any of the other command. lines.

"Tom Shelton" <to*@mtogden.co m> wrote in message
news:OA******** ******@TK2MSFTN GP09.phx.gbl...
In article <40************ ***********@new sreader.visi.co m>, F. Michael Miller wrote:
I shall gives these a shot, but none of them are exactly what I'm looking for.

I have an app that checks for the existance of a large list of files. The original technique was to use the DIR function to determine if the file
existed. This is too slow. It's much faster to dupm the directory to a
text file and search that instead.


Wow... Maybe something like:

const dirName as string = "c:\whateve r"

dim searchFile as streamreader = file.opentext(" filelist.txt")
dim searchlist() as string =

searchFile.Read ToEnd().Split(E nvironment.NewL ine)
for i as integer = 0 to searchlist.getu pperbound(0)
if file.exists(pat h.combine(dirNa me, searchlist(i)) Then
' file exists
else
file.doesn't exist
end if
next i

should be fairly easy to modify this into a recursive routine that would
scan an entire directory tree if needs be...
My gut feeling is that the methods presented so far will be slower then
opening a DOS session and using dir [SourcePath] /s > TargetFile.txt. I was trying to do this with the SHELL function but without success.


My method would have been somewhat slower - but I don't think by much,
since you are simply running the same command... Of course, you could
just put the redirect on the command line and then call it like this...
with command.StartIn fo
.FileName = System.Environm ent.GetEnvironm entVariable("CO MSPEC")
.Arguments = "/c dir /s " & Me.sourceDirect ory.Text _
& " > " & outputFile.Text
.CreateNoWindow = True
.UseShellExecut e = False
End With

command.Start()
command.WaitFor Exit()
command.Dispose ()

Read in your output file... But personally, I think your going to want
to take a closer look at the System.IO namespace, especially the
Directory, File, and Path classes.

--
Tom Shelton [MVP]
OS Name: Microsoft Windows XP Professional
OS Version: 5.1.2600 Service Pack 1 Build 2600
System Up Time: 0 Days, 21 Hours, 9 Minutes, 45 Seconds

Nov 20 '05 #9
In article <40************ ***********@new sreader.visi.co m>, F. Michael Miller wrote:
I must be missing an Import statement. It doesn't like the
with Command.StartIn fo line, or any of the other command. lines.


Look back at my original example - this was just a slight modification
of that, so I didn't post the entire thing. This was just part where I
was filling in the StartInfo information.

I seriously think you may want to look at Cor's link, and read up on
what's available in the System.IO namespace.

--
Tom Shelton [MVP]
OS Name: Microsoft Windows XP Professional
OS Version: 5.1.2600 Service Pack 1 Build 2600
System Up Time: 0 Days, 22 Hours, 39 Minutes, 42 Seconds
Nov 20 '05 #10

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

Similar topics

15
2518
by: Kim Jensen | last post by:
I'd like to make a directory listing where instead of the entire filename I need it to show the filename minus the extention and get the value of charname= in the file itself. I've been told that I had to turn the directory listing into an array and then use "foreach (array as item)" to go through and open each file but I've tried several different approaches and I just can't get it to work. I've been able to make it list the directory...
1
3917
by: Gema Gema | last post by:
I have a large collection of directories full of various files and am looking to create custom text files for the contents of each directory. Here is the situation: The directories are named with a name and number, i.e. Smith1234567. I am looking to create a text file named with the number portion of the directory name (1234567.txt). The contents of the text file would look similar to the following, where the "TIF" files at the end of...
2
17632
by: Dean | last post by:
Hi I've got a question relating to using Javascript on an Intranet. I have a directory with a list of files in the format week36.xls, week37.xls and I want to write a script that will scan all the files in the directory and select the one with the highest week number then display in the browser window. A brief search hasn't revealed any code to do this so I just want to know if it is possible and what the function names are that...
0
2584
by: Tess | last post by:
Hi, Long time reader, first time poster... Any help is appreciated. I have a few questions regarding Winform controls embedded within an html page. For more info please see the appendix. Now, for the questions. 1. A button on my control executes the System.IO.Directory.GetDirectories funtion (the scanned directory resides on the hosting web server). What credentials is this
8
11059
by: gil | last post by:
Is it possible to prevent a browser from listing the entire contents of a folder? The site, is hosted on my ISP with the following layout- site/ "user name from ISP" pagefile (dir) index.html site/pagefile/
5
2701
by: GenCode | last post by:
What is the best way to read a "readable" web directory... I know I can do this Client.DownloadFile("http://www.mydomain.com/readabledir/", c:\ \dir.txt"); But that gives me the html and all the other tags...all I want is a directory listing of all the *.gif in this dir and not all the html Now I know I can parse the html to get the gif file names...but I
4
3245
by: techusky | last post by:
I have a *very* simple script written that displays the directory listing of the current working directory, but I am having some difficulty when I try to change folders. Basically, I have my $dir variable set to this: --- $dir = getcwd() . "\\" . $nav; --- but for some reason the script does not actually display the contents of the directory if you change from the directory the script is located in. Here is my code if someone is willing...
2
2522
by: marcusadeleon | last post by:
Hi, I was wondering how to open up a web directory to get a file listing. The directory I want to open allows directory listings, but has a directory password. Meaning it gives me a prompt to put in a username and password when I go to the web address in internet explorer. Once I put in the correct username and password, it shows the directory listing.
10
4951
by: Jason | last post by:
I want to create a simple program with Two buttons on the form. BUTTON 1 - BACKUP PREFS this will do the following: Copy C:\Documents and Settings\%USERNAME%\Application Data\FileZilla \sitemanager.xml to this location: \\drake\pvt\%USERNAME%\FileZilla-Prefs\ BUTTON 2 - RESTORE PREFS this will do the opposite:
0
8256
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
8635
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8356
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,...
1
6118
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5570
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
4089
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
4193
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2621
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1803
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.