📄 cookdataset1.designer.vb
字号:
End Get
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property p3Column() As System.Data.DataColumn
Get
Return Me.columnp3
End Get
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property p4Column() As System.Data.DataColumn
Get
Return Me.columnp4
End Get
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public ReadOnly Property p5Column() As System.Data.DataColumn
Get
Return Me.columnp5
End Get
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute(), _
System.ComponentModel.Browsable(false)> _
Public ReadOnly Property Count() As Integer
Get
Return Me.Rows.Count
End Get
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Default ReadOnly Property Item(ByVal index As Integer) As passwordRow
Get
Return CType(Me.Rows(index),passwordRow)
End Get
End Property
Public Event passwordRowChanging As passwordRowChangeEventHandler
Public Event passwordRowChanged As passwordRowChangeEventHandler
Public Event passwordRowDeleting As passwordRowChangeEventHandler
Public Event passwordRowDeleted As passwordRowChangeEventHandler
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Overloads Sub AddpasswordRow(ByVal row As passwordRow)
Me.Rows.Add(row)
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Overloads Function AddpasswordRow(ByVal p1 As String, ByVal p2 As String, ByVal p3 As String, ByVal p4 As String, ByVal p5 As String) As passwordRow
Dim rowpasswordRow As passwordRow = CType(Me.NewRow,passwordRow)
rowpasswordRow.ItemArray = New Object() {p1, p2, p3, p4, p5}
Me.Rows.Add(rowpasswordRow)
Return rowpasswordRow
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Overridable Function GetEnumerator() As System.Collections.IEnumerator Implements System.Collections.IEnumerable.GetEnumerator
Return Me.Rows.GetEnumerator
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Overrides Function Clone() As System.Data.DataTable
Dim cln As passwordDataTable = CType(MyBase.Clone,passwordDataTable)
cln.InitVars
Return cln
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Function CreateInstance() As System.Data.DataTable
Return New passwordDataTable
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Friend Sub InitVars()
Me.columnp1 = MyBase.Columns("p1")
Me.columnp2 = MyBase.Columns("p2")
Me.columnp3 = MyBase.Columns("p3")
Me.columnp4 = MyBase.Columns("p4")
Me.columnp5 = MyBase.Columns("p5")
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Private Sub InitClass()
Me.columnp1 = New System.Data.DataColumn("p1", GetType(String), Nothing, System.Data.MappingType.Element)
MyBase.Columns.Add(Me.columnp1)
Me.columnp2 = New System.Data.DataColumn("p2", GetType(String), Nothing, System.Data.MappingType.Element)
MyBase.Columns.Add(Me.columnp2)
Me.columnp3 = New System.Data.DataColumn("p3", GetType(String), Nothing, System.Data.MappingType.Element)
MyBase.Columns.Add(Me.columnp3)
Me.columnp4 = New System.Data.DataColumn("p4", GetType(String), Nothing, System.Data.MappingType.Element)
MyBase.Columns.Add(Me.columnp4)
Me.columnp5 = New System.Data.DataColumn("p5", GetType(String), Nothing, System.Data.MappingType.Element)
MyBase.Columns.Add(Me.columnp5)
Me.columnp1.MaxLength = 2147483647
Me.columnp2.MaxLength = 2147483647
Me.columnp3.MaxLength = 2147483647
Me.columnp4.MaxLength = 2147483647
Me.columnp5.MaxLength = 2147483647
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Function NewpasswordRow() As passwordRow
Return CType(Me.NewRow,passwordRow)
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Function NewRowFromBuilder(ByVal builder As System.Data.DataRowBuilder) As System.Data.DataRow
Return New passwordRow(builder)
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Function GetRowType() As System.Type
Return GetType(passwordRow)
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Sub OnRowChanged(ByVal e As System.Data.DataRowChangeEventArgs)
MyBase.OnRowChanged(e)
If (Not (Me.passwordRowChangedEvent) Is Nothing) Then
RaiseEvent passwordRowChanged(Me, New passwordRowChangeEvent(CType(e.Row,passwordRow), e.Action))
End If
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Sub OnRowChanging(ByVal e As System.Data.DataRowChangeEventArgs)
MyBase.OnRowChanging(e)
If (Not (Me.passwordRowChangingEvent) Is Nothing) Then
RaiseEvent passwordRowChanging(Me, New passwordRowChangeEvent(CType(e.Row,passwordRow), e.Action))
End If
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Sub OnRowDeleted(ByVal e As System.Data.DataRowChangeEventArgs)
MyBase.OnRowDeleted(e)
If (Not (Me.passwordRowDeletedEvent) Is Nothing) Then
RaiseEvent passwordRowDeleted(Me, New passwordRowChangeEvent(CType(e.Row,passwordRow), e.Action))
End If
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Protected Overrides Sub OnRowDeleting(ByVal e As System.Data.DataRowChangeEventArgs)
MyBase.OnRowDeleting(e)
If (Not (Me.passwordRowDeletingEvent) Is Nothing) Then
RaiseEvent passwordRowDeleting(Me, New passwordRowChangeEvent(CType(e.Row,passwordRow), e.Action))
End If
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Sub RemovepasswordRow(ByVal row As passwordRow)
Me.Rows.Remove(row)
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Shared Function GetTypedTableSchema(ByVal xs As System.Xml.Schema.XmlSchemaSet) As System.Xml.Schema.XmlSchemaComplexType
Dim type As System.Xml.Schema.XmlSchemaComplexType = New System.Xml.Schema.XmlSchemaComplexType
Dim sequence As System.Xml.Schema.XmlSchemaSequence = New System.Xml.Schema.XmlSchemaSequence
Dim ds As cookDataSet1 = New cookDataSet1
xs.Add(ds.GetSchemaSerializable)
Dim any1 As System.Xml.Schema.XmlSchemaAny = New System.Xml.Schema.XmlSchemaAny
any1.Namespace = "http://www.w3.org/2001/XMLSchema"
any1.MinOccurs = New Decimal(0)
any1.MaxOccurs = Decimal.MaxValue
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax
sequence.Items.Add(any1)
Dim any2 As System.Xml.Schema.XmlSchemaAny = New System.Xml.Schema.XmlSchemaAny
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1"
any2.MinOccurs = New Decimal(1)
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax
sequence.Items.Add(any2)
Dim attribute1 As System.Xml.Schema.XmlSchemaAttribute = New System.Xml.Schema.XmlSchemaAttribute
attribute1.Name = "namespace"
attribute1.FixedValue = ds.Namespace
type.Attributes.Add(attribute1)
Dim attribute2 As System.Xml.Schema.XmlSchemaAttribute = New System.Xml.Schema.XmlSchemaAttribute
attribute2.Name = "tableTypeName"
attribute2.FixedValue = "passwordDataTable"
type.Attributes.Add(attribute2)
type.Particle = sequence
Return type
End Function
End Class
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")> _
Partial Public Class pass_verifyRow
Inherits System.Data.DataRow
Private tablepass_verify As pass_verifyDataTable
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Friend Sub New(ByVal rb As System.Data.DataRowBuilder)
MyBase.New(rb)
Me.tablepass_verify = CType(Me.Table,pass_verifyDataTable)
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Property p1() As String
Get
Try
Return CType(Me(Me.tablepass_verify.p1Column),String)
Catch e As System.InvalidCastException
Throw New System.Data.StrongTypingException("The value for column 'p1' in table 'pass_verify' is DBNull.", e)
End Try
End Get
Set
Me(Me.tablepass_verify.p1Column) = value
End Set
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Property p2() As String
Get
Try
Return CType(Me(Me.tablepass_verify.p2Column),String)
Catch e As System.InvalidCastException
Throw New System.Data.StrongTypingException("The value for column 'p2' in table 'pass_verify' is DBNull.", e)
End Try
End Get
Set
Me(Me.tablepass_verify.p2Column) = value
End Set
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Property p3() As String
Get
Try
Return CType(Me(Me.tablepass_verify.p3Column),String)
Catch e As System.InvalidCastException
Throw New System.Data.StrongTypingException("The value for column 'p3' in table 'pass_verify' is DBNull.", e)
End Try
End Get
Set
Me(Me.tablepass_verify.p3Column) = value
End Set
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Property p4() As String
Get
Try
Return CType(Me(Me.tablepass_verify.p4Column),String)
Catch e As System.InvalidCastException
Throw New System.Data.StrongTypingException("The value for column 'p4' in table 'pass_verify' is DBNull.", e)
End Try
End Get
Set
Me(Me.tablepass_verify.p4Column) = value
End Set
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Property p5() As String
Get
Try
Return CType(Me(Me.tablepass_verify.p5Column),String)
Catch e As System.InvalidCastException
Throw New System.Data.StrongTypingException("The value for column 'p5' in table 'pass_verify' is DBNull.", e)
End Try
End Get
Set
Me(Me.tablepass_verify.p5Column) = value
End Set
End Property
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Function Isp1Null() As Boolean
Return Me.IsNull(Me.tablepass_verify.p1Column)
End Function
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Public Sub Setp1Null()
Me(Me.tablepass_verify.p1Column) = System.Convert.DBNull
End Sub
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -