- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
frmFloatSearch.frm
资源名称:IE_VB.rar [点击查看]
上传用户:davilee3
上传日期:2015-04-22
资源大小:986k
文件大小:2k
源码类别:
浏览器
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form frmFloatSearch
- BorderStyle = 5 'Sizable ToolWindow
- ClientHeight = 2325
- ClientLeft = 60
- ClientTop = 60
- ClientWidth = 1575
- ControlBox = 0 'False
- BeginProperty Font
- Name = "宋体"
- Size = 9
- Charset = 134
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2325
- ScaleWidth = 1575
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 'Windows Default
- Begin VB.ListBox List1
- Height = 2220
- IntegralHeight = 0 'False
- Left = 120
- Style = 1 'Checkbox
- TabIndex = 0
- Top = 60
- Width = 2475
- End
- End
- Attribute VB_Name = "frmFloatSearch"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Deactivate()
- Unload Me
- End Sub
- Private Sub Form_Load()
- SetPos
- End Sub
- Private Sub Form_LostFocus()
- Unload Me
- End Sub
- Private Sub Form_Resize()
- List1.Move 0, 0, Me.ScaleWidth, Me.ScaleHeight
- End Sub
- Public Sub SetPos()
- Dim tpt As POINTAPI
- Call GetCursorPos(tpt)
- 'tPt.x = tPt.x
- 'tPt.y = tPt.y - 10
- If tpt.x * 15 + Me.Width > Screen.Width Then
- tpt.x = (Screen.Width - Me.Width) / 15
- End If
- If tpt.x < 0 Then tpt.x = 0
- If tpt.y * 15 + Me.Height > Screen.Height Then
- tpt.y = (Screen.Height - Me.Height) / 15
- End If
- If tpt.y < 0 Then tpt.y = 0
- Me.Move tpt.x * 15, tpt.y * 15 + 300
- End Sub