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 >
Text File  |  1995-05-24  |  2KB  |  58 lines

  1. VERSION 2.00
  2. Begin Form Feuille2 
  3.    BackColor       =   &H00C0C0C0&
  4.    Caption         =   "Feuille2"
  5.    ClientHeight    =   3210
  6.    ClientLeft      =   2220
  7.    ClientTop       =   1920
  8.    ClientWidth     =   5925
  9.    ClipControls    =   0   'False
  10.    Height          =   3645
  11.    HelpContextID   =   4
  12.    Left            =   2145
  13.    LinkTopic       =   "Feuille2"
  14.    ScaleHeight     =   3210
  15.    ScaleWidth      =   5925
  16.    Top             =   1560
  17.    Width           =   6075
  18.    Begin CommandButton Commande1 
  19.       Caption         =   "Fermer cette feuille"
  20.       Height          =   645
  21.       HelpContextID   =   5
  22.       Left            =   2010
  23.       TabIndex        =   1
  24.       Top             =   2160
  25.       Width           =   1995
  26.    End
  27.    Begin Label Etiquette1 
  28.       BackColor       =   &H00800080&
  29.       Caption         =   "Le ""HelpContextID"" de cette feuille = 4  Le """"HelpContextID"" du bouton = 5"
  30.       FontBold        =   -1  'True
  31.       FontItalic      =   0   'False
  32.       FontName        =   "MS Sans Serif"
  33.       FontSize        =   13.5
  34.       FontStrikethru  =   0   'False
  35.       FontUnderline   =   0   'False
  36.       ForeColor       =   &H0000FFFF&
  37.       Height          =   1005
  38.       Left            =   150
  39.       TabIndex        =   0
  40.       Top             =   270
  41.       Width           =   5595
  42.    End
  43. End
  44. Option Explicit
  45. Dim Msg$, LN$
  46.  
  47. Sub Commande1_Click ()
  48.   Unload Me
  49. End Sub
  50.  
  51. Sub Form_Load ()
  52.   LN = Chr$(10)
  53.   Msg = "Le ""HelpContextID"" de cette feuille = 4" & LN
  54.   Msg = Msg & "Le ""HelpContextID"" du bouton = 5"
  55.   Etiquette1.Caption = Msg
  56. End Sub
  57.  
  58.