VB text透明代码

原创 小姚  2022-12-07 10:52  阅读 1,034 次

VB text透明代码-小姚工作室

Text优先显示最后一行代码

Text1.SelStart = Len(Text1.Text)

VB text透明代码

Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long) As Long
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
Private Declare Function SetLayeredWindowAttributes Lib "user32 " (ByVal hwnd As Long, ByVal crKey As Long, ByVal bAlpha As Byte, ByVal dwFlags As Long) As Long
Private Sub Form_Load()
Text1.BackColor = &HFF
SetWindowLong hwnd, (-20), GetWindowLong(hwnd, (-20)) Or &H80000
SetLayeredWindowAttributes hwnd, &HFF, 0, 1
End Sub
本文地址:https://www.xiaoyaogzs.com/3996.html
关注我们:请关注一下我们的微信公众号:扫描二维码小姚工作室的公众号,公众号:小姚户外
版权声明:本文为原创文章,版权归 小姚 所有,欢迎分享本文,转载请保留出处!

发表评论


表情

  1. 250075083 edm
    250075083 edm @回复

    支持这里~~~~~~~~