473,729 Members | 2,371 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Q: GIF image on a form

Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on the
form correctly i.e. the background of the form shows through the transparent
part of the gif.

However, if I place a BackgroundImage on the form, the transparent part of
the form does not show the BackgroundImage of the form, rather is shows the
back color of the form. This obviously make the GIF not to be "transparen t".

Can anybody help?

Thanks

G
May 19 '06 #1
7 1776
What you need to do is make a user control and then modify it's transparent
property on window construction. You then need to handle "Invalidate Ex"
messages in order to force the parent to redraw your background, rather than
you. Funny you mention this because I had to do this with a "working... .."
animation yesterday.

This sample is in C# but it's easy to convert. You won't be needing a
picture box. Just use DrawImage to render your GIF on the control surface
but overriding the paint event.

http://www.devnewsgroups.net/link.as...rol&lang=en%3E

"G .Net" <no********@ema il.com> wrote in message
news:Jf******** ************@pi pex.net...
Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on the
form correctly i.e. the background of the form shows through the
transparent part of the gif.

However, if I place a BackgroundImage on the form, the transparent part of
the form does not show the BackgroundImage of the form, rather is shows
the back color of the form. This obviously make the GIF not to be
"transparen t".

Can anybody help?

Thanks

G

May 19 '06 #2
Hi Fred

Ah, looks like exactly what I need!!!

However, bit of newbie so need help in exactly what to do. Could I trouble
you to give the steps I need?

G

"Fred Hedges" <do******@spamm uch.com> wrote in message
news:e4******** ***********@new s.demon.co.uk.. .
What you need to do is make a user control and then modify it's
transparent property on window construction. You then need to handle
"Invalidate Ex" messages in order to force the parent to redraw your
background, rather than you. Funny you mention this because I had to do
this with a "working... .." animation yesterday.

This sample is in C# but it's easy to convert. You won't be needing a
picture box. Just use DrawImage to render your GIF on the control surface
but overriding the paint event.

http://www.devnewsgroups.net/link.as...rol&lang=en%3E

"G .Net" <no********@ema il.com> wrote in message
news:Jf******** ************@pi pex.net...
Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on the
form correctly i.e. the background of the form shows through the
transparent part of the gif.

However, if I place a BackgroundImage on the form, the transparent part
of the form does not show the BackgroundImage of the form, rather is
shows the back color of the form. This obviously make the GIF not to be
"transparen t".

Can anybody help?

Thanks

G


May 19 '06 #3
(1) Create a new User Control

(2) Override it's CreateParms property with this:

Protected Overrides ReadOnly Property CreateParams() As CreateParams

Get

Dim cp As CreateParams = MyBase.CreatePa rams
cp.ExStyle = cp.ExStyle Or WS_EX_TRANSPARE NT

Return cp

End Get

End Property

(3) In Sub New(), add the following code:
Me.SetStyle(Con trolStyles.Supp ortsTransparent BackColor, True)
Me.UpdateStyles ()
Me.BackColor = Color.Transpare nt
(4) Override the OnPaintBackgrou nd event, but don't put anything into it:

Protected Overrides Sub OnPaintBackgrou nd(ByVal e As PaintEventArgs)
'
End Sub
(5) Import the GIF into your resources (Project Properties, Resources,
Images, Add Image...).

This will basically give you a transparent surface. Now you can draw your
..GIF onto this transparent surface any way you want, eg:

(6) Override the OnPaint event and use it to draw your image:
Protected Overrides Sub OnPaint(byval e As PaintEventArgs)

' Render our image here, no stretch, modify to stretch to fill
' the control if required.
e.Graphics.Draw Image ( My.Resources.Wh ateverMyGIFImag eIsCalled, 0,
0 )

End Sub

Hope this helps.

"G .Net" <no********@ema il.com> wrote in message
news:jZ******** *************** *******@pipex.n et...
Hi Fred

Ah, looks like exactly what I need!!!

However, bit of newbie so need help in exactly what to do. Could I trouble
you to give the steps I need?

G

"Fred Hedges" <do******@spamm uch.com> wrote in message
news:e4******** ***********@new s.demon.co.uk.. .
What you need to do is make a user control and then modify it's
transparent property on window construction. You then need to handle
"Invalidate Ex" messages in order to force the parent to redraw your
background, rather than you. Funny you mention this because I had to do
this with a "working... .." animation yesterday.

