Discuz!NT
欢迎 游客 , 注册 | 登录 | 会员 | 界面 | 简洁版本 | 在线 | 帮助
商都网教育宝典宝库

发表新主题 回复该主题
本主题被查看426次, 共1个帖子, 1页, 当前为第1页     选择页数: 1      跳转到第   上一主题   下一主题
标题: Access数据库:让标题栏文字置中
-[尕硴]
超级版主
UID: 71
来自:
精华: 130
积分: 14003
帖子: 12909
注册: 2007-10-22 17:59:00
状态: 离线
威望: 444.00
金钱: 3355.00 元
只看楼主 2008-03-25 10:56
Access数据库:让标题栏文字置中
Private Sub Form_Load()
  CenterC Me
  oldsize = Me.Width
  End Sub

  Private Sub Form_Resize()
  If Me.Width = oldsize Then
  Exit Sub
  Else
  CenterC Me
  oldsize = Me.Width
  End If
  End Sub

  以下放入模块,以后用时调用即可.

  Public Sub CenterC(frm As Form)
  Dim SpcF As Integer
  Dim clen As Integer
  Dim oldc As String
  Dim I As Integer
  
  oldc = frm.Caption
  Do While Left(oldc, 1) = Space(1)
  DoEvents
  oldc = Right(oldc, Len(oldc) - 1)
  Loop
  
  Do While Right(oldc, 1) = Space(1)
  DoEvents
  oldc = Left(oldc, Len(oldc) - 1)
  Loop
  
  clen = Len(oldc)
  
  If InStr(oldc, "!") <> 0 Then
  If InStr(oldc, "") <> 0 Then
  clen = clen * 1.5
  Else
  clen = clen * 1.4
  End If
  Else
  If InStr(oldc, "") <> 0 Then
  clen = clen * 1.4
  Else
  clen = clen * 1.3
  End If
  End If
  
  SpcF = frm.Width / 61.2244
  SpcF = SpcF - clen
  
  If SpcF > 1 Then
  DoEvents
  frm.Caption = Space(Int(SpcF / 2)) + oldc
  Else
  frm.Caption = oldc
  End If
  End Sub
#1  
发表新主题 回复该主题
本主题被查看426次, 共1个帖子, 1页, 当前为第1页     选择页数: 1      跳转到第







现在的时间是 2008-07-25 12:16:48

版权所有 商都网教育宝典
         Powered by Discuz!NT 1.0.6666    Copyright © 2001-2008 Comsenz Inc.
Processed in 0.064 seconds