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

  1. VERSION 5.00
  2. Begin VB.Form Wizard1 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Hintergrundbild plazieren (Schritt 1 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.CommandButton Skip 
  18.       Caption         =   "Nur &Position..."
  19.       Height          =   495
  20.       Left            =   3360
  21.       TabIndex        =   4
  22.       Top             =   1920
  23.       Width           =   1455
  24.    End
  25.    Begin VB.CommandButton Cont 
  26.       Caption         =   "&Weiter..."
  27.       Default         =   -1  'True
  28.       Height          =   495
  29.       Left            =   2160
  30.       TabIndex        =   3
  31.       Top             =   1920
  32.       Width           =   1035
  33.    End
  34.    Begin VB.CommandButton Abort 
  35.       Cancel          =   -1  'True
  36.       Caption         =   "Abbrechen"
  37.       Height          =   495
  38.       Left            =   1080
  39.       TabIndex        =   2
  40.       Top             =   1920
  41.       Width           =   975
  42.    End
  43.    Begin VB.Label Label3 
  44.       Caption         =   "Falls Sie nur die Position des Bildes verΣndern m÷chten, klicken Sie auf die SchaltflΣche ""Nur Position""."
  45.       Height          =   615
  46.       Left            =   120
  47.       TabIndex        =   5
  48.       Top             =   1080
  49.       Width           =   4815
  50.    End
  51.    Begin VB.Label Label2 
  52.       Caption         =   "Ma▀stab des Hintergrundbildes ermitteln:"
  53.       BeginProperty Font 
  54.          Name            =   "MS Sans Serif"
  55.          Size            =   9.75
  56.          Charset         =   0
  57.          Weight          =   700
  58.          Underline       =   0   'False
  59.          Italic          =   0   'False
  60.          Strikethrough   =   0   'False
  61.       EndProperty
  62.       Height          =   375
  63.       Left            =   120
  64.       TabIndex        =   1
  65.       Top             =   120
  66.       Width           =   4935
  67.    End
  68.    Begin VB.Label Label1 
  69.       Caption         =   "Bitte klicken Sie zwei Punkte in Ihrem Hintergrundbild an, von denen Sie die tatsΣchliche Entfernung kennen."
  70.       Height          =   495
  71.       Left            =   120
  72.       TabIndex        =   0
  73.       Top             =   480
  74.       Width           =   4695
  75.    End
  76. End
  77. Attribute VB_Name = "Wizard1"
  78. Attribute VB_GlobalNameSpace = False
  79. Attribute VB_Creatable = False
  80. Attribute VB_PredeclaredId = True
  81. Attribute VB_Exposed = False
  82. ' MS Visual Basic Demo-Programm zur Demonstration der ActiveX-FΣhigkeit
  83. ' von ArCon(+).
  84. '
  85. ' Der abgebildete Code dient lediglich Demonstrationszwecken.
  86. ' Es wird keinerlei Garantie fⁿr die Richtigkeit und/oder
  87. ' FunktionsfΣhigkeit ⁿbernommen. Bei Fragen wenden Sie sich bitte an
  88. '
  89. '    mb-Programme
  90. '    Software im Bauwesen GmbH
  91. '    Hermannstra▀e 1
  92. '    D-31785 Hameln
  93. '    e-mail:  arcon@mb-hameln.de
  94. '    Internet http://www.mb-hameln.de
  95.  
  96. Option Explicit
  97.  
  98. Private Sub Abort_Click()
  99.     Main.result = False
  100.     Unload Me
  101. End Sub
  102.  
  103. Private Sub Cont_Click()
  104.     Main.result = True
  105.     Main.posOnly = False
  106.     Unload Me
  107. End Sub
  108.  
  109. Private Sub Form_Load()
  110.     Main.exe.StartModalDialog hWnd
  111. End Sub
  112.  
  113. Private Sub Form_Unload(Cancel As Integer)
  114.     Main.exe.EndModalDialog
  115. End Sub
  116.  
  117. Private Sub Skip_Click()
  118.     Main.result = True
  119.     Main.posOnly = True
  120.     Unload Me
  121. End Sub
  122.