This is just a test piece using the masm32 library module "BmpButton" to test if it would handle RGB/Alpha bitmaps. The test piece requires a manifest file to display the images correctly but on my XP dev box it works fine. Note that with the 64 pixel button size the RGB/A images are 16k each so each button has 32k of image data. The Stopwatch button uses a different image from up to down to show why its useful to have 2 image buttons, even at the expense of a much larger resource section. If you use Jeremy Collake's PECompact it drops the file size from 203k to about 32k which is OK by todays Vista/Win7 standards.
This demo will work on Win2000 but the images do not have RGB/A support and will have black backgrounds.
i get nothing
it hangs, i guess, there is no system-menu close box
i am guessing that means it never gets past create
Unusual, from memory you are running XP SP2 on a PIV, does the window show at all ? It should show 6 buttons stacked vertically.
prescot w/htt - 1 gb ram
XP MCE 2005 SP3
i know - i need to buy some ram :P
(http://www.masm32.com/board/index.php?action=dlattach;topic=17195.0;id=9564)
the attachment is the above PNG image renamed to ZIP
i changed WS_OVERLAPPED to WS_OVERLAPPEDWINDOW
now i can close it without the task manager
i commented out the BmpButton calls
everything seems to be ok with the WndProc and message loop
the BmpButton calls don't hang - they just don't make buttons
the ones in \masm32\examples work ok
Hi,
Works as described on my Win 2000 machine. Large icons
that report numbers when clicked or exit. Works(?) as Dave
describes on an XP machine, blank.
Regards,
Steve N.
OK, on my XP SP3 box it looks like this.
(http://www.masm32.com/private/image.jpg)
If you have the software to open them, try opening any of the paired bitmaps that make up the buttons. The images are all RGB/Alpha channel bitmaps and on this dev box I run the 32 bit colour depth for normal display.
this is what it looks like on Win7 64 bit with its cheesy Aero interface.
(http://www.masm32.com/private/butnapp.jpg)
have done a couple of minor changes to see what the problem may be on Daves box. I added a titlebar exit button and placed a messagebox after each button create function call to see if the button is actually being created rather than if it does or does not display correctly. It should show 6 message boxes with 6 handles before the main window shows.
It would be useful to know what screen colour depth is being used as these images are all RGB/Alpha and I don't have a machine set up with low resolution display. All of my boxes have half gig video cards that run 32 bit colour.
same thing, Hutch
i have made a test program with the BmpButton and ButtonProc functions internal
let me see what the return values are.....
Dave,
The handles displayed in the 6 message boxes will tell you if the control was created or not.
Hutch,
XP SP2: Blank box, BmpButton errors with INVALID_WINDOW_HANDLE.
ok - you'll be happy to know that there is no problem with the BmpButton function :bg
here is the mod i made to the main program...
start:
push ICC_WIN95_CLASSES
push sizeof INITCOMMONCONTROLSEX
INVOKE InitCommonControlsEx,esp
pop ecx
pop edx
it works as requested, now :U
what we need is a little routine to make the second image from the first...
INVOKE MakeBtnPair,nIdBitmap,nIdNew,nXoffset,nYoffset
INVOKE BmpButton,hWnd,50,50,edx,eax,900
that would cut the size in half :U
by the way, InitCommonControls works also
it does not have to be InitCommonControlsEx
Thanks,
So it is an InitCommonControls() problem, I have seen this before and Erol helped out with his Turkish version. Strange that it does not occur on my US English XP SP3 or US version of Win7 64.
I don't get the idea of copying the up image to the down image, all of the ones used shifted 1 pixel down and across.
well - you include both up and down images in the resource
you could make the assumption that the pixel at 0,0 is the background colour
let the caller specify the offset distance (nXoffset, nYoffset)
then, create the second image from the first
that way, only one image per button would be needed in the resource
in this case, that would cut about 96 kb off the exe file size
you could get fancy and offer options like invert colours, etc
you could offer other effects, too, like R, G, B shifts and XOR's
i suppose if you used 256-colour GIF or PNG, or better yet, ICO images, you wouldn't have to go through all that :P
the files are much smaller, offer transparency, and for an icon-sized image, 256 is plenty
On my XP sp3 ,Just a window.No Button
Same as ToutEnMasm. One blank window with no button. OS = Win XP SP3
try this one guys
i took Hutch's "imgbtn2" file...
added InitCommonControls
removed a few start-up message boxes that were used in testing
Ok with imgbtn3.zip
Hi Dave,
Thanks, it works fine.
i suspect it has something to do with which files are present in the WinSxS folder
there is a manifest, so it expects InitCommonControls with some SxS combinations and not with others
lately, i have been including InitCommonControls as a rule :P
if i don't need it now, likely that i will later
Quote
it expects InitCommonControls with some SxS combinations and not with others
lately, i have been including InitCommonControls as a rule
It's a rule when use is made of the ressource with
Quote
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
This init works also
Quote
mov InitCtrls.dwSize,sizeof INITCOMMONCONTROLSEX
mov InitCtrls.dwICC,0 ;remplacer 0 par un identifiant
invoke InitCommonControlsEx,addr InitCtrls ;cumulatif
invoke InitCommonControls is slow.... :lol
Should be dd InitCommonControls
start:
; invoke InitCommonControls
mov hInstance, rv(GetModuleHandle, NULL)
mov CommandLine, rv(GetCommandLine)
mov hIcon, rv(LoadIcon,hInstance,500)
mov hCursor, rv(LoadCursor,NULL,IDC_ARROW)
mov sWid, rv(GetSystemMetrics,SM_CXSCREEN)
mov sHgt, rv(GetSystemMetrics,SM_CYSCREEN)
call Main
invoke ExitProcess,eax
dd InitCommonControls
It is pretty much the case that if you want a single image custom control, you would write it differently and it would peform something like a BS_BITMAP button but you cannot do the same things with a single bitmap control. The purpose of the test was to test RGB/Alpha bitmaps which accurately control transparency where the 8, 16 and 24 bit colour images cannot and generally have lousy edges with a notchy appearance.
RE: The use of the InitCommonControls() to initialise the common control library, I would like to see better documentation for the later OS versions and have some predictable method of knowing what works on what OS version. I started using the Ex version because it can initialise a larger number of common controls but from experience it behaves differently on different language Windows versions. Strangely enough the original example worked correctly on both my XP SP3 box and the Win7 64 bit box.
Hutch,
for the sake of comparison, here is what i have in WinSxS...
6.0.0.0
6.0.2600.2180
6.0.2600.5512
6.0.2600.5705
i am probably missing one that you have :P
lingo
does it really matter how many clock cylces InitCommonControls takes ?
the programs i write that call it come up plenty fast
it's not like i stick in a loop or anything :lol
Dave,
My WinSx has a mountain of stuff in it but nothing like you have mentioned, there are two entries for common controls that have 2 different versions of the DLL in them, could you elaborate some ?
Test this one,I have rewite it and he use the InitCommonControlsEx to initialise
Works OK here but no source.
works here, Yves
Hutch,
those are the CommonControl versions that i have
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.0.0_x-ww_1382d70a
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83
x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5705_x-ww_36cfed49
Here is the source code
Added code to test version of dll
i am learning that it doesn't always help to see the source :lol
Quote
i am learning that it doesn't always help to see the source
The source code of the windows has been tested here a number of time.That is what I call learn something.
It is good,I keep it and I re-use it.
Many details (styles,extended styles,functions,proc ..) can change if you create your code at each time you need it.
It is what is missing in the masm32 package , some good code to made a good window at the fist time.
What i call a good code,is a code modify and tested further times.
The question is how learn something when all is changed at each time ???
i wasn't refering to the code so much, Yves
i was refereing to the use of French for function and variable names :bg
i can only imagine how hard it must have been for you to learn the API
it's ok if full words are used, like "CreateWindow" - at least you can split that one up and use google translate :P
but, i often use shortened words in function and variable names, like "MkBgImg" or something :'(
Hutch has a tool that he has posted under the names "CodeGen" and "ProStart"
as you mentioned, it would be cool if it used external text files to build from
that way, you could modify them as time goes on and make improvements or get different window types, styles, and so on
i guess you really don't need a program for that - just start a collection
when i first started learning GUI programming, i used those programs, along side Iczelion's tutorials
they did help me learn a lot :U
Templating systems that are configurable are technically trivial to make but are a disaster for people who do not understand the code in detail. The two code generators in MASM32 are binary files to ensure that the written code cannot be messed up. The later scripting engine in QE is easily capable of producing complete working templates including the binary files like icons and toolbar bitmaps but I don't think many have bothered as it involves learning how to use the scripting engine language.
hmmmm - that sounds interesting
i may have to look into it :U
I've been messing around with that, but editing the template result in a big way.
Maybe it might be an idea to further advance the template with regard to the visual I/F...
- including the resource editor, icon/bmp editor for toolbar and app icons..
Just an idea
:8)
Quote
The later scripting engine in QE is easily capable of producing complete working templates including the binary files like icons and toolbar bitmaps but I don't think many have bothered as it involves learning how to use the scripting engine language.
The more simple way is to copy the files from one folder to another.NO SCRIPT and the files in the folder can be easily modify if needed.
Yves,
The script is much faster, names everything correctly and dumps it where you want.
Quote
The script is much faster, names everything correctly and dumps it where you want
In this case,a tool to made a script with the files project in a directory could be useful.
I think it isn't too much hard to do and useful.