home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2003 January / PCpro_2003_01.ISO / born / Beisp / EuroForm.vb < prev    next >
Encoding:
Text File  |  2002-10-15  |  3.8 KB  |  145 lines

  1. Imports System
  2. Imports System.Windows.Forms
  3.  
  4. 'This file was autogenerated by a tool.
  5. Namespace GeneratedForm
  6.     
  7.     '<summary>
  8.     '    Add summary description for CreatedObject0
  9.     '</summary>
  10.     Public Class CreatedObject0
  11.         Inherits System.Windows.Forms.Form
  12.         
  13.         Private button2 As System.Windows.Forms.Button
  14.         
  15.         Private button As System.Windows.Forms.Button
  16.         
  17.         Private label4 As System.Windows.Forms.Label
  18.         
  19.         Private label3 As System.Windows.Forms.Label
  20.         
  21.         Private textBox2 As System.Windows.Forms.TextBox
  22.         
  23.         Private textBox As System.Windows.Forms.TextBox
  24.         
  25.         Private label2 As System.Windows.Forms.Label
  26.         
  27.         Private label As System.Windows.Forms.Label
  28.         
  29.         Public Sub New()
  30.             MyBase.New
  31.             ' Must be called for initialization
  32.             Me.InitializeComponents
  33.             '
  34.             ' TODO : Add constructor code after InitializeComponents
  35.             '
  36.         End Sub
  37.         
  38.         '<summary>
  39.         '    This method was autogenerated - do not change the contents manually
  40.         '</summary>
  41.         Private Sub InitializeComponents()
  42.             '
  43.             ' Set up generated class CreatedObject0
  44.             '
  45.             Me.SuspendLayout
  46.             Me.Name = "CreatedObject0"
  47.             Me.MaximizeBox = false
  48.             Me.Text = "Euro-Rechner (by G. Born)"
  49.             Me.Size = New System.Drawing.Size(302, 178)
  50.             Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D
  51.             
  52.             '
  53.             ' Set up member button2
  54.             '
  55.             button2 = New System.Windows.Forms.Button
  56.             button2.Name = "button2"
  57.             button2.TabIndex = 7
  58.             button2.Text = "Schlie├ƒen"
  59.             button2.Size = New System.Drawing.Size(104, 32)
  60.             button2.Location = New System.Drawing.Point(160, 80)
  61.             Me.Controls.Add(button2)
  62.             
  63.             '
  64.             ' Set up member button
  65.             '
  66.             button = New System.Windows.Forms.Button
  67.             button.Name = "button"
  68.             button.TabIndex = 6
  69.             button.Text = "Calc"
  70.             button.Size = New System.Drawing.Size(112, 32)
  71.             button.Location = New System.Drawing.Point(32, 80)
  72.             Me.Controls.Add(button)
  73.             
  74.             '
  75.             ' Set up member label4
  76.             '
  77.             label4 = New System.Windows.Forms.Label
  78.             label4.Name = "label4"
  79.             label4.Location = New System.Drawing.Point(184, 40)
  80.             label4.Size = New System.Drawing.Size(64, 16)
  81.             label4.TabIndex = 5
  82.             label4.Text = "DM"
  83.             Me.Controls.Add(label4)
  84.             
  85.             '
  86.             ' Set up member label3
  87.             '
  88.             label3 = New System.Windows.Forms.Label
  89.             label3.Name = "label3"
  90.             label3.Location = New System.Drawing.Point(184, 8)
  91.             label3.Size = New System.Drawing.Size(64, 23)
  92.             label3.TabIndex = 4
  93.             label3.Text = "Euro"
  94.             Me.Controls.Add(label3)
  95.             
  96.             '
  97.             ' Set up member textBox2
  98.             '
  99.             textBox2 = New System.Windows.Forms.TextBox
  100.             textBox2.Name = "textBox2"
  101.             textBox2.Text = "textBox2"
  102.             textBox2.Size = New System.Drawing.Size(96, 20)
  103.             textBox2.Location = New System.Drawing.Point(64, 40)
  104.             textBox2.TabIndex = 3
  105.             Me.Controls.Add(textBox2)
  106.             
  107.             '
  108.             ' Set up member textBox
  109.             '
  110.             textBox = New System.Windows.Forms.TextBox
  111.             textBox.Name = "textBox"
  112.             textBox.Text = "textBox"
  113.             textBox.Size = New System.Drawing.Size(96, 20)
  114.             textBox.Location = New System.Drawing.Point(64, 8)
  115.             textBox.TabIndex = 2
  116.             Me.Controls.Add(textBox)
  117.             
  118.             '
  119.             ' Set up member label2
  120.             '
  121.             label2 = New System.Windows.Forms.Label
  122.             label2.Name = "label2"
  123.             label2.Location = New System.Drawing.Point(16, 40)
  124.             label2.Size = New System.Drawing.Size(48, 24)
  125.             label2.TabIndex = 1
  126.             label2 = New System.Drawing.Font("Microsoft Sans Serif", 8)
  127.             label2.Text = "Euro"
  128.             Me.Controls.Add(label2)
  129.             
  130.             '
  131.             ' Set up member label
  132.             '
  133.             label = New System.Windows.Forms.Label
  134.             label.Name = "label"
  135.             label.Location = New System.Drawing.Point(16, 8)
  136.             label.Size = New System.Drawing.Size(48, 16)
  137.             label.TabIndex = 0
  138.             label = New System.Drawing.Font("Microsoft Sans Serif", 8)
  139.             label.Text = "DM"
  140.             Me.Controls.Add(label)
  141.             Me.ResumeLayout(false)
  142.         End Sub
  143.     End Class
  144. End Namespace
  145.