home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / disk22 / vbasic / mover.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-04-29  |  799 b   |  29 lines

  1. VERSION 4.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Ejemplo del m
  4. todo Move"
  5.    ClientHeight    =   4140
  6.    ClientLeft      =   1140
  7.    ClientTop       =   1515
  8.    ClientWidth     =   7305
  9.    Height          =   4545
  10.    Left            =   1080
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   4140
  13.    ScaleWidth      =   7305
  14.    Top             =   1170
  15.    Width           =   7425
  16.    Begin VB.Image Image1 
  17.       Height          =   480
  18.       Left            =   120
  19.       Picture         =   "Mover.frx":0000
  20.       Top             =   120
  21.       Width           =   480
  22.    End
  23. Attribute VB_Name = "Form1"
  24. Attribute VB_Creatable = False
  25. Attribute VB_Exposed = False
  26. Private Sub Image1_Click()
  27.   Image1.Move Image1.Left + 240, Image1.Top + 240
  28. End Sub
  29.