信息发布软件,b2b软件,广告发布软件

 找回密码
 立即注册
搜索

用VB.net2008编写屏幕抓捕程序和软件的实例教程

查看数: 1768 | 评论数: 3 | 收藏 0
关灯 | 提示:支持键盘翻页<-左 右->
    组图打开中,请稍候......
发布时间: 2017-5-5 14:47

正文摘要:

Visual Studio2008在稳定性方面增强不少,笔者在使用时很少出现BUG的情况,而且Visual Studio2008在网络应用编程与图像处理方面也比原来版本增强了不少,开发效率有了提高。本篇文章将介绍如何利用Visual Studio2008 ...

回复

信息发布软件 发表于 2017-5-5 14:50:13
打开 Visual Studio 2008在文件 (File) 菜单上,单击新建项目 (New Project)。 在新建项目 (New Project) 对话框的模板 (Templates) 窗格中,单击 Windows 应用程序(Windows Application)。单击确定 (OK)

窗体应用技巧一,创建浮动窗体。

  创建新工程后,选择Form1窗体,添加Timer1和Timer2控件。为窗体选择一个好看的背景,当然你也可以使用系统默认的背景。
进入代码编辑器,输入代码:
Public Class Form1
    Inherits System.Windows.Forms.Form  
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim pos As Point = New Point(100, 50) '设置窗体初始位置
        Me.DesktopLocation = pos
        Timer1.Interval = 10 '设置Timer的值
        Timer1.Enabled = True
        Timer2.Interval = 10
        Timer2.Enabled = False
    End Sub


  进入Timer1_Tick事件
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Dim pos As Point = New Point(Me.DesktopLocation.X + 2, Me.DesktopLocation.Y + 1) '窗体左上方横坐标的timer1加
        If pos.X < 600 Or pos.Y < 400 Then
            Me.DesktopLocation = pos
        Else
            Timer1.Enabled = False
            Timer2.Enabled = True
        End If
    End Sub




  进入Timer2_Tick事件
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick

        Dim pos As Point = New Point(Me.DesktopLocation.X - 2, Me.DesktopLocation.Y - 1) '窗体的左上方横坐标随着timer2减一


  If pos.X > 100 Or pos.Y > 50 Then
            Me.DesktopLocation = pos
        Else
            Timer1.Enabled = True
            Timer2.Enabled = False
        End If
    End Sub



  创建完成后我们来运行程序测试一下,测试成功,程序在屏幕中不断地来回走动了。

  窗体应用技巧二,创建透明的窗体。

  创建新工程后,选择Form1窗体,添加Label1、TrackBar1、Timer1控件。为了突出效果为窗体选择一个好看的背景。

  相关的属性设置如下:
TrackBar1 Value属性:
TickFrequency: 属性:
Maximum属性: 100
10
100
Label1 Text属性: 选择窗体的透明度:
Timer1 Interval属性: 100

  进入代码编辑器,输入代码:

  首先进行声明:
Public Class Form1
    Inherits System.Windows.Forms.Form
    Dim tps As Integer
Dim bol As Boolean


  进入TrackBar1_Scroll事件
Private Sub TrackBar1_Scroll(ByVal sender As Object, ByVal e As System.EventArgs) Handles TrackBar1.Scroll
        Me.Opacity = TrackBar1.Value / 100
        Label1.Text = "窗体透明度:" & CStr(Me.Opacity * 100) & "%"
End Sub


  进入Timer1_Tick事件
Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        If bol = False Then
            tps = tps + 1
            Me.Opacity = tps / 100
            If Me.Opacity >= 1 Then
                Timer1.Enabled = False
                bol = True
            End If
        Else
            tps = tps - 1
Me.Opacity = tps / 100
            If Me.Opacity <= 0 Then
                Timer1.Enabled = False
                bol = False
            End If
        End If
    End Sub


  进入Form1_Load事件
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Enabled = True
End Sub

  进入Form1_Closing事件
Private Sub Form1_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
        Timer1.Enabled = True
        If MsgBox("你确实要关闭窗体吗?", MsgBoxStyle.OkCancel) = MsgBoxResult.Ok Then
            e.Cancel = False
        Else
            Timer1.Enabled = False
            Me.Opacity = 1
            tps = 100
            bol = True
            e.Cancel = True
        End If
End Sub

  创建完成后我们来运行程序测试一下,测试成功,程序窗体是不是变得透明了,通过调节滚动条我们甚至可以使得窗体消失达到完全隐形的目的。这是不是很神奇呢?


qiaozong01 发表于 2017-5-5 14:48:56
及时做出评价,系统默认好评!
信息发布软件 发表于 2017-5-5 14:48:56
vb.net2008 启动画面专用类

Namespace My
    ''' <summary>
    ''' MyApplication
    ''' </summary>
    ''' <remarks>MyApplicationクラス</remarks>
    ''' <history>
    '''  [] 2011/11/01 Created
    ''' </history>
    Partial Friend Class MyApplication

        Protected Overrides Sub OnCreateMainForm()

            Try
                'Configファイルからシステムの情報を保存する
                Configuration.PSb_SaveSystemInfo()

                '起動画面を選択する
                If Utility.PFn_NullToString(Configuration.PSb_GetTestWindowFlg()).Equals("1") Then
                    Me.MainForm = Global.GRP.TestForm
                Else
                    Me.MainForm = Global.GRP.メインメニュー_Flash
                End If

            Catch ex As Exception
                'LOGファイルを出力する
                Global.GRP.Utility.PSb_WriteLOGFile(3, ex.Message)

                Me.MainForm = Global.GRP.メインメニュー_Gif
            End Try
        End Sub
    End Class
End Namespace


QQ|( 京ICP备09078825号 )

本网站信息发布软件,是可以发布论坛,发送信息到各大博客,各大b2b软件自动发布,好不夸张的说:只要手工能发在电脑打开IE能发的网站,用这个宣传软件就可以仿制动作,进行推送发到您想发送的B2B网站或是信息发布平台上,不管是后台,还是前台,都可以进行最方便的广告发布,这个广告发布软件,可以按月购买,还可以试用软件,对网站的验证码也可以完全自动对信息发布,让客户自动找上门,使企业轻松实现b2b发布,这个信息发布软件,均是本站原创正版开发,拥有正版的血统,想要新功能,欢迎提意见给我,一好的分类信息群发软件在手,舍我其谁。QQ896757558

GMT+8, 2024-11-1 13:37 , Processed in 0.143522 second(s), 48 queries .

宣传软件--信息发布软件--b2b软件广告发布软件

快速回复 返回顶部 返回列表