473,765 Members | 2,024 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Splash Screen Fade app causing main app to flutter.

Can someone look at this and tell me why, when I call this from my main app,
it displays fine (fades form in and out) but then before my main app
displays, I see other dialog boxes flash monentarily on the screen and this
delays the main app display?

Here is the fade which I compile to a dll and call from my main app:

using System;
using System.Threadin g;
using System.Timers;
using System.Drawing;
using System.Collecti ons;
using System.Componen tModel;
using System.Windows. Forms;

namespace SplashScreenBas ic
{
/// <summary>
/// Summary description for Basic Splash Form.
/// </summary>
public class Splash : System.Windows. Forms.Form
{
protected internal System.Timers.T imer tmrFadeIn;
/// <summary>
/// Required designer variable.
/// </summary>
private System.Componen tModel.Containe r components = null;

public Splash()
{
//
// Required for Windows Form Designer support
//
InitializeCompo nent();
//
// TODO: Add any constructor code after InitializeCompo nent call
//
this.Opacity = 0;
this.Show();
tmrFadeIn.Enabl ed = true;

}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Disp ose();
}
}
base.Dispose( disposing );
}

/// <summary>
/// Call from static methods.
/// </summary>
[STAThread]
public static void ShowForm()
{
Application.Ena bleVisualStyles ();
Application.DoE vents();
Application.Run (new Splash());
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
System.Resource s.ResourceManag er resources = new
System.Resource s.ResourceManag er(typeof(Splas h));
this.tmrFadeIn = new System.Timers.T imer();
((System.Compon entModel.ISuppo rtInitialize)(t his.tmrFadeIn)) .BeginInit();
//
// tmrFadeIn
//
this.tmrFadeIn. Interval = 20;
this.tmrFadeIn. SynchronizingOb ject = this;
this.tmrFadeIn. Elapsed += new
System.Timers.E lapsedEventHand ler(this.tmrFad e_Elapsed);
//
// Splash
//
this.AutoScaleB aseSize = new System.Drawing. Size(5, 13);
this.Background Image =
((System.Drawin g.Image)(resour ces.GetObject(" $this.Backgroun dImage")));
this.ClientSize = new System.Drawing. Size(384, 184);
this.FormBorder Style = System.Windows. Forms.FormBorde rStyle.None;
this.Name = "Splash";
this.Opacity = 0;
this.StartPosit ion = System.Windows. Forms.FormStart Position.Center Screen;
((System.Compon entModel.ISuppo rtInitialize)(t his.tmrFadeIn)) .EndInit();

}
#endregion

private void Splash_Load(obj ect sender, System.EventArg s e)
{

}
///Splash screen
///Fade out/in
///Called from form constructor.
private bool upflag = true;
private void tmrFade_Elapsed (object sender, System.Timers.E lapsedEventArgs
e)
{
if (this.Opacity < 1 && upflag == true)
{
this.Opacity += 0.05;
}
if (this.Opacity >= 1)
{
upflag = false;
Thread.Sleep(40 00);
this.tmrFadeIn. Interval = 5;
}
if (upflag == false)
{
this.Opacity -= 0.025;
}
if (this.Opacity <= 0 && upflag == false)
{
tmrFadeIn.Enabl ed = false;
SplashScreenBas ic.Splash.Activ eForm.Close();
}
}
}
}

Here is the main app:

#region Using directives
using System;
using System.Drawing;
using System.Collecti ons;
using System.Componen tModel;
using System.Windows. Forms;
using System.Data;
using System.IO;
using SplashScreenBas ic;

#endregion

