home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Houseplan Collection
/
HRCD2005.ISO
/
data1.cab
/
Zusatz
/
3DS
/
DATA2.Z
/
Hallo.frm
< prev
next >
Wrap
Text File
|
1998-06-15
|
3KB
|
89 lines
VERSION 5.00
Begin VB.Form Hallo
BorderStyle = 0 'Kein
Caption = "Hallo"
ClientHeight = 2700
ClientLeft = 0
ClientTop = 0
ClientWidth = 3090
LinkTopic = "Form1"
ScaleHeight = 2700
ScaleWidth = 3090
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows-Standard
Begin VB.TextBox DlgID
Enabled = 0 'False
Height = 375
Left = 1320
TabIndex = 3
Text = "0"
Top = 960
Width = 1335
End
Begin VB.CommandButton Btn
Caption = "&Rechts unten..."
Height = 450
Left = 1680
TabIndex = 1
Top = 2160
Width = 1335
End
Begin VB.Label TexName
Height = 615
Left = 240
TabIndex = 4
Top = 1440
Width = 2655
End
Begin VB.Label Label2
Caption = "Dialog-ID:"
Height = 255
Left = 240
TabIndex = 2
Top = 960
Width = 855
End
Begin VB.Label Label1
Caption = "Hier bin ich! (links oben)"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = -15
TabIndex = 0
Top = 105
Width = 1515
End
End
Attribute VB_Name = "Hallo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' MS Visual Basic Demo-Programm zur Demonstration der ActiveX-FΣhigkeit
' von ArCon(+).
'
' Der abgebildete Code dient lediglich Demonstrationszwecken.
' Es wird keinerlei Garantie fⁿr die Richtigkeit und/oder
' FunktionsfΣhigkeit ⁿbernommen. Bei Fragen wenden Sie sich bitte an
'
' mb-Programme
' Software im Bauwesen GmbH
' Hermannstra▀e 1
' D-31785 Hameln
' e-mail: arcon@mb-hameln.de
' Internet http://www.mb-hameln.de
Option Explicit
Private Sub Form_Resize()
Btn.Left = ScaleWidth - Btn.Width - 5
Btn.Top = ScaleHeight - Btn.Height - 5
TexName.Width = ScaleWidth - TexName.Left * 2
End Sub