473,771 Members | 2,372 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Resource file again

I added a resource file into my project, to store the caption of buttons and
labels..
How do I make use of this resource file to dynamically assign to the buttons
and labels ?
Jul 5 '06 #1
11 1981
Alan,

What type of application is it - win or web?
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:u7******** ******@TK2MSFTN GP03.phx.gbl...
>I added a resource file into my project, to store the caption of buttons
and labels..
How do I make use of this resource file to dynamically assign to the
buttons and labels ?

Jul 5 '06 #2
It is a Windows application.
What I want is to dynamically store the string to the form's label and
buttons'caption .

This is useful if we want to internationaliz e the application with other
language.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:O9******** ******@TK2MSFTN GP05.phx.gbl...
Alan,

What type of application is it - win or web?
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:u7******** ******@TK2MSFTN GP03.phx.gbl...
>>I added a resource file into my project, to store the caption of buttons
and labels..
How do I make use of this resource file to dynamically assign to the
buttons and labels ?


Jul 6 '06 #3
Alan,

The easiest would be to turn on the localization for the form. Just set the
form's Localizable property to *true*. Once you do this all the form and
form's controls properties such as Text, Size, Location, etc will go to a
resource file and the designer will generate the code to load them from
there. If you want to use your own resource file I'm afraid you need to read
the values and set the controls by yourself.

Anoither solution would be to use the application settings for storing the
values. In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top. You
can choose any control property form the PropertyBinding collcection and you
can also choose whether the property should go in the user or global
(application) settings.
--
HTH
Stoitcho Goutsev (100)
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
It is a Windows application.
What I want is to dynamically store the string to the form's label and
buttons'caption .

This is useful if we want to internationaliz e the application with other
language.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:O9******** ******@TK2MSFTN GP05.phx.gbl...
>Alan,

What type of application is it - win or web?
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:u7******* *******@TK2MSFT NGP03.phx.gbl.. .
>>>I added a resource file into my project, to store the caption of buttons
and labels..
How do I make use of this resource file to dynamically assign to the
buttons and labels ?



Jul 6 '06 #4
Hi,

Is what I did is correct ?

Right click the project
Add New Item
Choose 'Settings File'
Define the entries in the file

Then -
"In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top. You
can choose any control property form the PropertyBinding collcection and
you
can also choose whether the property should go in the user or global "

What will be the differences between 'user' and 'application' ?
"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:ur******** ********@TK2MSF TNGP04.phx.gbl. ..
Alan,

The easiest would be to turn on the localization for the form. Just set
the form's Localizable property to *true*. Once you do this all the form
and form's controls properties such as Text, Size, Location, etc will go
to a resource file and the designer will generate the code to load them
from there. If you want to use your own resource file I'm afraid you need
to read the values and set the controls by yourself.

Anoither solution would be to use the application settings for storing the
values. In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top. You
can choose any control property form the PropertyBinding collcection and
you can also choose whether the property should go in the user or global ,
(application) settings.
--
HTH
Stoitcho Goutsev (100)
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
>It is a Windows application.
What I want is to dynamically store the string to the form's label and
buttons'captio n.

This is useful if we want to internationaliz e the application with other
language.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:O9******* *******@TK2MSFT NGP05.phx.gbl.. .
>>Alan,

What type of application is it - win or web?
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:u7****** ********@TK2MSF TNGP03.phx.gbl. ..
I added a resource file into my project, to store the caption of buttons
and labels..
How do I make use of this resource file to dynamically assign to the
buttons and labels ?



Jul 7 '06 #5
Alan,
All settings in the application scope apply for all users. The settings in
the user scope are per user, thus the proeprty values can be different
depending on who runs the applciation.
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:OG******** ******@TK2MSFTN GP04.phx.gbl...
Hi,

Is what I did is correct ?

Right click the project
Add New Item
Choose 'Settings File'
Define the entries in the file

Then -
"In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top. You
can choose any control property form the PropertyBinding collcection and
you
can also choose whether the property should go in the user or global "

