Click here to Skip to main content
15,913,453 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralDrawText question Pin
alex.barylski4-Oct-02 14:57
alex.barylski4-Oct-02 14:57 
GeneralRe: DrawText question Pin
perlmunger4-Oct-02 15:03
perlmunger4-Oct-02 15:03 
GeneralRe: DrawText question Pin
alex.barylski4-Oct-02 15:15
alex.barylski4-Oct-02 15:15 
GeneralRe: DrawText question Pin
perlmunger4-Oct-02 15:54
perlmunger4-Oct-02 15:54 
GeneralRe: DrawText question Pin
alex.barylski14-Oct-02 20:09
alex.barylski14-Oct-02 20:09 
GeneralRe: DrawText question Pin
Shog94-Oct-02 16:19
sitebuilderShog94-Oct-02 16:19 
GeneralRe: DrawText question Pin
alex.barylski14-Oct-02 20:11
alex.barylski14-Oct-02 20:11 
GeneralpDoc and push_back problem Pin
nss4-Oct-02 14:55
nss4-Oct-02 14:55 
GeneralRe: pDoc and push_back problem Pin
perlmunger4-Oct-02 15:09
perlmunger4-Oct-02 15:09 
GeneralRe: pDoc and push_back problem Pin
nss4-Oct-02 15:15
nss4-Oct-02 15:15 
GeneralRe: pDoc and push_back problem Pin
perlmunger4-Oct-02 16:10
perlmunger4-Oct-02 16:10 
GeneralRe: pDoc and push_back problem Pin
nss4-Oct-02 17:13
nss4-Oct-02 17:13 
GeneralRe: pDoc and push_back problem Pin
Neville Franks4-Oct-02 22:49
Neville Franks4-Oct-02 22:49 
GeneralRe: pDoc and push_back problem Pin
nss5-Oct-02 1:24
nss5-Oct-02 1:24 
GeneralUsing a BHO to Insert Menu Into IE Pin
perlmunger4-Oct-02 14:48
perlmunger4-Oct-02 14:48 
Generala very weird problem regarding globals... Pin
nss4-Oct-02 14:47
nss4-Oct-02 14:47 
Generalmediaplayer Pin
moloko4-Oct-02 14:30
moloko4-Oct-02 14:30 
GeneralRe: mediaplayer Pin
Shog94-Oct-02 16:24
sitebuilderShog94-Oct-02 16:24 
GeneralHmmm...Error ! Pin
Nick Parker4-Oct-02 12:34
protectorNick Parker4-Oct-02 12:34 
GeneralRe: Hmmm...Error ! Pin
Joshua Nussbaum4-Oct-02 13:19
Joshua Nussbaum4-Oct-02 13:19 
GeneralRe: Hmmm...Error ! Pin
Nick Parker4-Oct-02 13:33
protectorNick Parker4-Oct-02 13:33 
Generalration button Pin
Michael Liu4-Oct-02 12:07
Michael Liu4-Oct-02 12:07 
GeneralRe: ration button Pin
Dimitri Rochette4-Oct-02 12:36
Dimitri Rochette4-Oct-02 12:36 
QuestionWeird CListView behavior, Bug? Pin
Anonymous4-Oct-02 10:49
Anonymous4-Oct-02 10:49 
Hello,
I am seeing some weird List View behaviors.. I am trying to resize all my columns when the window is re-sized.. When i make the window bigger the header resizes fine, when I make the window smaller the header still resizes fine but I get a scroll bar at the bottom of the view (every other time its sized smaller). If I click on the scroll bar it goes away (because it should never have been drawn).. Anyone seen this? Here is a snip of the WM_SIZE..
void CMyListView::OnSize(UINT nType, int cx, int cy) 
{
	GetListCtrl().SetColumnWidth(0,cx);
	GetListCtrl().SetColumnWidth(1,0);
	GetListCtrl().SetColumnWidth(2,0);
	GetListCtrl().SetColumnWidth(3,0);
	GetListCtrl().SetColumnWidth(4,0);
	GetListCtrl().SetColumnWidth(5,0);
	
	CListView::OnSize(nType, cx, cy);
}

AnswerNever mind Pin
Anonymous4-Oct-02 11:15
Anonymous4-Oct-02 11:15 

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.