This sample is in C# but it's easy to convert. You won't be needing a
picture box. Just use DrawImage to render your GIF on the control
surface but overriding the paint event.

http://www.devnewsgroups.net/link.as...rol&lang=en%3E

"G .Net" <no********@ema il.com> wrote in message
news:Jf******** ************@pi pex.net...
Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on
the form correctly i.e. the background of the form shows through the
transparent part of the gif.

However, if I place a BackgroundImage on the form, the transparent part
of the form does not show the BackgroundImage of the form, rather is
shows the back color of the form. This obviously make the GIF not to be
"transparen t".

Can anybody help?

Thanks

G



May 19 '06 #4
gs
that looks more like VB than c#
I think you will have to fresh out the last stub for OnPaintBackgrou nd
with painting you GB image
Imports System
Imports System.Windows. Forms

Public Class TransparentCont rol
Inherits Control

Private Const WS_EX_TRANSPARE NT As Int32 = &H20

Public Sub New()
Me.SetStyle(Con trolStyles.Supp ortsTransparent BackColor, True)
Me.UpdateStyles ()
Me.BackColor = Color.Transpare nt
End Sub

Protected Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim cp As CreateParams = MyBase.CreatePa rams
cp.ExStyle = cp.ExStyle Or WS_EX_TRANSPARE NT
Return cp
End Get
End Property

Protected Overrides Sub OnPaintBackgrou nd(ByVal e As PaintEventArgs)
' fresh out this partto pain the gb image
End Sub
a primitive example is from the vb help
Private Sub pictureBox1_Pai nt(ByVal sender As Object, ByVal e As
System.Windows. Forms.PaintEven tArgs)
' Create a local version of the graphics object for the PictureBox.
Dim g As Graphics = e.Graphics

' Draw a string on the PictureBox.
g.DrawString("T his is a diagonal line drawn on the control", _
New Font("Arial", 10), Brushes.Red, New PointF(30.0F, 30.0F))
' Draw a line in the PictureBox.
g.DrawLine(Syst em.Drawing.Pens .Red, pictureBox1.Lef t, _
pictureBox1.Top , pictureBox1.Rig ht, pictureBox1.Bot tom)
End Sub 'pictureBox1_Pa int

but then if you already the GB image in some format (tif, bmp,) you may be
better off looking for some picture control to take care of that for you.
Hey, I am newbie to vb too. so I can help very much beyon what I can find by
goole or built help.

you may also want to look at the game snippets or starter kit/template. I
am sure there are plenty of examples for handling graphics

"G .Net" <no********@ema il.com> wrote in message
news:jZ******** *************** *******@pipex.n et...
Hi Fred

Ah, looks like exactly what I need!!!

However, bit of newbie so need help in exactly what to do. Could I trouble
you to give the steps I need?

G

"Fred Hedges" <do******@spamm uch.com> wrote in message
news:e4******** ***********@new s.demon.co.uk.. .
What you need to do is make a user control and then modify it's
transparent property on window construction. You then need to handle
"Invalidate Ex" messages in order to force the parent to redraw your
background, rather than you. Funny you mention this because I had to do
this with a "working... .." animation yesterday.

This sample is in C# but it's easy to convert. You won't be needing a
picture box. Just use DrawImage to render your GIF on the control
surface but overriding the paint event.

http://www.devnewsgroups.net/link.as...rol&lang=en%3E

"G .Net" <no********@ema il.com> wrote in message
news:Jf******** ************@pi pex.net...
Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on
the form correctly i.e. the background of the form shows through the
transparent part of the gif.

However, if I place a BackgroundImage on the form, the transparent part
of the form does not show the BackgroundImage of the form, rather is
shows the back color of the form. This obviously make the GIF not to be
"transparen t".

Can anybody help?

Thanks

G



May 19 '06 #5
Many thanks Fred for your comprehensive help.

G

"Fred Hedges" <do******@spamm uch.com> wrote in message
news:e4******** **********@news .demon.co.uk...
(1) Create a new User Control

(2) Override it's CreateParms property with this:

Protected Overrides ReadOnly Property CreateParams() As CreateParams

Get

Dim cp As CreateParams = MyBase.CreatePa rams
cp.ExStyle = cp.ExStyle Or WS_EX_TRANSPARE NT

Return cp

End Get

End Property

