home *** CD-ROM | disk | FTP | other *** search
/ The Houseplan Collection / HRCD2005.ISO / data1.cab / Zusatz / 3DS / DATA2.Z / Wizard2.frm < prev    next >
Text File  |  1999-01-27  |  4KB  |  124 lines

  1. VERSION 5.00
  2. Begin VB.Form Wizard2 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Hintergrundbild plazieren (Schritt 2 von 3)"
  5.    ClientHeight    =   2625
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   4965
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2625
  14.    ScaleWidth      =   4965
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   3  'Windows Default
  17.    Begin VB.TextBox Eingabe 
  18.       Height          =   375
  19.       Left            =   1560
  20.       TabIndex        =   0
  21.       Text            =   "0"
  22.       Top             =   1200
  23.       Width           =   1335
  24.    End
  25.    Begin VB.CommandButton Abort 
  26.       Cancel          =   -1  'True
  27.       Caption         =   "Abbrechen"
  28.       Height          =   495
  29.       Left            =   960
  30.       TabIndex        =   2
  31.       Top             =   1920
  32.       Width           =   975
  33.    End
  34.    Begin VB.CommandButton Cont 
  35.       Caption         =   "&Weiter..."
  36.       Default         =   -1  'True
  37.       Height          =   495
  38.       Left            =   2640
  39.       TabIndex        =   1
  40.       Top             =   1920
  41.       Width           =   1035
  42.    End
  43.    Begin VB.Label Label4 
  44.       Caption         =   "m"
  45.       Height          =   255
  46.       Left            =   3000
  47.       TabIndex        =   6
  48.       Top             =   1200
  49.       Width           =   495
  50.    End
  51.    Begin VB.Label Label3 
  52.       Caption         =   "Abstand:"
  53.       Height          =   375
  54.       Left            =   240
  55.       TabIndex        =   5
  56.       Top             =   1200
  57.       Width           =   1215
  58.    End
  59.    Begin VB.Label Label1 
  60.       Caption         =   "Wie weit sind die beiden angegebenen Punkte tatsΣchlich von einander entfernt?"
  61.       Height          =   615
  62.       Left            =   120
  63.       TabIndex        =   4
  64.       Top             =   480
  65.       Width           =   4695
  66.    End
  67.    Begin VB.Label Label2 
  68.       Caption         =   "Ma▀stab des Hintergrundbildes ermitteln:"
  69.       BeginProperty Font 
  70.          Name            =   "MS Sans Serif"
  71.          Size            =   9.75
  72.          Charset         =   0
  73.          Weight          =   700
  74.          Underline       =   0   'False
  75.          Italic          =   0   'False
  76.          Strikethrough   =   0   'False
  77.       EndProperty
  78.       Height          =   375
  79.       Left            =   120
  80.       TabIndex        =   3
  81.       Top             =   120
  82.       Width           =   4935
  83.    End
  84. End
  85. Attribute VB_Name = "Wizard2"
  86. Attribute VB_GlobalNameSpace = False
  87. Attribute VB_Creatable = False
  88. Attribute VB_PredeclaredId = True
  89. Attribute VB_Exposed = False
  90. ' MS Visual Basic Demo-Programm zur Demonstration der ActiveX-FΣhigkeit
  91. ' von ArCon(+).
  92. '
  93. ' Der abgebildete Code dient lediglich Demonstrationszwecken.
  94. ' Es wird keinerlei Garantie fⁿr die Richtigkeit und/oder
  95. ' FunktionsfΣhigkeit ⁿbernommen. Bei Fragen wenden Sie sich bitte an
  96. '
  97. '    mb-Programme
  98. '    Software im Bauwesen GmbH
  99. '    Hermannstra▀e 1
  100. '    D-31785 Hameln
  101. '    e-mail:  arcon@mb-hameln.de
  102. '    Internet http://www.mb-hameln.de
  103.  
  104. Option Explicit
  105.  
  106. Private Sub Abort_Click()
  107.     Main.result = False
  108.     Unload Me
  109. End Sub
  110.  
  111. Private Sub Cont_Click()
  112.     Main.result = True
  113.     Main.distance = Eingabe
  114.     Unload Me
  115. End Sub
  116.  
  117. Private Sub Form_Load()
  118.     Main.exe.StartModalDialog hWnd
  119. End Sub
  120.  
  121. Private Sub Form_Unload(Cancel As Integer)
  122.     Main.exe.EndModalDialog
  123. End Sub
  124.