Access开发培训
网站公告
·Access专家课堂QQ群号:151711184    ·Access快速开发平台下载地址及教程    ·欢迎加入Access专家课堂微信群!    ·如何快速搜索本站文章|示例|资料    
您的位置: 首页 > 技术文章 > Access数据库-模块/函数/VBA

窗体加载事件的一种方法

时 间:2007-10-15 12:57:27
作 者:十个火   ID:70  城市:闵行
摘 要:窗体加载事件的一种方法
正 文:

Private Sub Form_Load() '
'窗体初始化
Dim ctl As Control
   DoCmd.RunCommand acCmdAppMaximize
   DoCmd.Maximize
   NoRestore
tdate.Caption = Format(Now(), "dddddd")
tweek.Caption = WeekdayName(Weekday(Date))
For Each ctl In Me.Controls
   If TypeOf ctl Is Image Then
      ctl.OnMouseMove = "=MouseMove([image" + Right(ctl.Name, 2) + "])"
      ctl.OnMouseDown = "=mousedown([image" + Right(ctl.Name, 2) + "])"
      ctl.OnMouseUp = "=mouseup([image" + Right(ctl.Name, 2) + "])"
      If Val(Right(ctl.Name, 2)) >= 11 And Val(Right(ctl.Name, 2)) <= 19 Then
        ctl.Visible = True
      End If
   End If
Next ctl

For Each ctl In Me.Controls
   If TypeOf ctl Is Label Then
      If Val(Right(ctl.Name, 2)) >= 11 And Val(Right(ctl.Name, 2)) <= 19 Then
        ctl.Visible = True
      End If
   End If
Next ctl

Label1.SpecialEffect = 2
Label1.BackColor = 16765136
Label1.FontBold = 1
'设定窗体下面的时钟每秒刷新一次,也就是每秒运行一次Form_Timer里的语句
Me.TimerInterval = 1000

End Sub



Access软件网QQ交流群 (群号:483923997)       Access源码网店

常见问答:

技术分类:

相关资源:

专栏作家

关于我们 | 服务条款 | 在线投稿 | 友情链接 | 网站统计 | 网站帮助