home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 24
/
CD_ASCQ_24_0995.iso
/
win
/
fr
/
makhlp
/
exemple
/
vbasic
/
feuille2.frm
< prev
next >
Wrap
Text File
|
1995-05-24
|
2KB
|
58 lines
VERSION 2.00
Begin Form Feuille2
BackColor = &H00C0C0C0&
Caption = "Feuille2"
ClientHeight = 3210
ClientLeft = 2220
ClientTop = 1920
ClientWidth = 5925
ClipControls = 0 'False
Height = 3645
HelpContextID = 4
Left = 2145
LinkTopic = "Feuille2"
ScaleHeight = 3210
ScaleWidth = 5925
Top = 1560
Width = 6075
Begin CommandButton Commande1
Caption = "Fermer cette feuille"
Height = 645
HelpContextID = 5
Left = 2010
TabIndex = 1
Top = 2160
Width = 1995
End
Begin Label Etiquette1
BackColor = &H00800080&
Caption = "Le ""HelpContextID"" de cette feuille = 4 Le """"HelpContextID"" du bouton = 5"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 13.5
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H0000FFFF&
Height = 1005
Left = 150
TabIndex = 0
Top = 270
Width = 5595
End
End
Option Explicit
Dim Msg$, LN$
Sub Commande1_Click ()
Unload Me
End Sub
Sub Form_Load ()
LN = Chr$(10)
Msg = "Le ""HelpContextID"" de cette feuille = 4" & LN
Msg = Msg & "Le ""HelpContextID"" du bouton = 5"
Etiquette1.Caption = Msg
End Sub