(3) In Sub New(), add the following code:
Me.SetStyle(Con trolStyles.Supp ortsTransparent BackColor, True)
Me.UpdateStyles ()
Me.BackColor = Color.Transpare nt
(4) Override the OnPaintBackgrou nd event, but don't put anything into it:

Protected Overrides Sub OnPaintBackgrou nd(ByVal e As PaintEventArgs)
'
End Sub
(5) Import the GIF into your resources (Project Properties, Resources,
Images, Add Image...).

This will basically give you a transparent surface. Now you can draw your
.GIF onto this transparent surface any way you want, eg:

(6) Override the OnPaint event and use it to draw your image:
Protected Overrides Sub OnPaint(byval e As PaintEventArgs)

' Render our image here, no stretch, modify to stretch to fill
' the control if required.
e.Graphics.Draw Image ( My.Resources.Wh ateverMyGIFImag eIsCalled, 0,
0 )

End Sub

Hope this helps.

"G .Net" <no********@ema il.com> wrote in message
news:jZ******** *************** *******@pipex.n et...
Hi Fred

Ah, looks like exactly what I need!!!

However, bit of newbie so need help in exactly what to do. Could I
trouble you to give the steps I need?

G

"Fred Hedges" <do******@spamm uch.com> wrote in message
news:e4******** ***********@new s.demon.co.uk.. .
What you need to do is make a user control and then modify it's
transparent property on window construction. You then need to handle
"Invalidate Ex" messages in order to force the parent to redraw your
background, rather than you. Funny you mention this because I had to do
this with a "working... .." animation yesterday.

This sample is in C# but it's easy to convert. You won't be needing a
picture box. Just use DrawImage to render your GIF on the control
surface but overriding the paint event.

http://www.devnewsgroups.net/link.as...rol&lang=en%3E

"G .Net" <no********@ema il.com> wrote in message
news:Jf******** ************@pi pex.net...
Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on
the form correctly i.e. the background of the form shows through the
transparent part of the gif.

However, if I place a BackgroundImage on the form, the transparent part
of the form does not show the BackgroundImage of the form, rather is
shows the back color of the form. This obviously make the GIF not to be
"transparen t".

Can anybody help?

Thanks

G



May 20 '06 #6
Thanks gs.

G

"gs" <gs@nomail.ni l> wrote in message
news:ej******** ******@TK2MSFTN GP05.phx.gbl...
that looks more like VB than c#
I think you will have to fresh out the last stub for OnPaintBackgrou nd
with painting you GB image
Imports System
Imports System.Windows. Forms

Public Class TransparentCont rol
Inherits Control

Private Const WS_EX_TRANSPARE NT As Int32 = &H20

Public Sub New()
Me.SetStyle(Con trolStyles.Supp ortsTransparent BackColor, True)
Me.UpdateStyles ()
Me.BackColor = Color.Transpare nt
End Sub

Protected Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim cp As CreateParams = MyBase.CreatePa rams
cp.ExStyle = cp.ExStyle Or WS_EX_TRANSPARE NT
Return cp
End Get
End Property

Protected Overrides Sub OnPaintBackgrou nd(ByVal e As PaintEventArgs)
' fresh out this partto pain the gb image
End Sub
a primitive example is from the vb help
Private Sub pictureBox1_Pai nt(ByVal sender As Object, ByVal e As
System.Windows. Forms.PaintEven tArgs)
' Create a local version of the graphics object for the PictureBox.
Dim g As Graphics = e.Graphics

' Draw a string on the PictureBox.
g.DrawString("T his is a diagonal line drawn on the control", _
New Font("Arial", 10), Brushes.Red, New PointF(30.0F, 30.0F))
' Draw a line in the PictureBox.
g.DrawLine(Syst em.Drawing.Pens .Red, pictureBox1.Lef t, _
pictureBox1.Top , pictureBox1.Rig ht, pictureBox1.Bot tom)
End Sub 'pictureBox1_Pa int

but then if you already the GB image in some format (tif, bmp,) you may be
better off looking for some picture control to take care of that for you.
Hey, I am newbie to vb too. so I can help very much beyon what I can find
by goole or built help.

you may also want to look at the game snippets or starter kit/template. I
am sure there are plenty of examples for handling graphics

"G .Net" <no********@ema il.com> wrote in message
news:jZ******** *************** *******@pipex.n et...
Hi Fred

