C#反编译微软MSDN2003的帮助文档,并将反编译结果保存到一个SQLSERVER数据库中__教程 |
|
日期:2007-5-20 0:37:44 人气:169 [大 中 小] |
|
|
|
myThread = new System.Threading.Thread(st); myThread.Start(); }
private void cmdStop_Click(object sender, System.EventArgs e) { bolCancel = true; }
private void cmdPose_Click(object sender, System.EventArgs e) { bolPause = true; System.Windows.Forms.MessageBox.Show("正在暂停"); bolPause = false; myThread.Resume(); } #endregion #region 系统自动生成的代码 **************************************************************** private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtOutPath; private System.Windows.Forms.Label lblFile; private System.Windows.Forms.Button cmdStart; private System.Windows.Forms.Button cmdStop; private System.Windows.Forms.Label lblDB; private System.Windows.Forms.Label lblState; private System.Windows.Forms.ProgressBar myProgress; private System.Windows.Forms.ProgressBar MainProgress; private System.Windows.Forms.Button cmdPose; /// /// 必需的设计器变量。 /// private System.ComponentModel.Container components = null;
public dlgMSDNOut() { // // Windows 窗体设计器支持所必需的 // InitializeComponent();
// // TODO: 在 InitializeComponent 调用后添加任何构造函数代码 // }
/// /// 清理所有正在使用的资源。 /// protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); }
/// /// 应用程序的主入口点。 /// [STAThread] static void Main(string[] args) |
|
出处:本站原创 作者:佚名 |
|
|