473,768 Members | 8,216 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

word automation vb.net

I've been building an application that will merge fields in a text file with
a word template, save the resulting word file out to the user's hard drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at the
end of the process due to the file being locked by the email process. It
appears to take longer than the code takes to complete due to virus checking
software that intercepts the mail before releasing it (at least that's what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And I
don't think I want to hold up the completion of the code process until the
email gets sent in case the email process takes longer on some machines than
others.

I'm not sure if there is a better way to handle the attachment in the code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later. Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

------------

WordDoc.SaveAs( sSaveFileName)
Do While Not WordDoc.Saved
Application.DoE vents()
Loop
WordDoc.Close(W ord.WdSaveOptio ns.wdDoNotSaveC hanges)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fr omaddress")
Dim Toaddress As New MailAddress("to address")
Dim myMail As New MailMessage(Fro maddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSav eFileName)
myMail.Attachme nts.Add(Attachm entFile)
myMail.Priority = MailPriority.Hi gh
Dim client As New SmtpClient
client.Host = "hostaddres s"
client.Send(myM ail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File. Delete(sSaveFil eName)


Nov 27 '06 #1
12 3456
sorry bud it is as simple as Word Automation

but of course; Microsoft doesn't support vb6 anymore so you're shit out
of luck

I would build a time machine and go back to the 90s and never bother
with VB.NOT

-Susie, DBA

Steve wrote:
I've been building an application that will merge fields in a text file with
a word template, save the resulting word file out to the user's hard drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at the
end of the process due to the file being locked by the email process. It
appears to take longer than the code takes to complete due to virus checking
software that intercepts the mail before releasing it (at least that's what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And I
don't think I want to hold up the completion of the code process until the
email gets sent in case the email process takes longer on some machines than
others.

I'm not sure if there is a better way to handle the attachment in the code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later. Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

------------

WordDoc.SaveAs( sSaveFileName)
Do While Not WordDoc.Saved
Application.DoE vents()
Loop
WordDoc.Close(W ord.WdSaveOptio ns.wdDoNotSaveC hanges)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fr omaddress")
Dim Toaddress As New MailAddress("to address")
Dim myMail As New MailMessage(Fro maddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSav eFileName)
myMail.Attachme nts.Add(Attachm entFile)
myMail.Priority = MailPriority.Hi gh
Dim client As New SmtpClient
client.Host = "hostaddres s"
client.Send(myM ail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File. Delete(sSaveFil eName)
Nov 27 '06 #2
BK
Disregard "Susie", he/she/it suffers from split personalities and none
of them are real programmers....

I think you want to look at the SmtpClient.Send Completed documentation,
that's what you are missing.

Nov 27 '06 #3
You need a WordDoc.Quit after your WordDoc.Close.
_______________ _______________ ___
The Grim Reaper

"Steve" <s.*****@comcas t.netwrote in message
news:eO******** ******@TK2MSFTN GP03.phx.gbl...
I've been building an application that will merge fields in a text file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at the
end of the process due to the file being locked by the email process. It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And I
don't think I want to hold up the completion of the code process until the
email gets sent in case the email process takes longer on some machines
than
others.

I'm not sure if there is a better way to handle the attachment in the code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

------------

WordDoc.SaveAs( sSaveFileName)
Do While Not WordDoc.Saved
Application.DoE vents()
Loop
WordDoc.Close(W ord.WdSaveOptio ns.wdDoNotSaveC hanges)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fr omaddress")
Dim Toaddress As New MailAddress("to address")
Dim myMail As New MailMessage(Fro maddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSav eFileName)
myMail.Attachme nts.Add(Attachm entFile)
myMail.Priority = MailPriority.Hi gh
Dim client As New SmtpClient
client.Host = "hostaddres s"
client.Send(myM ail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File. Delete(sSaveFil eName)


Nov 27 '06 #4
But this will close the word application which the user running the program
will want to keep open for printing the active document. I am trying to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@RE MOVEbtopenworld .comwrote in message
news:-N************** ******@bt.com.. .
You need a WordDoc.Quit after your WordDoc.Close.
_______________ _______________ ___
The Grim Reaper

"Steve" <s.*****@comcas t.netwrote in message
news:eO******** ******@TK2MSFTN GP03.phx.gbl...
I've been building an application that will merge fields in a text file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at
the
end of the process due to the file being locked by the email process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And
I
don't think I want to hold up the completion of the code process until
the
email gets sent in case the email process takes longer on some machines
than
others.

I'm not sure if there is a better way to handle the attachment in the
code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

------------

WordDoc.SaveAs( sSaveFileName)
Do While Not WordDoc.Saved
Application.DoE vents()
Loop
WordDoc.Close(W ord.WdSaveOptio ns.wdDoNotSaveC hanges)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fr omaddress")
Dim Toaddress As New MailAddress("to address")
Dim myMail As New MailMessage(Fro maddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSav eFileName)
myMail.Attachme nts.Add(Attachm entFile)
myMail.Priority = MailPriority.Hi gh
Dim client As New SmtpClient
client.Host = "hostaddres s"
client.Send(myM ail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File. Delete(sSaveFil eName)




Nov 27 '06 #5
Could you save a separate copy as a temp file and send that
in the e-mail and then delete it?

Robin S.
--------------------------
"Steve" <s.*****@comcas t.netwrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
But this will close the word application which the user running the
program
will want to keep open for printing the active document. I am trying to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@RE MOVEbtopenworld .comwrote in message
news:-N************** ******@bt.com.. .
>You need a WordDoc.Quit after your WordDoc.Close.
______________ _______________ ____
The Grim Reaper

"Steve" <s.*****@comcas t.netwrote in message
news:eO******* *******@TK2MSFT NGP03.phx.gbl.. .
I've been building an application that will merge fields in a text file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at
the
end of the process due to the file being locked by the email process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed.
And
I
don't think I want to hold up the completion of the code process until
the
email gets sent in case the email process takes longer on some machines
than
others.

I'm not sure if there is a better way to handle the attachment in the
code
so I don't have to save a file to the user's desktop. Or if I can use
a
deattach process that I can trigger from code to delete the file later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

------------

WordDoc.SaveAs( sSaveFileName)
Do While Not WordDoc.Saved
Application.DoE vents()
Loop
WordDoc.Close(W ord.WdSaveOptio ns.wdDoNotSaveC hanges)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fr omaddress")
Dim Toaddress As New MailAddress("to address")
Dim myMail As New MailMessage(Fro maddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSav eFileName)
myMail.Attachme nts.Add(Attachm entFile)
myMail.Priority = MailPriority.Hi gh
Dim client As New SmtpClient
client.Host = "hostaddres s"
client.Send(myM ail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File. Delete(sSaveFil eName)




Nov 27 '06 #6
Actually, I discovered it's locked by vshost.exe - which appears to only be
shut down when the host application is shut down. I guess VB2005 uses
vshost.exe for performance improvement/debugging.

Anyway, not sure what to do for now. Note: I'm developing the application
as I type this.

Any ideas from anyone?

Robin:

How would I create a temp copy of the file?

Steve

"RobinS" <Ro****@NoSpam. yah.nonewrote in message
news:Wb******** *************** *******@comcast .com...
Could you save a separate copy as a temp file and send that
in the e-mail and then delete it?

Robin S.
--------------------------
"Steve" <s.*****@comcas t.netwrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
But this will close the word application which the user running the
program
will want to keep open for printing the active document. I am trying to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@RE MOVEbtopenworld .comwrote in message
news:-N************** ******@bt.com.. .
You need a WordDoc.Quit after your WordDoc.Close.
_______________ _______________ ___
The Grim Reaper

"Steve" <s.*****@comcas t.netwrote in message
news:eO******** ******@TK2MSFTN GP03.phx.gbl...
I've been building an application that will merge fields in a text
file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved
at
the
end of the process due to the file being locked by the email process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least
that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed.
And
I
don't think I want to hold up the completion of the code process
until
the
email gets sent in case the email process takes longer on some
machines
than
others.

I'm not sure if there is a better way to handle the attachment in the
code
so I don't have to save a file to the user's desktop. Or if I can
use
a
deattach process that I can trigger from code to delete the file
later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

------------

WordDoc.SaveAs( sSaveFileName)
Do While Not WordDoc.Saved
Application.DoE vents()
Loop
WordDoc.Close(W ord.WdSaveOptio ns.wdDoNotSaveC hanges)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fr omaddress")
Dim Toaddress As New MailAddress("to address")
Dim myMail As New MailMessage(Fro maddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSav eFileName)
myMail.Attachme nts.Add(Attachm entFile)
myMail.Priority = MailPriority.Hi gh
Dim client As New SmtpClient
client.Host = "hostaddres s"
client.Send(myM ail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File. Delete(sSaveFil eName)





Nov 28 '06 #7
The only reason I'd create a second (temp) copy is
because you said you want to leave Word open for the
user to print the information in the Word document.
But if Word is open, the file is still locked.

The problem is, if you leave it open, and don't
save it (so it's nowhere), you can't e-mail it.
And if you save it, you can't delete it because
you want to leave it open for your user. And
when he gets around to closing Word, your application
has already released control of it, and you can't go
back and delete it.

I used to create CSV files and then open them
in Excel using OLE Automation. The user could then
save the file as an Excel file to wherever he
wanted to.

My program let go of the file as soon as it
showed it to the user in Excel. But I still had
the pesky CSV files, and couldn't delete them
if the user still had them open.

So this is what I did: I created the files in my
application directory and named them with a specific
pattern, like Temp_yymmddhhmm ss.csv.

Then every time they started up the application,
it would delete any files it found in the application
folder with the pattern Temp_*.csv.

Okay, it's tacky, but it worked, and I'm open to
other suggestions. Since they ran the app all the
time, it was always "self-cleaning". The other nice
thing about it was if they didn't save the Excel
file, they could go open the CSV before they
started up the app again and get their data.

So you could save the Word document in the same fashion
to somewhere (the windows temp folder? the application
folder?) and e-mail it and leave it open. And when
your app starts up, go delete any that you find. Be
sure to catch the exception of the file being locked,
in case they still have it open. If you put it
in the windows temp folder, I'd name it something
really specific, like MyAppName_Temp_ yymmddhhmmss.do c,
so you don't accidentally delete something else
when you go back to delete them.

You can access the name of the Windows temp folder
using this (VB2005):

Dim tempFolder as String = New Path.GetTempPat h

You could get a temporary file name like this, too,
but then you couldn't delete them yourself (also VB2005):

Dim tempFileName as String = New Path.GetTempFil eName

If they don't run your app more than once, I don't
know that I would do this. The temp files don't get
deleted automatically. If you *do* do this, and save
them to the Windows temp folder, and they hardly ever
run your app, I'd save them with GetTempFileName name.

By the way, when you double-click on an attachment
in Outlook and open it, it saves it to the Windows
temp folder and then opens it. It must have some
kind of clean-up, or maybe not.

I hope that helps. Other ideas are welcome!

Robin S.
-------------------------------------

"Steve" <s.*****@comcas t.netwrote in message
news:eL******** ******@TK2MSFTN GP04.phx.gbl...
Actually, I discovered it's locked by vshost.exe - which appears to only
be
shut down when the host application is shut down. I guess VB2005 uses
vshost.exe for performance improvement/debugging.

Anyway, not sure what to do for now. Note: I'm developing the application
as I type this.

Any ideas from anyone?

Robin:

How would I create a temp copy of the file?

Steve

"RobinS" <Ro****@NoSpam. yah.nonewrote in message
news:Wb******** *************** *******@comcast .com...
>Could you save a separate copy as a temp file and send that
in the e-mail and then delete it?

Robin S.
--------------------------
"Steve" <s.*****@comcas t.netwrote in message
news:%2******* *********@TK2MS FTNGP04.phx.gbl ...
But this will close the word application which the user running the
program
will want to keep open for printing the active document. I am trying
to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@RE MOVEbtopenworld .comwrote in message
news:-N************** ******@bt.com.. .
You need a WordDoc.Quit after your WordDoc.Close.
______________ _______________ ____
The Grim Reaper

"Steve" <s.*****@comcas t.netwrote in message
news:eO******* *******@TK2MSFT NGP03.phx.gbl.. .
I've been building an application that will merge fields in a text
file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved
at
the
end of the process due to the file being locked by the email
process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least
that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed.
And
I
don't think I want to hold up the completion of the code process
until
the
email gets sent in case the email process takes longer on some
machines
than
others.

I'm not sure if there is a better way to handle the attachment in
the
code
so I don't have to save a file to the user's desktop. Or if I can
use
a
deattach process that I can trigger from code to delete the file
later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

------------

WordDoc.SaveAs( sSaveFileName)
Do While Not WordDoc.Saved
Application.DoE vents()
Loop
WordDoc.Close(W ord.WdSaveOptio ns.wdDoNotSaveC hanges)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fr omaddress")
Dim Toaddress As New MailAddress("to address")
Dim myMail As New MailMessage(Fro maddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSav eFileName)
myMail.Attachme nts.Add(Attachm entFile)
myMail.Priority = MailPriority.Hi gh
Dim client As New SmtpClient
client.Host = "hostaddres s"
client.Send(myM ail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File. Delete(sSaveFil eName)






Nov 28 '06 #8
So this is what I did: I created the files in my
application directory and named them with a specific
pattern, like Temp_yymmddhhmm ss.csv.

Then every time they started up the application,
it would delete any files it found in the application
folder with the pattern Temp_*.csv.
I do this with temporary files. Typically I generate a hundred or so during
an average running session, which are all in a user data directory. This
directory is cleaned during program startup.

Nov 28 '06 #9
Steve wrote:
' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing
Setting the objects to Nothing does not release them. For COM objects
you need to call Marshal.Release ComObject.

Nov 28 '06 #10

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

Similar topics

1
12088
by: mickeydisn | last post by:
Sub: C++ Word automation Extract text hello. I want extact text form a word document using a visual c++ programme. I have see a lot of documentation. and my analysis is that I must use a "word automation". I have foud a lot of exemple to use it but I need your precious help to
12
5528
by: Cheval | last post by:
Has anyone had any problems with inter-office automation between MS Word and MS Access in Office 2003? I have recently installed office 2003 in a new folder and have left the older office 2000 and office XP components installed. ie I have word/access/excel 2k/xp/2003 installed. I tried to do a usual access 2k to word 2k automation yet I get the error "Automation Error" "ClassFactory cannot supply requested class" when on late binding try...
6
3961
by: Colleyville Alan | last post by:
I have an application that has an Access table that stores the locations of slides in a Powerpoint file. This used to work fine when there were about 4 files and 200 slides. The database would open all four PPT files at once, and would loop through queriers for ever client and create custom presentations. Now there are 8 files, nearly 500 slides and the computer is bogging down with trying to open them all at once. I know that Access...
2
2614
by: kids | last post by:
Does anybody know any reason which could cause Ms. word automation to crash? I try to call word automation to open a document and use find and replace function. For some reason it works but I don't know why it crash some time.
4
7682
by: Daniel | last post by:
Hello, i have a problem with the word automation from c#. First, i want to mention, that i don't have any dependencies from word in my c#-project, i want to use the system.reflection model to handle the automation. So, i'm using the following code to create a new word document: ---Code---
0
6298
by: mharris | last post by:
I need help with merging two Word documents into one through C# code. The problem isn't so much getting the documents put into one as it is maintaining the appropriate formatting, or rather reformating, after the merge. This is a full description of my needs. I have a C# class library that creates two Crystal Reports, and then exports them to the harddrive as Word documents. One's orientation is landscape, the other is portrait. I then...
2
2623
by: Radek | last post by:
Hi, I have got such problem: in my directory "C:\folder" I have 3 files in MS WORD (having tables, images etc), these are: "1.doc", "2.doc", "3.doc". I want to write an application (C# of course) which will merge the contents of files which I will point ie. 1.doc and 2.doc into one file: "12.doc" I've just tried to find smth in MSDN help, and in google archive of programing groups but still I don't know how to do it:(
4
11134
by: Yohancef Chin | last post by:
Hi, Being fairly new to .NET I am looking for a way to call MS Word from an event on a webform, and after the user is finished save that created document to an SQL Server database. Has anyone done this? Does it seem possible? I followed the instructions from a sample on the Microsoft knowledge base but it only seems to work when creating a VB.NET Windows .EXE, not an VB.NET ASP app.
5
2527
by: Daniel Walzenbach | last post by:
Hi, I need to know how I could populate a word file from within ASP.NET and stream it out to some user (I can rely on all users have at least Word XP installed). The preferable solution would be to have a word template on the server which is populated in the asp.net application and then streamed out to the user. Also acceptable would be to open a template on the client's computer using automation and fill this file (if this is possible)....
10
3286
by: cj2 | last post by:
I open a word template in VB and add values to the bookmarks then save the document as as pdf. When I then go to close the document it pops up a save as dialog box. It's already saved the document in pdf and that is all I want done with it. How can I tell it to close the file without prompting me for anything? For Each row As DataRow In myDt.Rows Dim objWord As Application Dim objDoc As Document objWord =...
0
9407
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10175
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...
0
10017
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...
0
9843
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
8840
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
5283
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
5425
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3932
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
3
2808
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.