how can i set the titlebar caption to dialog1 in this prject without it messing with the bmp and adding a bluebar uptop?
[attachment deleted by admin]
Your choices are either use the standard one or alternatively write the code to draw your own.
I mean just having a caption on the taskbar and not having a blue bar going across the top.
Same comment, if you don't want to use a normal title bar, you must draw the text yourself. API functions like SetWindowText() are designed to write to the title bar where a GDI based API like DrawText() or TextOut() can be drawn anywhere.
tnx that did the trick.