namespace FileNames2TXT
{

/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows. Forms.Form
{
private System.Windows. Forms.Button button1;
private System.Windows. Forms.Button button2;
private System.Windows. Forms.FolderBro wserDialog folderBrowserDi alog1;
private System.Windows. Forms.SaveFileD ialog saveFileDialog1 ;
private System.Windows. Forms.Label label1;
private System.Windows. Forms.Label label2;
private System.Windows. Forms.Button button3;
private System.Windows. Forms.Timer timer1;
private System.Componen tModel.IContain er components;
//
public Form1()
{
//
// Required for Windows Form Designer support
//
SplashScreenBas ic.Splash.ShowF orm();
InitializeCompo nent();
// TODO: Add any constructor code after InitializeCompo nent call
//
// Constructor.
}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Disp ose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.components = new System.Componen tModel.Containe r();
this.button1 = new System.Windows. Forms.Button();
this.button2 = new System.Windows. Forms.Button();
this.folderBrow serDialog1 = new System.Windows. Forms.FolderBro wserDialog();
this.saveFileDi alog1 = new System.Windows. Forms.SaveFileD ialog();
this.label1 = new System.Windows. Forms.Label();
this.label2 = new System.Windows. Forms.Label();
this.button3 = new System.Windows. Forms.Button();
this.timer1 = new System.Windows. Forms.Timer(thi s.components);
this.SuspendLay out();
//
// button1
//
this.button1.Lo cation = new System.Drawing. Point(40, 104);
this.button1.Na me = "button1";
this.button1.Si ze = new System.Drawing. Size(104, 23);
this.button1.Ta bIndex = 0;
this.button1.Te xt = "Select Source";
this.button1.Cl ick += new System.EventHan dler(this.butto n1_Click);
//
// button2
//
this.button2.Lo cation = new System.Drawing. Point(184, 104);
this.button2.Na me = "button2";
this.button2.Si ze = new System.Drawing. Size(120, 23);
this.button2.Ta bIndex = 1;
this.button2.Te xt = "Select Destination";
this.button2.Cl ick += new System.EventHan dler(this.butto n2_Click);
//
// folderBrowserDi alog1
//
this.folderBrow serDialog1.Desc ription = "Select Directory";
this.folderBrow serDialog1.Sele ctedPath = "G:\\";
this.folderBrow serDialog1.Show NewFolderButton = false;
//
// saveFileDialog1
//
this.saveFileDi alog1.AddExtens ion = false;
this.saveFileDi alog1.CheckPath Exists = false;
this.saveFileDi alog1.Dereferen ceLinks = false;
this.saveFileDi alog1.Overwrite Prompt = false;
this.saveFileDi alog1.ValidateN ames = false;
//
// label1
//
this.label1.Loc ation = new System.Drawing. Point(8, 16);
this.label1.Nam e = "label1";
this.label1.Siz e = new System.Drawing. Size(312, 16);
this.label1.Tab Index = 2;
this.label1.Tex t = "Select file directory and text file.";
//
// label2
//
this.label2.Fon t = new System.Drawing. Font("Microsoft Sans Serif", 8.25F,
System.Drawing. FontStyle.Regul ar, System.Drawing. GraphicsUnit.Po int,
((System.Byte)( 0)));
this.label2.Loc ation = new System.Drawing. Point(8, 48);
this.label2.Nam e = "label2";
this.label2.Siz e = new System.Drawing. Size(312, 16);
this.label2.Tab Index = 3;
this.label2.Tag = "";
//
// button3
//
this.button3.Lo cation = new System.Drawing. Point(128, 152);
this.button3.Na me = "button3";
this.button3.Si ze = new System.Drawing. Size(72, 23);
this.button3.Ta bIndex = 4;
this.button3.Te xt = "OK";
this.button3.Cl ick += new System.EventHan dler(this.butto n3_Click);
//
// Form1
//
this.AutoScaleB aseSize = new System.Drawing. Size(5, 13);
this.ClientSize = new System.Drawing. Size(328, 189);
this.Controls.A dd(this.button3 );
this.Controls.A dd(this.label2) ;
this.Controls.A dd(this.label1) ;
this.Controls.A dd(this.button2 );
this.Controls.A dd(this.button1 );
this.Name = "Form1";
this.Text = "FileNames2TXT" ;
this.Load += new System.EventHan dler(this.Form1 _Load);
this.ResumeLayo ut(false);

}
#endregion

/// <summary>
/// The main entry point for the application.
/// </summary>
///
[STAThread]
static void Main(string[] args)
{
Application.Run (new Form1());
}

private string folderName1, fileName1 ;

public void button1_Click(o bject sender, System.EventArg s e) //open folder
selection.
{
DialogResult result = folderBrowserDi alog1.ShowDialo g();
if(result == DialogResult.OK ) //folder selected
{
folderName1 = folderBrowserDi alog1.SelectedP ath;
label1.Text = folderName1 ;
}
else
{
folderName1 = null ;
label1.Text = "Select file folder." ;
}
}

public void button2_Click(o bject sender, System.EventArg s e)
{
saveFileDialog1 .Filter = "txt files (*.txt)|*.txt" ; //display dialog
saveFileDialog1 .OverwritePromp t = true ;
saveFileDialog1 .ValidateNames = true ;
saveFileDialog1 .InitialDirecto ry = "g:\\lsptem p" ;
saveFileDialog1 .RestoreDirecto ry = true ;
saveFileDialog1 .CheckFileExist s = false ; //will not add
..ext if true.
saveFileDialog1 .DereferenceLin ks = false ;
saveFileDialog1 .AddExtension = true ;
saveFileDialog1 .DefaultExt = "TXT" ;
DialogResult result2 = saveFileDialog1 .ShowDialog();
if (result2 == DialogResult.OK )
{
fileName1 = saveFileDialog1 .FileName;
label2.Text = fileName1 ;
}
else
{
fileName1 = null ;
label2.Text = "Select a text file." ;
}
}

public void button3_Click(o bject sender, System.EventArg s e) //Okay button
{
if (folderName1 != null && fileName1 != null)
{
System.IO.Direc toryInfo dir = new System.IO.Direc toryInfo(folder Name1);
StreamWriter writer = new StreamWriter(fi leName1);
foreach (System.IO.File Info file in dir.GetFiles("* .*"))
{
writer.WriteLin e(" {0}", file.FullName);
}
writer.Close();
MessageBox.Show ("File names from: \n" +
folderName1 +
"\n "
+ "\n Written to: \n"
+ fileName1);

Application.Exi t();
}
}

private void Form1_Load(obje ct sender, System.EventArg s e)
{
}
} //end form1 class
} //end namespace

