home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form WipesForm
- Caption = "Image Rotation"
- ClientHeight = 4095
- ClientLeft = 1770
- ClientTop = 2295
- ClientWidth = 8055
- LinkTopic = "Form1"
- ScaleHeight = 4095
- ScaleWidth = 8055
- Begin VB.CommandButton Command3
- Caption = "Copy"
- BeginProperty Font
- Name = "Times New Roman"
- Size = 11.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 195
- TabIndex = 6
- Top = 3450
- Width = 1890
- End
- Begin VB.CommandButton Command2
- Caption = "Flip Vertical"
- BeginProperty Font
- Name = "Times New Roman"
- Size = 11.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 4080
- TabIndex = 5
- Top = 3450
- Width = 1890
- End
- Begin VB.CommandButton Command1
- Caption = "Flip Horizontal"
- BeginProperty Font
- Name = "Times New Roman"
- Size = 11.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 2130
- TabIndex = 4
- Top = 3450
- Width = 1890
- End
- Begin VB.CommandButton Rotate
- Caption = "Flip Both"
- BeginProperty Font
- Name = "Times New Roman"
- Size = 11.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 6015
- TabIndex = 3
- Top = 3450
- Width = 1890
- End
- Begin VB.CommandButton Exit
- Caption = "E X I T"
- BeginProperty Font
- Name = "Times New Roman"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 480
- Left = 8400
- TabIndex = 2
- Top = 5400
- Width = 2250
- End
- Begin VB.PictureBox Picture2
- Height = 2895
- Left = 4200
- ScaleHeight = 189
- ScaleMode = 3 'Pixel
- ScaleWidth = 232
- TabIndex = 1
- Top = 330
- Width = 3540
- End
- Begin VB.PictureBox Picture1
- Height = 2895
- Left = 360
- Picture = "PicFlip.frx":0000
- ScaleHeight = 189
- ScaleMode = 3 'Pixel
- ScaleWidth = 232
- TabIndex = 0
- Top = 330
- Width = 3540
- End
- Attribute VB_Name = "WipesForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
-
- Picture2.PaintPicture Picture1.Picture, 0, 0, _
- Picture1.ScaleWidth, Picture1.ScaleHeight, Picture1.ScaleWidth, _
- 0, -Picture1.ScaleWidth, Picture1.ScaleHeight, &HCC0020
- End Sub
- Private Sub Command2_Click()
-
- Picture2.PaintPicture Picture1.Picture, 0, 0, _
- Picture1.ScaleWidth, Picture1.ScaleHeight, 0, _
- Picture1.ScaleHeight, Picture1.ScaleWidth, -Picture1.ScaleHeight, &HCC0020
- End Sub
- Private Sub Command3_Click()
-
- Picture2.PaintPicture Picture1.Picture, 0, 0, _
- Picture1.ScaleWidth, Picture1.ScaleHeight, 0, 0, _
- Picture1.ScaleWidth, Picture1.ScaleHeight, &HCC0020
- End Sub
- Private Sub Rotate_Click()
-
- Picture2.PaintPicture Picture1.Picture, 0, 0, _
- Picture1.ScaleWidth, Picture1.ScaleHeight, Picture1.ScaleWidth, _
- Picture1.ScaleHeight, -Picture1.ScaleWidth, -Picture1.ScaleHeight, &HCC0020
-
-
-
- End Sub
-