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

C / C++ / MFC

 
AnswerRe: exe running problem Pin
Paresh Chitte12-Mar-07 21:49
Paresh Chitte12-Mar-07 21:49 
AnswerRe: exe running problem Pin
Rajesh R Subramanian12-Mar-07 22:24
professionalRajesh R Subramanian12-Mar-07 22:24 
QuestionRe: exe running problem Pin
Mark Salsbery13-Mar-07 7:31
Mark Salsbery13-Mar-07 7:31 
AnswerRe: exe running problem Pin
amitmistry_petlad 15-Mar-07 2:30
amitmistry_petlad 15-Mar-07 2:30 
GeneralRe: exe running problem Pin
Mark Salsbery15-Mar-07 5:17
Mark Salsbery15-Mar-07 5:17 
GeneralRe: exe running problem Pin
amitmistry_petlad 15-Mar-07 17:44
amitmistry_petlad 15-Mar-07 17:44 
GeneralRe: exe running problem Pin
Mark Salsbery15-Mar-07 17:54
Mark Salsbery15-Mar-07 17:54 
GeneralRe: exe running problem Pin
amitmistry_petlad 15-Mar-07 19:32
amitmistry_petlad 15-Mar-07 19:32 
GeneralRe: exe running problem Pin
Mark Salsbery16-Mar-07 7:01
Mark Salsbery16-Mar-07 7:01 
QuestionPropertySheet - ON_NOTIFY is not working Pin
ksrameshkanth12-Mar-07 21:12
ksrameshkanth12-Mar-07 21:12 
AnswerRe: PropertySheet - ON_NOTIFY is not working Pin
KarstenK12-Mar-07 22:13
mveKarstenK12-Mar-07 22:13 
QuestionRe: PropertySheet - ON_NOTIFY is not working Pin
ksrameshkanth12-Mar-07 22:55
ksrameshkanth12-Mar-07 22:55 
AnswerRe: PropertySheet - ON_NOTIFY is not working Pin
KarstenK12-Mar-07 23:05
mveKarstenK12-Mar-07 23:05 
GeneralRe: PropertySheet - ON_NOTIFY is not working Pin
KarstenK13-Mar-07 0:28
mveKarstenK13-Mar-07 0:28 
Questionabout CtreeCtrl and NM_DBLCLK Pin
wangdxhsuperman12-Mar-07 21:11
wangdxhsuperman12-Mar-07 21:11 
QuestionRe: about CtreeCtrl and NM_DBLCLK Pin
Mark Salsbery13-Mar-07 7:33
Mark Salsbery13-Mar-07 7:33 
Questionconstructor call for a template class Pin
prithaa12-Mar-07 20:57
prithaa12-Mar-07 20:57 
AnswerRe: constructor call for a template class Pin
prasad_som12-Mar-07 21:03
prasad_som12-Mar-07 21:03 
GeneralRe: constructor call for a template class Pin
prithaa12-Mar-07 21:15
prithaa12-Mar-07 21:15 
QuestionRe: constructor call for a template class Pin
prasad_som12-Mar-07 21:19
prasad_som12-Mar-07 21:19 
GeneralRe: constructor call for a template class Pin
prithaa12-Mar-07 21:19
prithaa12-Mar-07 21:19 
AnswerRe: constructor call for a template class Pin
prasad_som12-Mar-07 22:55
prasad_som12-Mar-07 22:55 
QuestionMSBuild :-MSB4068:pattern unrecognised error Pin
Manjunath S12-Mar-07 20:57
Manjunath S12-Mar-07 20:57 
QuestionList View not working at Window 98 Pin
aaaan12-Mar-07 20:50
aaaan12-Mar-07 20:50 
Hi Everybody!

I m working on a VC++ application in which i m creating a SDI application. IN this application I create a list Ctrl on CView at run time to show the data.The part of the code which i use to create the list on the CView at run time is
void CMyApplicationView::ShowListView()
{
if(p_ListView == NULL)
{
p_ListView = new CMyListView;
CRect rect;
GetClientRect(rect);
p_ListView->Create(NULL,
NULL,
LVS_EX_GRIDLINES|WS_CHILD|WS_VISIBLE,
rect,
this,
1012,
NULL);
CFont *SimpleFont = new CFont;
CDC *dc = GetDC();
int size = 12;
CString FaceName = "Times New Roman";
SimpleFont->CreatePointFont(size*10,FaceName,dc);
CListCtrl& MyCtrl = p_ListView->GetListCtrl();
MyCtrl.GetHeaderCtrl()->SetFont(SimpleFont);
MyCtrl.SetExtendedStyle(LVS_EX_GRIDLINES|LVS_EX_FULLROWSELECT);
delete SimpleFont;
p_ListView->ShowWindow(WS_MAXIMIZE);

}
}

This code is working properly on all the OS except 98. In win 98 the ListView is not show in the Right pane of my application window.
Pls help me so that this code also works in Window 98.

Ansh
QuestionHow to get width and height??? Pin
siddharthsan12-Mar-07 19:48
siddharthsan12-Mar-07 19:48 

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.