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

  1. VERSION 5.00
  2. Begin VB.Form Settings 
  3.    Caption         =   "Einstellungen"
  4.    ClientHeight    =   2820
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   2805
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   2820
  10.    ScaleWidth      =   2805
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton Zoom 
  13.       Caption         =   "&Zoom Einstellungen..."
  14.       Height          =   495
  15.       Left            =   240
  16.       TabIndex        =   3
  17.       Top             =   2160
  18.       Width           =   2295
  19.    End
  20.    Begin VB.CommandButton Walk 
  21.       Caption         =   "Durch&wandern Einstellungen..."
  22.       Height          =   495
  23.       Left            =   240
  24.       TabIndex        =   2
  25.       Top             =   1480
  26.       Width           =   2295
  27.    End
  28.    Begin VB.CommandButton SavePic 
  29.       Caption         =   "&Bildspeichern Einstellungen..."
  30.       Height          =   495
  31.       Left            =   240
  32.       TabIndex        =   1
  33.       Top             =   800
  34.       Width           =   2295
  35.    End
  36.    Begin VB.CommandButton Print 
  37.       Caption         =   "&Druckeinstellungen..."
  38.       Height          =   495
  39.       Left            =   240
  40.       TabIndex        =   0
  41.       Top             =   120
  42.       Width           =   2295
  43.    End
  44. End
  45. Attribute VB_Name = "Settings"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. Option Explicit
  51.  
  52. Public exe As New ArCon.ArCon
  53.  
  54. Private Sub Print_Click()
  55.     Druck.Show vbModal
  56. End Sub
  57.  
  58. Private Sub SavePic_Click()
  59.     Bild.Show vbModal
  60. End Sub
  61.  
  62. Private Sub Walk_Click()
  63.     Wandern.Show vbModal
  64. End Sub
  65.  
  66. Private Sub Zoom_Click()
  67.     ZoomDlg.Show vbModal
  68. End Sub
  69.