how tf do i use it
any instructions would be appreciated
That's funny. There were instructions at one point in this things history. I'll see if I can recover them. This thing is pretty old.
Any luck with that? I need to do some window manipulation, found your StackOverflow post talking about this project almost a decade ago, heh. If it still works, it'd be nice to not have to reinvent the wheel :)
Find any documentation?
Hello, This is a crude library that predates stack overflow and github. Originally posted to an ancient coding forum on an account that is apparently too old to recover, I recovered a DLL, disassembled it, and popped it here.
Let me see what I can get up this weekend, but the basics are this:
- Every visual element in Windows has a reference pointer to it known as an HWND
- Top-level elements are windows, and their child elements are controls
- All are manipulatable via the Win32 api:
- https://learn.microsoft.com/en-us/windows/win32/api/
- All are manipulatable via the Win32 api:
- This library is a wrapper around some of the basic calls that helps find and manipulate windows and controls
- Static methods help you find a top-level HwndObject which just holds reference to an HWND
- Instance methods are just calling down to the API using the HWND references