What will be the differences between 'user' and 'application' ?
"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:ur******** ********@TK2MSF TNGP04.phx.gbl. ..
>Alan,

The easiest would be to turn on the localization for the form. Just set
the form's Localizable property to *true*. Once you do this all the form
and form's controls properties such as Text, Size, Location, etc will go
to a resource file and the designer will generate the code to load them
from there. If you want to use your own resource file I'm afraid you need
to read the values and set the controls by yourself.

Anoither solution would be to use the application settings for storing
the values. In the designer select a control and then from the property
window expand the "Applicatio n Settings" node, which is the first on the
top. You can choose any control property form the PropertyBinding
collcection and you can also choose whether the property should go in the
user or global ,

>(application ) settings.
--
HTH
Stoitcho Goutsev (100)
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2******* *********@TK2MS FTNGP05.phx.gbl ...
>>It is a Windows application.
What I want is to dynamically store the string to the form's label and
buttons'capti on.

This is useful if we want to internationaliz e the application with other
language.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:O9****** ********@TK2MSF TNGP05.phx.gbl. ..
Alan,

What type of application is it - win or web?
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:u7***** *********@TK2MS FTNGP03.phx.gbl ...
>I added a resource file into my project, to store the caption of
>buttons and labels..
How do I make use of this resource file to dynamically assign to the
buttons and labels ?
>




Jul 7 '06 #6
So I think I should use the 'Application'.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:u7******** ******@TK2MSFTN GP03.phx.gbl...
Alan,
All settings in the application scope apply for all users. The settings in
the user scope are per user, thus the proeprty values can be different
depending on who runs the applciation.
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:OG******** ******@TK2MSFTN GP04.phx.gbl...
>Hi,

Is what I did is correct ?

Right click the project
Add New Item
Choose 'Settings File'
Define the entries in the file

Then -
"In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top.
You
can choose any control property form the PropertyBinding collcection and
you
can also choose whether the property should go in the user or global "

What will be the differences between 'user' and 'application' ?
"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:ur******* *********@TK2MS FTNGP04.phx.gbl ...
>>Alan,

The easiest would be to turn on the localization for the form. Just set
the form's Localizable property to *true*. Once you do this all the form
and form's controls properties such as Text, Size, Location, etc will go
to a resource file and the designer will generate the code to load them
from there. If you want to use your own resource file I'm afraid you
need to read the values and set the controls by yourself.

Anoither solution would be to use the application settings for storing
the values. In the designer select a control and then from the property
window expand the "Applicatio n Settings" node, which is the first on the
top. You can choose any control property form the PropertyBinding
collcection and you can also choose whether the property should go in
the user or global ,

>>(applicatio n) settings.
--
HTH
Stoitcho Goutsev (100)
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2****** **********@TK2M SFTNGP05.phx.gb l...
It is a Windows application.
What I want is to dynamically store the string to the form's label and
buttons'capt ion.

This is useful if we want to internationaliz e the application with
other language.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:O9***** *********@TK2MS FTNGP05.phx.gbl ...
Alan,
>
What type of application is it - win or web?
>
>
--
Stoitcho Goutsev (100)
>
"Alan T" <al************ *@yahoo.com.auw rote in message
news:u7**** **********@TK2M SFTNGP03.phx.gb l...
>>I added a resource file into my project, to store the caption of
>>buttons and labels..
>How do I make use of this resource file to dynamically assign to the
>buttons and labels ?
>>
>
>




Jul 9 '06 #7
Hi,

In addition, is there really a way, I mean using the resource file to
configure the display caption of labels, buttons or treeview nodes text,
listview column text.
Is resource file's purpose for that ?

"Alan T" <al************ *@yahoo.com.auw rote in message
news:uS******** ******@TK2MSFTN GP04.phx.gbl...
So I think I should use the 'Application'.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:u7******** ******@TK2MSFTN GP03.phx.gbl...
>Alan,
All settings in the application scope apply for all users. The settings
in the user scope are per user, thus the proeprty values can be different
depending on who runs the applciation.
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:OG******* *******@TK2MSFT NGP04.phx.gbl.. .
>>Hi,

