Using DDT, I create a rather good looking button with this:-
CONTROL ADD BUTTON, hDlg, ButtonID," " + CHR$(ButtonID), bPos(ButtonID).x, bPos(ButtonID).y, w, h, _
%SS_NOTIFY OR %SS_CENTER OR %SS_SUNKEN, %BDR_RAISED
I am actually creating an array of buttons from "A" to "Z".
As I say, the buttons look good and I seem not to be able to create
the same style in SDK code. The %SS_ and %BDR_ styles are normally
for STATIC windows.
Does DDT use some combination when creating buttons?
Regards,
David
------------------
CONTROL ADD BUTTON, hDlg, ButtonID," " + CHR$(ButtonID), bPos(ButtonID).x, bPos(ButtonID).y, w, h, _
%SS_NOTIFY OR %SS_CENTER OR %SS_SUNKEN, %BDR_RAISED
I am actually creating an array of buttons from "A" to "Z".
As I say, the buttons look good and I seem not to be able to create
the same style in SDK code. The %SS_ and %BDR_ styles are normally
for STATIC windows.
Does DDT use some combination when creating buttons?
Regards,
David
------------------
Comment