Showing related tags and posts accross the entire site.
-
Nice! I got it now... I figured that the size and location was being replaced by the values gathered from the GetWindowRect! So, since now that we are literally defining the coords and dimensions, then I could omit the GetWindowRect function right? :D Here's my code now; DlgProc proc uses ebx esi...
-
I've read your excellent article about this (http://devpinoy.org/blogs/cvega/archive/2008/08/22/how-to-oop-in-assembly-language-part-1.aspx). Will be trying it out when I have freetime! Thanks for your time! :D
-
Hmmm... yeah, I did this already, but the problem is that whether it is ticked or not, it always returns BST_UNCHECKED... here's the current code on that part... ... mChecked db "Checked!",0 mCleared db "Cleared!",0 ... .if wParam==IDC_BUTTON_MAIN_OK .if eax==BST_CHECKED invoke...
-
Thanks for the quick reply! local rect: RECT invoke GetWindowRect, hWin, addr rect ; Gets the current teh screen coordinates of the dialog? invoke SetWindowPos, hWin, HWND_TOPMOST, rect.left, rect.top, rect.right, rect.bottom, SWP_SHOWWINDOW ; Sets the coordinates gathered from the line above, makes...
-
Hi, I tried to send the BM_CHECK message whenever a checkbox is checked or unchecked. Is the method I'm doing correct? Anyways I searched MSDN for the SendMessage function and... lResult = SendMessage( // returns LRESULT in lResult (HWND) hWndControl, // handle to destination control (UINT) BM_GETCHECK...
-
HLA has it buit-in! Well, anyways, I don't know how to write in HLA anyway.
-
Hi all! Is there an API or something that would make a DIALOGBOX stay always on top? I have tried searching but I have found none... (Maybe because of poor searching skils). Thanks in advance!
-
Marami nakapost dun sa asmcommunity at masmforum -- pero masyadong malalim mga topics para sa akin. Wala akong mahanap na talagang nagsstart sa basic. :(
-
Hi all, Recently, I've seen a lot of stuff about doing OOP in assembly language. Most of the stuff I've seen almost fried my brain. So... does anybody have some simple (by simple, I mean very simple) examples to get n00bs like me started? What are the basic requirements? What are its advantages...
-
Yes, it's available here . :D