Thanks for any direction.

Bill
Nov 17 '05 #1
1 3602
I think I found the problem.

Instead of using this line: SplashScreenBas ic.Splash.Activ eForm.Close();

I replaced it with: this.Close();

And it seems to work fine.

Thanks for any trouble.

Bill

"BillZondlo " wrote:
Can someone look at this and tell me why, when I call this from my main app,
it displays fine (fades form in and out) but then before my main app
displays, I see other dialog boxes flash monentarily on the screen and this
delays the main app display?

Here is the fade which I compile to a dll and call from my main app:

using System;
using System.Threadin g;
using System.Timers;
using System.Drawing;
using System.Collecti ons;
using System.Componen tModel;
using System.Windows. Forms;

namespace SplashScreenBas ic
{
/// <summary>
/// Summary description for Basic Splash Form.
/// </summary>
public class Splash : System.Windows. Forms.Form
{
protected internal System.Timers.T imer tmrFadeIn;
/// <summary>
/// Required designer variable.
/// </summary>
private System.Componen tModel.Containe r components = null;

public Splash()
{
//
// Required for Windows Form Designer support
//
InitializeCompo nent();
//
// TODO: Add any constructor code after InitializeCompo nent call
//
this.Opacity = 0;
this.Show();
tmrFadeIn.Enabl ed = true;

}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Disp ose();
}
}
base.Dispose( disposing );
}

/// <summary>
/// Call from static methods.
/// </summary>
[STAThread]
public static void ShowForm()
{
Application.Ena bleVisualStyles ();
Application.DoE vents();
Application.Run (new Splash());
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
System.Resource s.ResourceManag er resources = new
System.Resource s.ResourceManag er(typeof(Splas h));
this.tmrFadeIn = new System.Timers.T imer();
((System.Compon entModel.ISuppo rtInitialize)(t his.tmrFadeIn)) .BeginInit();
//
// tmrFadeIn
//
this.tmrFadeIn. Interval = 20;
this.tmrFadeIn. SynchronizingOb ject = this;
this.tmrFadeIn. Elapsed += new
System.Timers.E lapsedEventHand ler(this.tmrFad e_Elapsed);
//
// Splash
//
this.AutoScaleB aseSize = new System.Drawing. Size(5, 13);
this.Background Image =
((System.Drawin g.Image)(resour ces.GetObject(" $this.Backgroun dImage")));
this.ClientSize = new System.Drawing. Size(384, 184);
this.FormBorder Style = System.Windows. Forms.FormBorde rStyle.None;
this.Name = "Splash";
this.Opacity = 0;
this.StartPosit ion = System.Windows. Forms.FormStart Position.Center Screen;
((System.Compon entModel.ISuppo rtInitialize)(t his.tmrFadeIn)) .EndInit();

}
#endregion

