Use ActiveX control : ActiveX « GUI Windows Forms « C# / CSharp Tutorial

Home
C# / CSharp Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statement
5.String
6.struct
7.Class
8.Operator Overload
9.delegate
10.Attribute
11.Data Structure
12.Assembly
13.Date Time
14.Development
15.File Directory Stream
16.Preprocessing Directives
17.Regular Expression
18.Generic
19.Reflection
20.Thread
21.I18N Internationalization
22.LINQ
23.GUI Windows Forms
24.Windows Presentation Foundation
25.Windows Communication Foundation
26.Workflow
27.2D
28.Design Patterns
29.Windows
30.XML
31.XML LINQ
32.ADO.Net
33.Network
34.Directory Services
35.Security
36.unsafe
C# / C Sharp
C# / C Sharp by API
C# / CSharp Open Source
C# / CSharp Tutorial » GUI Windows Forms » ActiveX 
23.84.1.Use ActiveX control
using System;        
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace ActiveXExample
{
  /// <summary>
  /// Summary description for ActiveXForm.
  /// </summary>
  public class ActiveXForm : System.Windows.Forms.Form
  {
    private AxSHDocVw.AxWebBrowser axWebBrowser1;
    private System.Windows.Forms.Button buttonUrl;
    private System.Windows.Forms.TextBox textBoxUrl;
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.ComponentModel.Container components = null;

    public ActiveXForm()
    {
      //
      // Required for Windows Form Designer support
      //
      InitializeComponent();

      //
      // TODO: Add any constructor code after InitializeComponent call
      //
    }

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

    #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 InitializeComponent()
    {
      
      this.axWebBrowser1 = new AxSHDocVw.AxWebBrowser();
      this.textBoxUrl = new System.Windows.Forms.TextBox();
      this.buttonUrl = new System.Windows.Forms.Button();
      ((System.ComponentModel.ISupportInitialize)(this.axWebBrowser1)).BeginInit();
      this.SuspendLayout();
      // 
      // axWebBrowser1
      // 
      this.axWebBrowser1.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom
        | System.Windows.Forms.AnchorStyles.Left
        | System.Windows.Forms.AnchorStyles.Right);
      this.axWebBrowser1.Enabled = true;
      this.axWebBrowser1.Location = new System.Drawing.Point(88);
      this.axWebBrowser1.Size = new System.Drawing.Size(344208);
      this.axWebBrowser1.TabIndex = 0;
      // 
      // textBoxUrl
      // 
      this.textBoxUrl.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left
        | System.Windows.Forms.AnchorStyles.Right);
      this.textBoxUrl.Location = new System.Drawing.Point(8232);
      this.textBoxUrl.Name = "textBoxUrl";
      this.textBoxUrl.Size = new System.Drawing.Size(26420);
      this.textBoxUrl.TabIndex = 1;
      this.textBoxUrl.Text = "http://www.apress.com/";
      // 
      // buttonUrl
      // 
      this.buttonUrl.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
      this.buttonUrl.Location = new System.Drawing.Point(280232);
      this.buttonUrl.Name = "buttonUrl";
      this.buttonUrl.TabIndex = 2;
      this.buttonUrl.Text = "Browse!";
      this.buttonUrl.Click += new System.EventHandler(this.buttonUrl_Click);
      // 
      // ActiveXForm
      // 
      this.AutoScaleBaseSize = new System.Drawing.Size(513);
      this.ClientSize = new System.Drawing.Size(360266);
      this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                      this.buttonUrl,
                                      this.textBoxUrl,
                                      this.axWebBrowser1});
      this.Name = "ActiveXForm";
      this.Text = "ActiveX Example";
      ((System.ComponentModel.ISupportInitialize)(this.axWebBrowser1)).EndInit();
      this.ResumeLayout(false);

    }
    #endregion

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

    private void buttonUrl_Click(object sender, System.EventArgs e)
    {
      object flags = null;
      object frame = null;
      object post = null;
      object headers = null;
      axWebBrowser1.NavigatetextBoxUrl.Text, ref flags, ref frame, ref post, ref headers );
    }
  }
}
23.84.ActiveX
23.84.1.Use ActiveX control
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.