我已經解決了!!!!
Public Const SB_VERT = 1
Public Const SB_HORZ = 0
Public Declare Function ShowScrollBar Lib "user32" _
(ByVal hWnd As Long, ByVal wBar As Long, ByVal bShow As Long) As LongPublic Sub ShowScrollBars(theTextbox As Object)
    Dim hWnd As Long
    
    hWnd = theTextbox.hWnd
    ShowScrollBar hWnd, SB_VERT, 1
    ShowScrollBar hWnd, SB_HORZ, 1
End Sub