Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Enabling/Disable Toolstrip buttons
Message
De
05/03/2006 23:09:01
 
 
À
04/03/2006 00:50:51
Information générale
Forum:
ASP.NET
Catégorie:
Formulaires Web
Versions des environnements
Environment:
C# 2.0
OS:
Windows XP SP2
Database:
MS SQL Server
Divers
Thread ID:
01101157
Message ID:
01101622
Vues:
10
Hi Bonnie,

The codes below is from the Wizard.cs. I know it's not much and that's why I am looking toward your feedback. Thanks again.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace MyApp.New_Reports
{
public partial class Wizard : MyApp.BaseForm
{
public Wizard()
{
InitializeComponent();
}

private void Wizard_Load(object sender, EventArgs e)
{
Main.next_ToolStripButton.enabled = false;
}


}
}

and this is how I called the Wizard.cs from the Main.cs

Form iWizard = new New_Reports.Wizard();
iWizard.StartPosition = FormStartPosition.CenterParent;
iWizard.MdiParent = this;
iWizard.WindowState = FormWindowState.Maximized;
iWizard.Show();
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform