home *** CD-ROM | disk | FTP | other *** search
/ The Houseplan Collection / HRCD2005.ISO / data1.cab / Zusatz / 3DS / DATA2.Z / Hallo.frm < prev    next >
Text File  |  1998-06-15  |  3KB  |  89 lines

  1. VERSION 5.00
  2. Begin VB.Form Hallo 
  3.    BorderStyle     =   0  'Kein
  4.    Caption         =   "Hallo"
  5.    ClientHeight    =   2700
  6.    ClientLeft      =   0
  7.    ClientTop       =   0
  8.    ClientWidth     =   3090
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   2700
  11.    ScaleWidth      =   3090
  12.    ShowInTaskbar   =   0   'False
  13.    StartUpPosition =   3  'Windows-Standard
  14.    Begin VB.TextBox DlgID 
  15.       Enabled         =   0   'False
  16.       Height          =   375
  17.       Left            =   1320
  18.       TabIndex        =   3
  19.       Text            =   "0"
  20.       Top             =   960
  21.       Width           =   1335
  22.    End
  23.    Begin VB.CommandButton Btn 
  24.       Caption         =   "&Rechts unten..."
  25.       Height          =   450
  26.       Left            =   1680
  27.       TabIndex        =   1
  28.       Top             =   2160
  29.       Width           =   1335
  30.    End
  31.    Begin VB.Label TexName 
  32.       Height          =   615
  33.       Left            =   240
  34.       TabIndex        =   4
  35.       Top             =   1440
  36.       Width           =   2655
  37.    End
  38.    Begin VB.Label Label2 
  39.       Caption         =   "Dialog-ID:"
  40.       Height          =   255
  41.       Left            =   240
  42.       TabIndex        =   2
  43.       Top             =   960
  44.       Width           =   855
  45.    End
  46.    Begin VB.Label Label1 
  47.       Caption         =   "Hier bin ich! (links oben)"
  48.       BeginProperty Font 
  49.          Name            =   "MS Sans Serif"
  50.          Size            =   12
  51.          Charset         =   0
  52.          Weight          =   700
  53.          Underline       =   0   'False
  54.          Italic          =   0   'False
  55.          Strikethrough   =   0   'False
  56.       EndProperty
  57.       Height          =   615
  58.       Left            =   -15
  59.       TabIndex        =   0
  60.       Top             =   105
  61.       Width           =   1515
  62.    End
  63. End
  64. Attribute VB_Name = "Hallo"
  65. Attribute VB_GlobalNameSpace = False
  66. Attribute VB_Creatable = False
  67. Attribute VB_PredeclaredId = True
  68. Attribute VB_Exposed = False
  69. ' MS Visual Basic Demo-Programm zur Demonstration der ActiveX-FΣhigkeit
  70. ' von ArCon(+).
  71. '
  72. ' Der abgebildete Code dient lediglich Demonstrationszwecken.
  73. ' Es wird keinerlei Garantie fⁿr die Richtigkeit und/oder
  74. ' FunktionsfΣhigkeit ⁿbernommen. Bei Fragen wenden Sie sich bitte an
  75. '
  76. '    mb-Programme
  77. '    Software im Bauwesen GmbH
  78. '    Hermannstra▀e 1
  79. '    D-31785 Hameln
  80. '    e-mail:  arcon@mb-hameln.de
  81. '    Internet http://www.mb-hameln.de
  82. Option Explicit
  83.  
  84. Private Sub Form_Resize()
  85.     Btn.Left = ScaleWidth - Btn.Width - 5
  86.     Btn.Top = ScaleHeight - Btn.Height - 5
  87.     TexName.Width = ScaleWidth - TexName.Left * 2
  88. End Sub
  89.