Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

How do I pinvoke to GetWindowLongPtr and SetWindowLongPtr on 32-bit platforms?

I want to P/Invoke to GetWindowLongPtr and SetWindowLongPtr, and I'm seeing conflicting information about them. Some sources say that, on 32-bit platforms, GetWindowLongPtr is just a preprocessor ...
2
votes
3answers
2k views

GetWindowLong vs GetWindowLongPtr in C#

I was using GetWindowLong like this: [DllImport("user32.dll")] private static extern IntPtr GetWindowLong(IntPtr hWnd, int nIndex); But according to the MSDN docs I am supposed to be using ...
0
votes
0answers
8 views

where defined windows constant in JNA package?

i try to use wstyle (window style) for take some information about a window but i cann't find value of some Control Style such as BS_BUTTON on MSDN or jna packages . where is reference of these ...
0
votes
2answers
201 views

Unknown extended window style values from GetWindowLong and GetWindowInfo

I am calling querying the extended window styles of a window using the GetWindowLog property and it is returning values in many cases that are not documented in msdn. Particularly 0x00000800L and ...
0
votes
2answers
3k views

Removing Window border?

I have a window with a solid border around it. How can I remove the border(all of the non-client area) by using SetWindowLong and GetWindowLong?
-3
votes
1answer
66 views

what unique style of each GDI? [closed]

i take window style of an handle and try to find type of this but some collection of styles have a same value such as (combo style) CBS_DROPDOWN | CBS_DROPDOWNLIST | CBS_SIMPLE | WS_VISIBLE | ...