VB工程--实例93--图形窗体

前端之家收集整理的这篇文章主要介绍了VB工程--实例93--图形窗体前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Option Explicit

Private Sub Form_Click()
End
End Sub

Private Sub Form_Load()
Dim h,d As Long
Dim scrw,scrh As Long
scrw = Me.Width / Screen.TwipsPerPixelX
scrh = Me.Height / Screen.TwipsPerPixelY
h = CreateEllipticRgn(0,scrw,scrh)
d = SetWindowRgn(Me.hWnd,h,True)
End Sub

Option Explicit

Public Declare Function CreateEllipticRgn Lib "gdi32" (ByVal X1 As Long,ByVal Y1 As Long,ByVal X2 As Long,ByVal Y2 As Long) As Long
'CreateEllipticRgn
http://baike.baidu.com/view/2034860.htm
Public Declare Function SetWindowRgn Lib "user32" (ByVal hWnd As Long,ByVal hRgn As Long,ByVal bRedraw As Boolean) As Long
'SetWindowRgn
http://baike.baidu.com/view/1559429.htm

原文链接:https://www.f2er.com/vb/260330.html

猜你在找的VB相关文章