Ah, looks like exactly what I need!!!

However, bit of newbie so need help in exactly what to do. Could I
trouble you to give the steps I need?

G

"Fred Hedges" <do******@spamm uch.com> wrote in message
news:e4******** ***********@new s.demon.co.uk.. .
What you need to do is make a user control and then modify it's
transparent property on window construction. You then need to handle
"Invalidate Ex" messages in order to force the parent to redraw your
background, rather than you. Funny you mention this because I had to do
this with a "working... .." animation yesterday.

This sample is in C# but it's easy to convert. You won't be needing a
picture box. Just use DrawImage to render your GIF on the control
surface but overriding the paint event.

http://www.devnewsgroups.net/link.as...rol&lang=en%3E

"G .Net" <no********@ema il.com> wrote in message
news:Jf******** ************@pi pex.net...
Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on
the form correctly i.e. the background of the form shows through the
transparent part of the gif.

However, if I place a BackgroundImage on the form, the transparent part
of the form does not show the BackgroundImage of the form, rather is
shows the back color of the form. This obviously make the GIF not to be
"transparen t".

Can anybody help?

Thanks

G



May 20 '06 #7
Yes thats correct. I couldn't find the C# version I used the other day, so
pasted the first VB version I came across, but did not edit the message to
take account of this. Actually, it turns out that this one is better.

"gs" <gs@nomail.ni l> wrote in message
news:ej******** ******@TK2MSFTN GP05.phx.gbl...
that looks more like VB than c#
I think you will have to fresh out the last stub for OnPaintBackgrou nd
with painting you GB image
Imports System
Imports System.Windows. Forms

Public Class TransparentCont rol
Inherits Control

Private Const WS_EX_TRANSPARE NT As Int32 = &H20

Public Sub New()
Me.SetStyle(Con trolStyles.Supp ortsTransparent BackColor, True)
Me.UpdateStyles ()
Me.BackColor = Color.Transpare nt
End Sub

Protected Overrides ReadOnly Property CreateParams() As CreateParams
Get
Dim cp As CreateParams = MyBase.CreatePa rams
cp.ExStyle = cp.ExStyle Or WS_EX_TRANSPARE NT
Return cp
End Get
End Property

Protected Overrides Sub OnPaintBackgrou nd(ByVal e As PaintEventArgs)
' fresh out this partto pain the gb image
End Sub
a primitive example is from the vb help
Private Sub pictureBox1_Pai nt(ByVal sender As Object, ByVal e As
System.Windows. Forms.PaintEven tArgs)
' Create a local version of the graphics object for the PictureBox.
Dim g As Graphics = e.Graphics

' Draw a string on the PictureBox.
g.DrawString("T his is a diagonal line drawn on the control", _
New Font("Arial", 10), Brushes.Red, New PointF(30.0F, 30.0F))
' Draw a line in the PictureBox.
g.DrawLine(Syst em.Drawing.Pens .Red, pictureBox1.Lef t, _
pictureBox1.Top , pictureBox1.Rig ht, pictureBox1.Bot tom)
End Sub 'pictureBox1_Pa int

but then if you already the GB image in some format (tif, bmp,) you may be
better off looking for some picture control to take care of that for you.
Hey, I am newbie to vb too. so I can help very much beyon what I can find
by goole or built help.

you may also want to look at the game snippets or starter kit/template. I
am sure there are plenty of examples for handling graphics

"G .Net" <no********@ema il.com> wrote in message
news:jZ******** *************** *******@pipex.n et...
Hi Fred

Ah, looks like exactly what I need!!!

However, bit of newbie so need help in exactly what to do. Could I
trouble you to give the steps I need?

G

"Fred Hedges" <do******@spamm uch.com> wrote in message
news:e4******** ***********@new s.demon.co.uk.. .
What you need to do is make a user control and then modify it's
transparent property on window construction. You then need to handle
"Invalidate Ex" messages in order to force the parent to redraw your
background, rather than you. Funny you mention this because I had to do
this with a "working... .." animation yesterday.

This sample is in C# but it's easy to convert. You won't be needing a
picture box. Just use DrawImage to render your GIF on the control
surface but overriding the paint event.

http://www.devnewsgroups.net/link.as...rol&lang=en%3E

"G .Net" <no********@ema il.com> wrote in message
news:Jf******** ************@pi pex.net...
Hi

