home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- BorderStyle = 1 'Fixed Single
- Caption = "Your First ImageKnife/OCX Project"
- ClientHeight = 4695
- ClientLeft = 1140
- ClientTop = 1950
- ClientWidth = 5535
- Height = 5385
- Left = 1080
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4695
- ScaleWidth = 5535
- Top = 1320
- Width = 5655
- Begin ik32Lib.Picbuf Picbuf1
- Height = 4575
- Left = 120
- TabIndex = 0
- Top = 0
- Width = 5295
- _Version = 65541
- _ExtentX = 9340
- _ExtentY = 8070
- _StockProps = 253
- End
- Begin VB.Menu mnuFile
- Caption = "&File"
- Begin VB.Menu mnuExit
- Caption = "E&xit"
- Shortcut = ^X
- End
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- Picbuf1.Appearance = ThreeD
- End Sub
- Private Sub mnuExit_Click()
- End
- End Sub
- Private Sub Picbuf1_Click()
- Picbuf1.filename = App.Path + "\..\Images\marybeth.tif"
- Picbuf1.Load
- End Sub
- Private Sub Picbuf1_DblClick()
- Picbuf1.AutoScale = Not Picbuf1.AutoScale
- If Picbuf1.AutoScale = False Then
- Picbuf1.ScaleScreen = 1
- Picbuf1.ScaleImage = 1
- End If
- End Sub
-