ProgressBox.cs (OpenSystems)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace HostAndWeb
{
public partial class ProgressBox : Form
{
public ProgressBox()
{
InitializeComponent();
}
private void ProcessBox_Load(object sender, EventArgs e)
{
MessageLabel.Text = "Please wait.";
MessageLabel.Invalidate();
}
}
}
|