Is what I did is correct ?

Right click the project
Add New Item
Choose 'Settings File'
Define the entries in the file

Then -
"In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top.
You
can choose any control property form the PropertyBinding collcection and
you
can also choose whether the property should go in the user or global "

What will be the differences between 'user' and 'application' ?
"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:ur****** **********@TK2M SFTNGP04.phx.gb l...
Alan,

The easiest would be to turn on the localization for the form. Just set
the form's Localizable property to *true*. Once you do this all the
form and form's controls properties such as Text, Size, Location, etc
will go to a resource file and the designer will generate the code to
load them from there. If you want to use your own resource file I'm
afraid you need to read the values and set the controls by yourself.

Anoither solution would be to use the application settings for storing
the values. In the designer select a control and then from the property
window expand the "Applicatio n Settings" node, which is the first on
the top. You can choose any control property form the PropertyBinding
collcectio n and you can also choose whether the property should go in
the user or global ,
(application ) settings.
--
HTH
Stoitcho Goutsev (100)
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2***** ***********@TK2 MSFTNGP05.phx.g bl...
It is a Windows application.
What I want is to dynamically store the string to the form's label and
buttons'cap tion.
>
This is useful if we want to internationaliz e the application with
other language.
>
"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:O9**** **********@TK2M SFTNGP05.phx.gb l...
>Alan,
>>
>What type of application is it - win or web?
>>
>>
>--
>Stoitcho Goutsev (100)
>>
>"Alan T" <al************ *@yahoo.com.auw rote in message
>news:u7*** ***********@TK2 MSFTNGP03.phx.g bl...
>>>I added a resource file into my project, to store the caption of
>>>button s and labels..
>>How do I make use of this resource file to dynamically assign to the
>>buttons and labels ?
>>>
>>
>>
>
>




Jul 16 '06 #8
Yes, this is the place for that and as I said for WinForms it works
atomatically when localization is turned on. VS will save to resource and
generate a code for reading the values from there for any property
attributed with LocalizableAttr ibute.
--
HTH
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:uZ******** ******@TK2MSFTN GP04.phx.gbl...
Hi,

In addition, is there really a way, I mean using the resource file to
configure the display caption of labels, buttons or treeview nodes text,
listview column text.
Is resource file's purpose for that ?

"Alan T" <al************ *@yahoo.com.auw rote in message
news:uS******** ******@TK2MSFTN GP04.phx.gbl...
>So I think I should use the 'Application'.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:u7******* *******@TK2MSFT NGP03.phx.gbl.. .
>>Alan,
All settings in the application scope apply for all users. The settings
in the user scope are per user, thus the proeprty values can be
different depending on who runs the applciation.
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:OG****** ********@TK2MSF TNGP04.phx.gbl. ..
Hi,

Is what I did is correct ?

Right click the project
Add New Item
Choose 'Settings File'
Define the entries in the file

Then -
"In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top.
You
can choose any control property form the PropertyBinding collcection
and you
can also choose whether the property should go in the user or global "

