Originally posted by FLasH3r
how about checkbox and option box?VB Code:
Private Declare Function SetWindowText Lib "user32" Alias "SetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String) As Long Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long Private Sub Command1_Click() SetWindowText FindWindowEx(Me.hwnd, 0, "ThunderCheckBox", vbNullString), "Hello" End Sub




Reply With Quote