Originally posted by FLasH3r
how about checkbox and option box?
VB Code:
  1. Private Declare Function SetWindowText Lib "user32" Alias "SetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String) As Long
  2. 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
  3. Private Sub Command1_Click()
  4. SetWindowText FindWindowEx(Me.hwnd, 0, "ThunderCheckBox", vbNullString), "Hello"
  5. End Sub