What will be the differences between 'user' and 'application' ?
"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:ur***** ***********@TK2 MSFTNGP04.phx.g bl...
Alan,
>
The easiest would be to turn on the localization for the form. Just
set the form's Localizable property to *true*. Once you do this all
the form and form's controls properties such as Text, Size, Location,
etc will go to a resource file and the designer will generate the code
to load them from there. If you want to use your own resource file I'm
afraid you need to read the values and set the controls by yourself.
>
Anoither solution would be to use the application settings for storing
the values. In the designer select a control and then from the
property window expand the "Applicatio n Settings" node, which is the
first on the top. You can choose any control property form the
PropertyBin ding collcection and you can also choose whether the
property should go in the user or global ,
(applicatio n) settings.
>
>
--
HTH
Stoitcho Goutsev (100)
>
>
"Alan T" <al************ *@yahoo.com.auw rote in message
news:%2**** ************@TK 2MSFTNGP05.phx. gbl...
>It is a Windows application.
>What I want is to dynamically store the string to the form's label
>and buttons'caption .
>>
>This is useful if we want to internationaliz e the application with
>other language.
>>
>"Stoitch o Goutsev (100)" <10*@100.comwro te in message
>news:O9*** ***********@TK2 MSFTNGP05.phx.g bl...
>>Alan,
>>>
>>What type of application is it - win or web?
>>>
>>>
>>--
>>Stoitch o Goutsev (100)
>>>
>>"Alan T" <al************ *@yahoo.com.auw rote in message
>>news:u7** ************@TK 2MSFTNGP03.phx. gbl...
>>>>I added a resource file into my project, to store the caption of
>>>>butto ns and labels..
>>>How do I make use of this resource file to dynamically assign to
>>>the buttons and labels ?
>>>>
>>>
>>>
>>
>>
>
>




Jul 17 '06 #9
How do I read the resource file of a Windows Form? Is that with
extension.resx ?

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:eI******** ********@TK2MSF TNGP05.phx.gbl. ..
Yes, this is the place for that and as I said for WinForms it works
atomatically when localization is turned on. VS will save to resource and
generate a code for reading the values from there for any property
attributed with LocalizableAttr ibute.
--
HTH
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:uZ******** ******@TK2MSFTN GP04.phx.gbl...
>Hi,

In addition, is there really a way, I mean using the resource file to
configure the display caption of labels, buttons or treeview nodes text,
listview column text.
Is resource file's purpose for that ?

"Alan T" <al************ *@yahoo.com.auw rote in message
news:uS******* *******@TK2MSFT NGP04.phx.gbl.. .
>>So I think I should use the 'Application'.

"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:u7****** ********@TK2MSF TNGP03.phx.gbl. ..
Alan,
All settings in the application scope apply for all users. The settings
in the user scope are per user, thus the proeprty values can be
different depending on who runs the applciation.
--
Stoitcho Goutsev (100)

"Alan T" <al************ *@yahoo.com.auw rote in message
news:OG***** *********@TK2MS FTNGP04.phx.gbl ...
Hi,
>
Is what I did is correct ?
>
Right click the project
Add New Item
Choose 'Settings File'
Define the entries in the file
>
Then -
"In the designer select a control and then from the property window
expand the "Applicatio n Settings" node, which is the first on the top.
You
can choose any control property form the PropertyBinding collcection
and you
can also choose whether the property should go in the user or global "
>
What will be the differences between 'user' and 'application' ?
>
>
"Stoitcho Goutsev (100)" <10*@100.comwro te in message
news:ur**** ************@TK 2MSFTNGP04.phx. gbl...
>Alan,
>>
>The easiest would be to turn on the localization for the form. Just
>set the form's Localizable property to *true*. Once you do this all
>the form and form's controls properties such as Text, Size, Location,
>etc will go to a resource file and the designer will generate the
>code to load them from there. If you want to use your own resource
>file I'm afraid you need to read the values and set the controls by
>yourself .
>>
>Anoither solution would be to use the application settings for
>storing the values. In the designer select a control and then from
>the property window expand the "Applicatio n Settings" node, which is
>the first on the top. You can choose any control property form the
>PropertyBi nding collcection and you can also choose whether the
>property should go in the user or global ,
>
>
>(applicati on) settings.
>>
>>
>--
>HTH
>Stoitcho Goutsev (100)
>>
>>
>"Alan T" <al************ *@yahoo.com.auw rote in message
>news:%2*** *************@T K2MSFTNGP05.phx .gbl...
>>It is a Windows application.
>>What I want is to dynamically store the string to the form's label
>>and buttons'caption .
>>>
>>This is useful if we want to internationaliz e the application with
>>other language.
>>>
>>"Stoitc ho Goutsev (100)" <10*@100.comwro te in message
>>news:O9** ************@TK 2MSFTNGP05.phx. gbl...
>>>Alan,
>>>>
>>>What type of application is it - win or web?
>>>>
>>>>
>>>--
>>>Stoitc ho Goutsev (100)
>>>>
>>>"Alan T" <al************ *@yahoo.com.auw rote in message
>>>news:u7* *************@T K2MSFTNGP03.phx .gbl...
>>>>>I added a resource file into my project, to store the caption of
>>>>>button s and labels..
>>>>How do I make use of this resource file to dynamically assign to
>>>>the buttons and labels ?
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>




