PageRenderTime 55ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/Visual Studio 2008/VBWinFormDataGridView/JustInTimeDataLoading/MainForm.Designer.vb

#
Visual Basic | 68 lines | 50 code | 4 blank | 14 comment | 0 complexity | d1930a1ee1742af887d414c017cf68d2 MD5 | raw file
  1. Namespace VBWinFormDataGridView.JustInTimeDataLoading
  2. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  3. Partial Class MainForm
  4. Inherits System.Windows.Forms.Form
  5. 'Form overrides dispose to clean up the component list.
  6. <System.Diagnostics.DebuggerNonUserCode()> _
  7. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8. Try
  9. If disposing AndAlso components IsNot Nothing Then
  10. components.Dispose()
  11. End If
  12. Finally
  13. MyBase.Dispose(disposing)
  14. End Try
  15. End Sub
  16. 'Required by the Windows Form Designer
  17. Private components As System.ComponentModel.IContainer
  18. 'NOTE: The following procedure is required by the Windows Form Designer
  19. 'It can be modified using the Windows Form Designer.
  20. 'Do not modify it using the code editor.
  21. <System.Diagnostics.DebuggerStepThrough()> _
  22. Private Sub InitializeComponent()
  23. Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainForm))
  24. Me.dataGridView1 = New System.Windows.Forms.DataGridView
  25. Me.label1 = New System.Windows.Forms.Label
  26. CType(Me.dataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
  27. Me.SuspendLayout()
  28. '
  29. 'dataGridView1
  30. '
  31. Me.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  32. Me.dataGridView1.Location = New System.Drawing.Point(30, 93)
  33. Me.dataGridView1.Name = "dataGridView1"
  34. Me.dataGridView1.Size = New System.Drawing.Size(596, 381)
  35. Me.dataGridView1.TabIndex = 3
  36. '
  37. 'label1
  38. '
  39. Me.label1.AutoSize = True
  40. Me.label1.Font = New System.Drawing.Font("Verdana", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  41. Me.label1.Location = New System.Drawing.Point(27, 25)
  42. Me.label1.Name = "label1"
  43. Me.label1.Size = New System.Drawing.Size(511, 49)
  44. Me.label1.TabIndex = 2
  45. Me.label1.Text = resources.GetString("label1.Text")
  46. Me.label1.UseCompatibleTextRendering = True
  47. '
  48. 'MainForm
  49. '
  50. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  51. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  52. Me.ClientSize = New System.Drawing.Size(652, 498)
  53. Me.Controls.Add(Me.dataGridView1)
  54. Me.Controls.Add(Me.label1)
  55. Me.Name = "MainForm"
  56. Me.Text = "MainForm"
  57. CType(Me.dataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
  58. Me.ResumeLayout(False)
  59. Me.PerformLayout()
  60. End Sub
  61. Private WithEvents dataGridView1 As System.Windows.Forms.DataGridView
  62. Private WithEvents label1 As System.Windows.Forms.Label
  63. End Class
  64. End Namespace