中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > 编程语言 > Delphi > 临时文章
stretchtextbox
作者:wfhlxl 时间:2002-09-29 11:42 出处:互联网 责编:chinaitpower
              摘要:stretchtextbox
VERSION 5.00
Begin VB.Form Form1
   Caption         =   "Form1"
   ClientHeight    =   3195
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   3195
   ScaleWidth      =   4680
   StartUpPosition =   3  '窗口缺省
   Begin VB.TextBox Text2
      Height          =   495
      Left            =   1920
      TabIndex        =   1
      Text            =   "Text2"
      Top             =   600
      Width           =   1455
   End
   Begin VB.TextBox Text1
      Height          =   495
      Left            =   120
      TabIndex        =   0
      Text            =   "Text1"
      Top             =   600
      Width           =   1695
   End
   Begin VB.Label Label1
      BackColor       =   &H00FF8080&
      Caption         =   "Label1"
      Height          =   495
      Left            =   1800
      TabIndex        =   2
      Top             =   600
      Width           =   100
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim oldx As Integer
Sub setlabelpos(l As Integer, r As Integer)
If Label1.Left < Me.Text1.Left + 1500 Then
Label1.Left = Me.Text1.Left + l
Else
Label1.Left = Me.Text2.Left + Me.Text2.Width - r
End If
End Sub
Private Sub Label1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
oldx = X
setlabelpos 200, 300
End Sub
Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim i
If Button = 1 Then
Label1.Move X - oldx + Label1.Left
If (Label1.Left >= Me.Text1.Left + 200 And Label1.Left <= Me.Text2.Left + Me.Text2.Width - 300) Then
i = Me.Text1.Width
Me.Text1.Width = Label1.Left - Me.Text1.Left
Me.Text2.Width = Me.Text2.Width + (i - Me.Text1.Width)
Me.Text2.Left = Label1.Left + 100
Else
setlabelpos 189, 280
End If
End If
End Sub
Private Sub Label1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.Left = Me.Text2.Left - 100
End Sub

关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有