The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: Faiseur on June 11, 2005, 02:11:51 PM

Title: DrawProgress custctl
Post by: Faiseur on June 11, 2005, 02:11:51 PM
Hello KetilO,

I work to implement the DrawProgress library in custom control for RadAsm. It is well. If you put the DLL in customcontrol you have the choice of modelcolor and modeltext in properties...

I have only ONE problem :-)  If you look at example 4, DrawProgress show the same position of counter in the 4 cases but is not what I wish.

With parameter DP_INIT the user can send a position for each control.  I make this:


invoke SendMessage,hDP1,DP_INIT,0,MAXI
invoke SendMessage,hDP2,DP_INIT,30,MAXI
invoke SendMessage,hDP3,DP_INIT,60,MAXI
invoke SendMessage,hDP4,DP_INIT,90,MAXI <--- next value, DrawProgress redraw hDP1,hDP2,hDP3,hDP4 with counter 90



But DrawProgress does not make the distinction of hDP1,hDP2,hDP3,hDP4 and redraw all to 90.  If I understand well, I must add a filter in  WM_PAINT.Could you help me to do that?  I do not understand yet how to make.

Sorry for my bad english,

Faiseur




Title: Re: DrawProgress custctl
Post by: KetilO on June 12, 2005, 08:45:52 PM
Hi

Nice control.

The problem is that they all share the same data:

count dd 0
maxi dd 100
height dd 150
hFont dd 0
modelcolo dd 0
modeltext dd 0
state dd FALSE


You need to make that data private to each control.

Here is the way I prefer to do it.

1. mov wc.cbWndExtra,4 ;Alocate extra memory to hold a pointer to private data
2. On WM_CREATE allocate the neede memory (HeapAlloc)
3. On WM_DESTROY free the allocated memory.

KetilO
Title: Re: DrawProgress custctl
Post by: KetilO on June 12, 2005, 09:56:46 PM
Here is the modified control.

There is also a division by zero bug. I did not correct it.

KetilO

[attachment deleted by admin]
Title: Re: DrawProgress custctl
Post by: Faiseur on June 12, 2005, 11:00:12 PM
Thank you very much KetilO !

I have corrected the bug.

With this work I understood several significant things in programming, and also with your complement. It is exactly what I had need to understand.  Your custom control is really a tutorial for me :-)  I will post soon the final result.
Title: Re: DrawProgress custctl
Post by: Faiseur on June 13, 2005, 04:14:06 PM
Hello KetilO,


this version is for me good (Dll and static version with 7 examples and sources).

If you agree, it is a new custom control for RadAsm.

:-)

Faiseur

Note: See readme for special note. The base work (ProgressBar style) is from the author "hinte". I did not succeed in finding the author, but this source was free on the Net. I added several options, modifications, and converted in custom control for RadAsmin in DLL and static version + examples.






Title: Re: DrawProgress custctl
Post by: KetilO on June 13, 2005, 09:10:40 PM
Hi

Very nice.

You should check for memory and gdi leaks with memproof


http://www.automatedqa.com/downloads/memproof/
(http://www.automatedqa.com/downloads/memproof/%3Cbr%20/%3E)

KetilO
Title: Re: DrawProgress custctl
Post by: Faiseur on June 14, 2005, 12:49:46 AM
Hello KetilO,

Thanks. I discover memproof and I understand memory and gdi leaks better...

I corrected the problems with CreateThread and handles objects in examples, and static lib.  Memproof does not say anything any more to me, except when I use BitmapFromResource (GetDC).

Here the corrected version. 

Faiseur

Title: Re: DrawProgress custctl
Post by: KetilO on June 14, 2005, 10:37:11 AM
Hi Faiseur

It all works well now, except for the bug in BitMapFromPicture (does not release the dc).

KetilO
Title: Re: DrawProgress custctl
Post by: Faiseur on June 14, 2005, 04:07:20 PM
Hello KetilO,

the bug GetDC appears when I use BitmapFromResource and I do not use GetDC.  I tested the demo "LoadPic" found on your site (image example) who uses this library and Memproof detects the same problem (does not release the dc).

It is a problem with the "BitmapFromPicture" library (BitmapFromressource calls it).

I added this line at the end of  "BitmapFromPicture.asm" in masm32lib:

"invoke ReleaseDC,NULL,compDC"

...rebuilded masm32lib and function fine.


Faiseur