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

  1. VERSION 5.00
  2. Begin VB.Form Wizard3 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Hintergrundbild plazieren (Schritt 3 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 Abort 
  18.       Cancel          =   -1  'True
  19.       Caption         =   "Abbrechen"
  20.       Height          =   495
  21.       Left            =   1200
  22.       TabIndex        =   1
  23.       Top             =   1920
  24.       Width           =   975
  25.    End
  26.    Begin VB.CommandButton Cont 
  27.       Caption         =   "&Weiter..."
  28.       Default         =   -1  'True
  29.       Height          =   495
  30.       Left            =   2880
  31.       TabIndex        =   0
  32.       Top             =   1920
  33.       Width           =   1035
  34.    End
  35.    Begin VB.Label Label1 
  36.       Caption         =   $"Wizard3.frx":0000
  37.       Height          =   1215
  38.       Left            =   120
  39.       TabIndex        =   3
  40.       Top             =   600
  41.       Width           =   4695
  42.    End
  43.    Begin VB.Label Label2 
  44.       Caption         =   "Position des Hintergrundbildes ermitteln:"
  45.       BeginProperty Font 
  46.          Name            =   "MS Sans Serif"
  47.          Size            =   9.75
  48.          Charset         =   0
  49.          Weight          =   700
  50.          Underline       =   0   'False
  51.          Italic          =   0   'False
  52.          Strikethrough   =   0   'False
  53.       EndProperty
  54.       Height          =   375
  55.       Left            =   120
  56.       TabIndex        =   2
  57.       Top             =   120
  58.       Width           =   4935
  59.    End
  60. End
  61. Attribute VB_Name = "Wizard3"
  62. Attribute VB_GlobalNameSpace = False
  63. Attribute VB_Creatable = False
  64. Attribute VB_PredeclaredId = True
  65. Attribute VB_Exposed = False
  66. ' MS Visual Basic Demo-Programm zur Demonstration der ActiveX-FΣhigkeit
  67. ' von ArCon(+).
  68. '
  69. ' Der abgebildete Code dient lediglich Demonstrationszwecken.
  70. ' Es wird keinerlei Garantie fⁿr die Richtigkeit und/oder
  71. ' FunktionsfΣhigkeit ⁿbernommen. Bei Fragen wenden Sie sich bitte an
  72. '
  73. '    mb-Programme
  74. '    Software im Bauwesen GmbH
  75. '    Hermannstra▀e 1
  76. '    D-31785 Hameln
  77. '    e-mail:  arcon@mb-hameln.de
  78. '    Internet http://www.mb-hameln.de
  79.  
  80. Option Explicit
  81.  
  82. Private Sub Abort_Click()
  83.     Main.result = False
  84.     Unload Me
  85. End Sub
  86.  
  87. Private Sub Cont_Click()
  88.     Main.result = True
  89.     Unload Me
  90. End Sub
  91.  
  92. Private Sub Form_Load()
  93.     Main.exe.StartModalDialog hWnd
  94. End Sub
  95.  
  96. Private Sub Form_Unload(Cancel As Integer)
  97.     Main.exe.EndModalDialog
  98. End Sub
  99.