What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

C#/C++ guru, need your help

axazol

New Member
Joined
Jun 27, 2010
Messages
308
Reaction score
8
Last few days i'm trying to create a hook on C# to override MINMAXINFO.ptMinTrackSize of D3 windows. As you can see - without any workable result. Because there is no native hooks mechanism in C#, as i know.
On other hand i'm also trying to find out a way to bind D3 window as child to my own form. But can't make it relative to client area. Idea to run D3 as maximized into my form and then resize my form.

Anyway.. if someone could help me with such problem or lead a right direction for both ideas - you are welcome.
 
Last edited:
SetWindowLong probably will not do it as there is no WM_SETMINMAXINFO
But if i redirect WndProc it culd be work by override WndProc itself. Need moar testings... =)
Anyway i need to place a some hook to handle all possible WM_GETMINMAXINFO send/post to make it worth. Otherwise all new resizing just reset it to default.
 
Last edited:
Back
Top