home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{47A3D398-EB59-11D2-918C-0020185489F0}#2.0#0"; "SCREENCAPPRO.OCX"
- Begin VB.Form Form1
- Caption = "Capture Demo-Project"
- ClientHeight = 5415
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 8400
- LinkTopic = "Form1"
- ScaleHeight = 5415
- ScaleWidth = 8400
- StartUpPosition = 3 'Windows-Standard
- Begin ScreenCapP.ScreenCapPRO ScreenCapPRO1
- Left = 240
- Top = 120
- _ExtentX = 847
- _ExtentY = 847
- End
- Begin VB.PictureBox Picture1
- Height = 3735
- Left = 1800
- ScaleHeight = 3675
- ScaleWidth = 6435
- TabIndex = 10
- Top = 1560
- Width = 6495
- End
- Begin VB.TextBox Text4
- Height = 285
- Left = 7800
- TabIndex = 5
- Text = "200"
- Top = 480
- Width = 495
- End
- Begin VB.TextBox Text3
- Height = 285
- Left = 5760
- TabIndex = 4
- Text = "200"
- Top = 480
- Width = 495
- End
- Begin VB.TextBox Text2
- Height = 285
- Left = 7800
- TabIndex = 3
- Text = "100"
- Top = 120
- Width = 495
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 5760
- TabIndex = 2
- Text = "100"
- Top = 120
- Width = 495
- End
- Begin VB.CommandButton Command3
- Caption = "Capture &Part of screen"
- Height = 495
- Left = 4440
- TabIndex = 1
- Top = 960
- Width = 3855
- End
- Begin VB.CommandButton Command1
- Caption = "Cature &whole screen"
- Height = 495
- Left = 120
- TabIndex = 0
- Top = 960
- Width = 3855
- End
- Begin VB.Label Label5
- BorderStyle = 1 'Fest Einfach
- Caption = "ScreenCapturePRO Demo-Project (c) 1999 by soda. http://www.soda.de"
- Height = 855
- Left = 120
- TabIndex = 11
- Top = 1680
- Width = 1575
- End
- Begin VB.Line Line1
- X1 = 4200
- X2 = 4200
- Y1 = 0
- Y2 = 1440
- End
- Begin VB.Label Label4
- Alignment = 1 'Rechts
- Caption = "Height"
- Height = 255
- Left = 6720
- TabIndex = 6
- Top = 480
- Width = 975
- End
- Begin VB.Label Label3
- Alignment = 1 'Rechts
- Caption = "Width"
- Height = 255
- Left = 4800
- TabIndex = 9
- Top = 480
- Width = 855
- End
- Begin VB.Label Label2
- Alignment = 1 'Rechts
- Caption = "Y-Start (Pixel)"
- Height = 255
- Left = 6480
- TabIndex = 8
- Top = 120
- Width = 1215
- End
- Begin VB.Label Label1
- Alignment = 1 'Rechts
- Caption = "X-Start (Pixel)"
- Height = 255
- Left = 4560
- TabIndex = 7
- Top = 120
- Width = 1095
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Picture1.Picture = ScreenCapPRO1.FullScreenshot
- End Sub
- Private Sub Command3_Click()
- Picture1.Picture = ScreenCapPRO1.PartScreenshot(Text1.Text, Text2.Text, Text3.Text, Text4.Text)
- End Sub
- Private Sub Form_Resize()
- Picture1.Width = Form1.Width - Picture1.Left - 300
- Picture1.Height = Form1.Height - Picture1.Top - 580
- End Sub
-