本文介绍了IE 7克隆的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.pb = New System.Windows.Forms.PictureBox()
Me.HScrollBar1 = New System.Windows.Forms.HScrollBar()
CType(Me.pb, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'pb
'
Me.pb.BackColor = System.Drawing.Color.WhiteSmoke
Me.pb.Dock = System.Windows.Forms.DockStyle.Fill
Me.pb.Location = New System.Drawing.Point(0, 0)
Me.pb.Name = "pb"
Me.pb.Size = New System.Drawing.Size(603, 471)
Me.pb.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage
Me.pb.TabIndex = 0
Me.pb.TabStop = False
'
'HScrollBar1
'
Me.HScrollBar1.Location = New System.Drawing.Point(0, 0)
Me.HScrollBar1.Name = "HScrollBar1"
Me.HScrollBar1.Size = New System.Drawing.Size(80, 17)
Me.HScrollBar1.TabIndex = 1
'
'frmImage
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(603, 471)
Me.Controls.Add(Me.HScrollBar1)
Me.Controls.Add(Me.pb)
Me.Name = "frmImage"
Me.Text = "frmImage"
CType(Me.pb, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
我在Private Sub InitializeComponent()
行上看到一条错误消息,提示
"具有具有相同签名的多个定义"
我需要怎么办?:confused:
I get an error on the line Private Sub InitializeComponent()
that says
"has multiple definitions with identical signatures"
what do I need to do?:confused:
推荐答案
这篇关于IE 7克隆的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!