标题:刚当上斑竹,先发一贴:savepicture的应用,图也很漂亮呀!
取消只看楼主
pigpigpig
Rank: 1
等 级:新手上路
帖 子:51
专家分:0
注 册:2004-4-18
 问题点数:0 回复次数:0 
刚当上斑竹,先发一贴:savepicture的应用,图也很漂亮呀!
Private Sub Form_Click()
   ' 声明变量。
   Dim CX, CY, Limit, Radius   As Integer, Msg As String
   ScaleMode = vbPixels   ' 设置比例模型为像素。
   AutoRedraw = True ' 打开 AutoRedraw。
   Width = Height   ' 改变宽度以便和高度匹配。
   CX = ScaleWidth / 2   ' 设置 X 位置。
   CY = ScaleHeight / 2   ' 设置 Y 位置。
   Limit = CX   ' 圆的尺寸限制。
   For Radius = 0 To Limit   ' 设置半径。
      Circle (CX, CY), Radius, RGB(Rnd * 255, Rnd * 255, Rnd * 255)
      DoEvents   ' 转移到其它操作。
   Next Radius
   Msg = "Choose OK to save the graphics from this form "
   Msg = Msg & "to a bitmap file."
   MsgBox Msg
   SavePicture Image, "d:\TEST.BMP"   ' 将图片保存到文件。
End Sub
搜索更多相关主题的帖子: savepicture Radius Rnd Limit 漂亮 
2004-04-18 21:12



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-464-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.374368 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved