reckoner wrote:
> by the way, quick question, do you know of a way to "get" the extended 
> style bits? I haven't been able to find anything on MSDN. In other 
> words, if I do as you suggest below for a few windows, how can I query 
> those windows again to see if those bits that I previously set using 
> SetWindowLong() are indeed set?

I think you're going to feel foolish when you hear the answer.  The fact
that SetWindowLong exists should suggest rather strongly that there must
be a GetWindowLong.  And, in fact, there is.

  win32gui.GetWindowLong(handle, win32con.GWL_EXSTYLE)

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to