Click here to Skip to main content
15,915,600 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralVB dll Pin
John-theKing6-Apr-03 22:03
John-theKing6-Apr-03 22:03 
GeneralRe: VB dll Pin
Duncan Edwards Jones6-Apr-03 22:07
professionalDuncan Edwards Jones6-Apr-03 22:07 
GeneralRe: VB dll Pin
anju6-Apr-03 22:34
anju6-Apr-03 22:34 
Generaloffice 2003-style toolbar Pin
schaereran@gmx.net6-Apr-03 21:30
schaereran@gmx.net6-Apr-03 21:30 
GeneralRe: office 2003-style toolbar Pin
puzzolino6-Apr-03 21:49
puzzolino6-Apr-03 21:49 
GeneralRe: office 2003-style toolbar Pin
schaereran@gmx.net6-Apr-03 22:13
schaereran@gmx.net6-Apr-03 22:13 
GeneralRe: office 2003-style toolbar Pin
puzzolino6-Apr-03 22:28
puzzolino6-Apr-03 22:28 
GeneralRe: office 2003-style toolbar Pin
schaereran@gmx.net6-Apr-03 23:00
schaereran@gmx.net6-Apr-03 23:00 
hy, thanx for the tip. now i found a program called menubarxp. there ist a function which draws the gripper:

void CXPToolBar::CreateGripperBrush ()
{
ASSERT (m_brGripperHorz.GetSafeHandle () == NULL);
ASSERT (m_brGripperVert.GetSafeHandle () == NULL);

WORD horzHatchBits [8] = { 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0x00 };

CBitmap bmpGripperHorz;
bmpGripperHorz.CreateBitmap (8, 8, 1, 1, horzHatchBits);

m_brGripperHorz.CreatePatternBrush (&bmpGripperHorz);

WORD vertHatchBits[8] = { 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA };

CBitmap bmpGripperVert;
bmpGripperVert.CreateBitmap (8, 8, 1, 1, vertHatchBits);

m_brGripperVert.CreatePatternBrush (&bmpGripperVert);
}

now, when i change the horzHatchBits , i get a different looking gripper. but i dont see the point! how can i make now a gripper with 4 small rectangles like in office 2003 ?

thanx 4 your help!
GeneralRe: office 2003-style toolbar Pin
puzzolino7-Apr-03 0:23
puzzolino7-Apr-03 0:23 
GeneralRe: office 2003-style toolbar Pin
schaereran@gmx.net7-Apr-03 1:40
schaereran@gmx.net7-Apr-03 1:40 
GeneralRe: office 2003-style toolbar Pin
puzzolino7-Apr-03 3:57
puzzolino7-Apr-03 3:57 
GeneralRe: office 2003-style toolbar Pin
schaereran@gmx.net7-Apr-03 4:05
schaereran@gmx.net7-Apr-03 4:05 
Generalusing Unicode with Win98 Pin
npe6-Apr-03 21:11
npe6-Apr-03 21:11 
GeneralRe: using Unicode with Win98 Pin
PJ Arends6-Apr-03 21:44
professionalPJ Arends6-Apr-03 21:44 
GeneralSOS- LNK2019 fatal error under win32 Pin
Reza Shademani6-Apr-03 20:42
Reza Shademani6-Apr-03 20:42 
Generalsimple problem with cursor movement Pin
mnjobes6-Apr-03 19:52
mnjobes6-Apr-03 19:52 
GeneralRe: simple problem with cursor movement Pin
mnjobes7-Apr-03 3:10
mnjobes7-Apr-03 3:10 
GeneralBmp resize Pin
SatyaDY6-Apr-03 19:14
SatyaDY6-Apr-03 19:14 
GeneralRe: Bmp resize Pin
J. Dunlap6-Apr-03 19:33
J. Dunlap6-Apr-03 19:33 
GeneralRe: Bmp resize Pin
SatyaDY6-Apr-03 19:49
SatyaDY6-Apr-03 19:49 
GeneralRe: Bmp resize Pin
J. Dunlap6-Apr-03 20:28
J. Dunlap6-Apr-03 20:28 
GeneralRe: Bmp resize Pin
SatyaDY6-Apr-03 22:34
SatyaDY6-Apr-03 22:34 
GeneralRe: Bmp resize Pin
J. Dunlap7-Apr-03 8:11
J. Dunlap7-Apr-03 8:11 
GeneralRe: Bmp resize Pin
SatyaDY7-Apr-03 21:59
SatyaDY7-Apr-03 21:59 
GeneralHot key Pin
rohit.dhamija6-Apr-03 19:08
rohit.dhamija6-Apr-03 19:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.