home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Tool Box
/
SIMS_2.iso
/
bp_6_93
/
vbwin
/
vbsetup
/
setup2.frm
< prev
next >
Wrap
Text File
|
1994-09-23
|
3KB
|
92 lines
VERSION 2.00
Begin Form frm_Setup2
BackColor = &H00808000&
ClientHeight = 6810
ClientLeft = 60
ClientTop = 60
ClientWidth = 9480
ControlBox = 0 'False
FillStyle = 0 'Solid
FontBold = -1 'True
FontItalic = -1 'True
FontName = "MS Sans Serif"
FontSize = 24
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00000000&
Height = 7215
Left = 0
LinkMode = 1 'Source
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 454
ScaleMode = 3 'Pixel
ScaleWidth = 632
Top = -285
Width = 9600
WindowState = 2 'Maximized
Begin Image img_Intro
Height = 5295
Left = 180
Stretch = -1 'True
Top = 1200
Width = 9135
End
Begin Label lab_Title
BackStyle = 0 'Transparent
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 24
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H80000005&
Height = 1035
Left = 180
TabIndex = 1
Top = 180
Width = 9135
End
Begin Label lab_1
Height = 210
Left = 6720
TabIndex = 0
Top = 6540
Visible = 0 'False
Width = 2610
End
End
'============================================================
' Projekt : Setup-Steuerung mit Hilfe von Makros
' Formname : SETUP2.FRM
' Aufgabe : Hauptform
' Copyright : Arthur Burda
' Compiler : Visual Basic 3.0 fⁿr Windows
'============================================================
' l. ─nderung am : 27.07.1994
' Version : 1.00
' Bemerkungen : Erste Implementierung
'------------------------------------------------------------
Option Explicit
'============================================================
' Routine : Form_Unload
'============================================================
' Aufgabe : Wird aufgerufen, wenn das Setup-Hauptfenster ge-
' schlossen wird und deinstalliert die Windows-Klasse
' zur 3D-Darstellung von Message-Boxen.
' Eingabe : Cancel = Abbruch (True oder False)
' Ausgabe : keine
'------------------------------------------------------------
'
Sub Form_Unload (Cancel As Integer)
Dim Result%
Result% = DoneCtl3D("[]")
End Sub