home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / disk22 / vbasic / apilar.frm (.txt) next >
Encoding:
Visual Basic Form  |  1996-04-29  |  1.4 KB  |  52 lines

  1. VERSION 4.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Ejemplo del m
  4. todo ZOrder"
  5.    ClientHeight    =   1455
  6.    ClientLeft      =   2805
  7.    ClientTop       =   3165
  8.    ClientWidth     =   3525
  9.    Height          =   1860
  10.    Left            =   2745
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   1455
  13.    ScaleWidth      =   3525
  14.    Top             =   2820
  15.    Width           =   3645
  16.    Begin VB.CommandButton Command3 
  17.       Caption         =   "Command3"
  18.       Height          =   495
  19.       Left            =   1560
  20.       TabIndex        =   2
  21.       Top             =   360
  22.       Width           =   1215
  23.    End
  24.    Begin VB.CommandButton Command2 
  25.       Caption         =   "Command2"
  26.       Height          =   495
  27.       Left            =   1320
  28.       TabIndex        =   1
  29.       Top             =   600
  30.       Width           =   1215
  31.    End
  32.    Begin VB.CommandButton Command1 
  33.       Caption         =   "Command1"
  34.       Height          =   495
  35.       Left            =   720
  36.       TabIndex        =   0
  37.       Top             =   480
  38.       Width           =   1215
  39.    End
  40. Attribute VB_Name = "Form1"
  41. Attribute VB_Creatable = False
  42. Attribute VB_Exposed = False
  43. Private Sub Command1_Click()
  44.   Command1.ZOrder
  45. End Sub
  46. Private Sub Command2_Click()
  47.   Command2.ZOrder
  48. End Sub
  49. Private Sub Command3_Click()
  50.   Command3.ZOrder
  51. End Sub
  52.