I have a form on which I have a picture box. I have placed a GIF as the
image for this picture box. The GIF has a transparent background.

If I change the background color of the form, then the GIF appears on
the form correctly i.e. the background of the form shows through the
transparent part of the gif.

However, if I place a BackgroundImage on the form, the transparent part
of the form does not show the BackgroundImage of the form, rather is
shows the back color of the form. This obviously make the GIF not to be
"transparen t".

Can anybody help?

Thanks

G



May 22 '06 #8

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

Similar topics

6
2374
by: lawrence | last post by:
I've the form you see below, which is supposed to upload an image. I expect the image name as a var to be $uploadedFile. In the receiving function, I've this code: global $uploadedFile, $uploadedFile_size, $uploadedFile_name; echo "here is the file name: $uploadedFile, $uploadedFile_size, $uploadedFile_name; <hr> "; $uploadedFile_name = $formatTextObject->processFileName($uploadedFile_name); $uploadedFile_name =...
3
11762
by: dave | last post by:
Hello there, I am at my wit's end ! I have used the following script succesfully to upload an image to my web space. But what I really want to be able to do is to update an existing record in a table in MySQL with the path & filename to the image. I have successfully uploaded and performed an update query on the database, but the problem I have is I cannot retain the primary key field in a variable which is then used in a SQL update...
4
8383
by: Kevin Myers | last post by:
Hello, Please forgive my reposting of this note with hopefully a more relevant subject line. On an Access 2000 form under Windows 2000 I would like to use a Kodak Image Edit Control to display the contents of a TIFF image file. According to the very limited documentation that I have been able to locate so far, all I should need to do is to drop the Image Edit Control onto the form in design mode, set the control's Image property to...
2
3507
by: Don Tucker | last post by:
Hello, I have a Windows Application that needs to load multiple image files in response to users clicking buttons. Currently, I just have these images as .jpg files on disk, but I don't want to have to migrate the files everywhere that the executable is installed. Is there a way to add them to a Visual Studio solution/project so that they are embedded in the application somehow? If so, how do I access the images when needed? Thanks,...
3
1764
by: Dave | last post by:
Hey all, I have a problem and I can't find anything on the net to really address it. We have a program at work that has lots of numbers on the front of the form because it is a control program for a hydro plant. My boss would like me to create a web page so our control center can see all of the numbers but not have access to the actual form. Some of these numbers are gathered every second, others every five seconds and still others...
3
21270
by: jackiepatti | last post by:
QUESTION: I have a web page containing a form that contains an image instead of a submit button, e.g. <form name='myform' action='get' method='otherpage.asp'> <input type='image' src='picture.gif' name='myimage' id='myimage'> </form> When forms with image types are submitted, the value is not returned; instead, when the form is submitted, the XY coordinates of the where the user clicked on the image are sent. For example, if the user
16
2874
by: browntown | last post by:
so I have this application I'm nearly finished with. The only thing the client has requested is the ability to submit the form by pressing "enter". I didn't think this would be a huge pain in the ass and the app will be used internally so I'm not too worried about users who aren't using javascript. I'm using the following javascript to detect whether or not they've hit enter: if(document.layers) {
2
2364
by: Poppa Pimp | last post by:
ImageResizer.php Image Resizer PLEASE HELP The URL of the page this is on in my site is http://poppa-pimps-wallpapers.com//ImageResizer.php You can click on browse and get image,but when you upload image it will go to another page and says ]((unable to create emp directory)) Here is a site to be able to see script actually work http://tech.tailoredweb.com/image-editor-52/ and can be DL from there also. I am using FP 2003 and...
7
17057
by: mishrarajesh44 | last post by:
hii all Truly telling i hav got this code from net & i am finding error while running the code below.. code:- <?php $idir = "photo/"; // Path To Images Directory $tdir = "photo/thumbs/"; // Path To Thumbnails Directory $twidth = "125"; // Maximum Width For Thumbnail Images
10
7068
by: mishrarajesh44 | last post by:
hii all, I am facing a problem currently.. i have a script for image uploading and resizing.. the image uploading takes place properly for every size images.. but, the resizing works for only small sized iamages.. for eg. resizing takes place for 70 kb sized images but fails for 600kb or more.. my code is below..
0
8921
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
8763
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
9427
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
9202
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
6722
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
6022
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
4528
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...
1
3238
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
2
2683
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.