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

  1. VERSION 5.00
  2. Begin VB.Form ExclusivDlg 
  3.    Caption         =   "ArCon - Ersatzdialog"
  4.    ClientHeight    =   1560
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3405
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   1560
  10.    ScaleWidth      =   3405
  11.    StartUpPosition =   3  'Windows-Standard
  12.    Begin VB.CommandButton Cancel 
  13.       Cancel          =   -1  'True
  14.       Caption         =   "Abbruch"
  15.       Height          =   495
  16.       Left            =   2280
  17.       TabIndex        =   1
  18.       Top             =   840
  19.       Width           =   1095
  20.    End
  21.    Begin VB.CommandButton OK 
  22.       Caption         =   "&OK"
  23.       Default         =   -1  'True
  24.       Height          =   495
  25.       Left            =   2280
  26.       TabIndex        =   0
  27.       Top             =   120
  28.       Width           =   1095
  29.    End
  30. End
  31. Attribute VB_Name = "ExclusivDlg"
  32. Attribute VB_GlobalNameSpace = False
  33. Attribute VB_Creatable = False
  34. Attribute VB_PredeclaredId = True
  35. Attribute VB_Exposed = False
  36. Option Explicit
  37.  
  38. Public withOK As Boolean
  39.  
  40. Private Sub Cancel_Click()
  41.     withOK = False
  42.     Unload Me
  43. End Sub
  44.  
  45. Private Sub Form_Unload(Cancel As Integer)
  46.     Main.ExclusiveDone
  47. End Sub
  48.  
  49. Private Sub OK_Click()
  50.     withOK = True
  51.     Unload Me
  52. End Sub
  53.