private void Splash_Load(obj ect sender, System.EventArg s e)
{

}
///Splash screen
///Fade out/in
///Called from form constructor.
private bool upflag = true;
private void tmrFade_Elapsed (object sender, System.Timers.E lapsedEventArgs
e)
{
if (this.Opacity < 1 && upflag == true)
{
this.Opacity += 0.05;
}
if (this.Opacity >= 1)
{
upflag = false;
Thread.Sleep(40 00);
this.tmrFadeIn. Interval = 5;
}
if (upflag == false)
{
this.Opacity -= 0.025;
}
if (this.Opacity <= 0 && upflag == false)
{
tmrFadeIn.Enabl ed = false;
SplashScreenBas ic.Splash.Activ eForm.Close();
}
}
}
}

Here is the main app:

#region Using directives
using System;
using System.Drawing;
using System.Collecti ons;
using System.Componen tModel;
using System.Windows. Forms;
using System.Data;
using System.IO;
using SplashScreenBas ic;

#endregion

namespace FileNames2TXT
{

/// <summary>
/// Summary description for Form1.
/// </summary>
public class Form1 : System.Windows. Forms.Form
{
private System.Windows. Forms.Button button1;
private System.Windows. Forms.Button button2;
private System.Windows. Forms.FolderBro wserDialog folderBrowserDi alog1;
private System.Windows. Forms.SaveFileD ialog saveFileDialog1 ;
private System.Windows. Forms.Label label1;
private System.Windows. Forms.Label label2;
private System.Windows. Forms.Button button3;
private System.Windows. Forms.Timer timer1;
private System.Componen tModel.IContain er components;
//
public Form1()
{
//
// Required for Windows Form Designer support
//
SplashScreenBas ic.Splash.ShowF orm();
InitializeCompo nent();
// TODO: Add any constructor code after InitializeCompo nent call
//
// Constructor.
}

/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Disp ose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeCompo nent()
{
this.components = new System.Componen tModel.Containe r();
this.button1 = new System.Windows. Forms.Button();
this.button2 = new System.Windows. Forms.Button();
this.folderBrow serDialog1 = new System.Windows. Forms.FolderBro wserDialog();
this.saveFileDi alog1 = new System.Windows. Forms.SaveFileD ialog();
this.label1 = new System.Windows. Forms.Label();
this.label2 = new System.Windows. Forms.Label();
this.button3 = new System.Windows. Forms.Button();
this.timer1 = new System.Windows. Forms.Timer(thi s.components);
this.SuspendLay out();
//
// button1
//
this.button1.Lo cation = new System.Drawing. Point(40, 104);
this.button1.Na me = "button1";
this.button1.Si ze = new System.Drawing. Size(104, 23);
this.button1.Ta bIndex = 0;
this.button1.Te xt = "Select Source";
this.button1.Cl ick += new System.EventHan dler(this.butto n1_Click);
//
// button2
//
this.button2.Lo cation = new System.Drawing. Point(184, 104);
this.button2.Na me = "button2";
this.button2.Si ze = new System.Drawing. Size(120, 23);
this.button2.Ta bIndex = 1;
this.button2.Te xt = "Select Destination";
this.button2.Cl ick += new System.EventHan dler(this.butto n2_Click);
//
// folderBrowserDi alog1
//
this.folderBrow serDialog1.Desc ription = "Select Directory";
this.folderBrow serDialog1.Sele ctedPath = "G:\\";
this.folderBrow serDialog1.Show NewFolderButton = false;
//
// saveFileDialog1
//
this.saveFileDi alog1.AddExtens ion = false;
this.saveFileDi alog1.CheckPath Exists = false;
this.saveFileDi alog1.Dereferen ceLinks = false;
this.saveFileDi alog1.Overwrite Prompt = false;
this.saveFileDi alog1.ValidateN ames = false;
//
// label1
//
this.label1.Loc ation = new System.Drawing. Point(8, 16);
this.label1.Nam e = "label1";
this.label1.Siz e = new System.Drawing. Size(312, 16);
this.label1.Tab Index = 2;
this.label1.Tex t = "Select file directory and text file.";
//
// label2
//
this.label2.Fon t = new System.Drawing. Font("Microsoft Sans Serif", 8.25F,
System.Drawing. FontStyle.Regul ar, System.Drawing. GraphicsUnit.Po int,
((System.Byte)( 0)));
this.label2.Loc ation = new System.Drawing. Point(8, 48);
this.label2.Nam e = "label2";
this.label2.Siz e = new System.Drawing. Size(312, 16);
this.label2.Tab Index = 3;
this.label2.Tag = "";
//
// button3
//
this.button3.Lo cation = new System.Drawing. Point(128, 152);
this.button3.Na me = "button3";
this.button3.Si ze = new System.Drawing. Size(72, 23);
this.button3.Ta bIndex = 4;
this.button3.Te xt = "OK";
this.button3.Cl ick += new System.EventHan dler(this.butto n3_Click);
//
// Form1
//
this.AutoScaleB aseSize = new System.Drawing. Size(5, 13);
this.ClientSize = new System.Drawing. Size(328, 189);
this.Controls.A dd(this.button3 );
this.Controls.A dd(this.label2) ;
this.Controls.A dd(this.label1) ;
this.Controls.A dd(this.button2 );
this.Controls.A dd(this.button1 );
this.Name = "Form1";
this.Text = "FileNames2TXT" ;
this.Load += new System.EventHan dler(this.Form1 _Load);
this.ResumeLayo ut(false);

}
#endregion

/// <summary>
/// The main entry point for the application.
/// </summary>
///
[STAThread]
static void Main(string[] args)
{
Application.Run (new Form1());
}

Nov 17 '05 #2

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

Similar topics

3
2259
by: andrewcw | last post by:
I implemented the simplest of splash screens ( static and on its own thread ). But it seem that when first called maybe 8 seconds elapsed before it showed up, the main form follows several seconds later. Naturally recalling the application, the response is adequate I have 10 classes in my project. Some small, none really huge. And another form public class frmQCLoader : System.Windows.Forms.For { private System.Windows.Forms.DataGrid...
2
1860
by: Stuart Ferguson | last post by:
Hi, I am currently writing a GUI which requires a splash screen in C#, the form itself has a Graphic (Inside a picture box) and 2 labels on it, when i show it using the following the form soesnt display right..... The splash screen loading even which contains this code is being fired bfore the load event of the MDI Form, i dont know if that is what is causing the problem frmSplash frmSplash;
14
6697
by: SStory | last post by:
I am trying to make a splash screen for my vb.net app. It is an mdi app. including the splash code produces wierd results. not inluding makes things fine. Also have tried loading the splash form from: * load event of main mdi parent
4
289
by: Lou | last post by:
Ok, How can I have my main app initialize while showng a splash screen. -Lou
1
2255
by: Ken Allen | last post by:
I am developing a small utility program that must perform a considerable amount of 'background' or 'research' work before it can display any user interface. In general it can take 3-15 seconds to perform all of the work requured before we display any user interface. So we have determined that the utility should have a splash screen to assure the user that the program is executing and will provide results shortly. I should also note that...
7
2868
by: Bob | last post by:
I have a winforms app written in Vs2005 Vb.Net, The setiings are to Enable the application Framework and I defined a splashform. Works fine if no errors occur. I do a checking on the mainform load event to make sure that my database connectivity works OK. If it does not, I give the user a warning message, but he can end up getting an unhandled exception that closes down the app, which is what I want in that case. However when the app shuts...
2
4219
by: will_456 | last post by:
In vb2005 Express: In My Project Application Splash Screen I have selected my splash screen form. The form opens on project startup but closes immediately before anyone would have time to read it. I presume it only stays visible while the main form initialises. This is not long enough but I can't see how to slow it down. Should I set the splash screen using the Application settings or go back to
10
22378
by: =?Utf-8?B?UmljaGFyZCBCeXNvdXRo?= | last post by:
Hi In my app I have a SplashScreen, a login form and a main form. On launching the app, I'd like to show the SplashScreen while reading config files and attempting a database connection. I show progress of these tasks on a label on the SplashScreen form. Once this is completed ok, the splash screen should close and the login form should be displayed. A successful login closes that form and shows the main form.
4
5222
by: Gaz | last post by:
I am having a bit of a problem getting my application to work properly. RIght here is my problem... WHen my C# windows app loads up the start form, i create a new thread and show the splash on the new thread and put the main thread to sleep until the splash screen has done the business, then i kill the new thread and start another to show the login and again put the main one to sleep. Problem i have is that my splash screen will show...
0
9568
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
9399
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
10007
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
9957
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
7379
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
6649
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
5276
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
5423
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3532
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.