Jul 18 '06 #10

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

Similar topics

0
1255
by: Mark H. | last post by:
I just converted a solution from VC++ .net 2002 to VC++ .net 2003. Help IDs are associated with most controls on the dialogs in the solution's projects. Whenever I go to Resource View and expand the tree for a .rc file that contains dialogs, a dialog displays asking me if I want to check out Resource.hm. If I click Cancel in the check out dialog, the dialog displays again. This continues one time for each dialog in the project. Then...
3
10384
by: J.Marsch | last post by:
Hello all: I am trying to build a resource dll that will house icons, and I'm afraid that I'm not having much luck reading it. Can you lend hand (or just point me to a good primer). Here's what I've done so far: (VS.NET 2003/C#) 1. Created an empty project for the resource dll. Output type is class library.
8
1821
by: Bonj | last post by:
when creating a resource-only dll, the only way I can get it to compile and work correctly, is to make it a non-resource-only dll. surely this can't be the way...? basically, there is a load of resources, in a dll. The DLL is a managed class library, but it has got an unmanaged function that accesses the resources. FindResource only works on the HMODULE that is gained by casting the HINSTANCE passed to DllMain into an HMODULE (I think...
2
6640
by: Turbot | last post by:
Hello, After much searching, I have finally determined how to add gif files into a resource and then get them out again in VB.NET. I have created a resx file and have inserted a bunch of GIF files using a resource editor that I got from CodeProject. I am then using the following code to apply one of the graphics to an Image object: Dim objRM As New System.Resources.ResourceManager("TutorPro.resHighlights", Me.GetType.Assembly)...
1
3864
by: Dom | last post by:
I get an InvalidOperationException with the message "The resource class for this page was not found. Please check if the resource file exists and try again." when I change the resource file of a user control. If I recompile the exception is no longer thrown, however this is also an issue on the production site (where we want to change resource files without having to deploy a new build). The only ways around this issue I have discovered...
3
249
by: Larry Gillstrom | last post by:
Hi Our company is trying to migrate all of our products developed in msvc 6 to msvc 2005. Everything was going smoothly until we discovered that msvc 2005 will not save any changes we make in our resource (rc) files. And if we do make a change in the resource file, msvc 2005 crashes on exit. I noticed someone else reported this bug a few weeks ago, does anyone know if there is a decent workaround for this?
1
1902
by: vecozo | last post by:
Centralized resource files Hi, We are considering to migrate our custom asp.net localization procedure, to one that stored .Text properties of controls in a SQL database, towards the usage of standard resources (hence .resx files). Plain Resx files do not seem to be a very scalable solution: We have dozens of servers and we do not want to access all servers to deploy files in case of minor changes in the personalized text. So we need...
8
12090
by: John Dunn | last post by:
Since currently we aren't allowed to have compiled XAML files embedded in C++ apps I'm using Markup::XamlReader::Load to dynamically load XAML files. This works perfectly fine with external files but I'd like to be able to load a file specified in a .resx resource. I've added my .xaml file to the .resx and can load it in using ResourceManager::GetObject(). The object returned is a System::Array^ which contains System::Byte objects. The...
8
13667
by: CodeLeon | last post by:
Hi, All. I am creating a setup program. The way it works is that the user creates their setup info, my program generates the C# code for a setup executable, embeds the xml file containing the info for the setup, and compiles the whole thing into one EXE. How do i embed resources, and access them, into that assembly?
0
9619
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
10260
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
10102
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
9910
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
8933
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
5354
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
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3609
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2850
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.