aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.cs
blob: 6481c3cffd5400b135a30c057da3ade817a4776d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Histacom2.OS.Win95.Win95Apps.IE3Sites
{
    public partial class IE3Start : UserControl
    {
        public IE3Start()
        {
            InitializeComponent();
        }

        private void linkLabel1_Click(object sender, EventArgs e)
        {
            WinClassicIE3.GoToPage("www.google.com");
        }

        private void linkLabel2_Click(object sender, EventArgs e)
        {
            WinClassicIE3.GoToPage("www.12padams.com");
        }
    }
}