Click here to Skip to main content
15,881,852 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Tab Order Pin
Hamed Musavi25-Jun-07 22:41
Hamed Musavi25-Jun-07 22:41 
AnswerRe: Tab Order Pin
Hamid_RT25-Jun-07 22:21
Hamid_RT25-Jun-07 22:21 
GeneralRe: Tab Order Pin
_anil_25-Jun-07 23:19
_anil_25-Jun-07 23:19 
QuestionResizing list control with splitter and window Pin
neha.agarwal2725-Jun-07 20:20
neha.agarwal2725-Jun-07 20:20 
AnswerRe: Resizing list control with splitter and window Pin
_anil_25-Jun-07 20:42
_anil_25-Jun-07 20:42 
GeneralRe: Resizing list control with splitter and window Pin
neha.agarwal2725-Jun-07 21:08
neha.agarwal2725-Jun-07 21:08 
QuestionRe: Resizing list control with splitter and window Pin
Rajkumar R25-Jun-07 21:29
Rajkumar R25-Jun-07 21:29 
GeneralRe: Resizing list control with splitter and window Pin
_anil_25-Jun-07 21:56
_anil_25-Jun-07 21:56 
void CYourFormView::OnSize(UINT nType, int cx, int cy)
{
CFormView::OnSize(nType, cx, cy);

// Size the tree control according to size of bar
if( m_LstCtrl.GetSafeHwnd() != NULL ){

// Get the current control position
CRect rcListSize;
m_LstCtrl.GetWindowRect( rcListSize );

// Change to screen cordinate
ScreenToClient( rcListSize );

// Change the size of the tree control
m_LstCtrl.MoveWindow( rcListSize.left, rcListSize.top, cx - rcListSize.left, cy - rcListSize.top);
}
}

if u r not able to do then as Rajkumar said I also like to know which way u r trying. so post some code too.

Regards
Anil

Questionhow to split a dialog box? Pin
vikramkarthik25-Jun-07 18:52
vikramkarthik25-Jun-07 18:52 
QuestionRe: how to split a dialog box? Pin
Perspx25-Jun-07 19:57
Perspx25-Jun-07 19:57 
AnswerRe: how to split a dialog box? Pin
Hamid_RT25-Jun-07 22:36
Hamid_RT25-Jun-07 22:36 
QuestionDeclare string array in heap Pin
Aqueel25-Jun-07 18:05
Aqueel25-Jun-07 18:05 
AnswerRe: Declare string array in heap Pin
John R. Shaw25-Jun-07 20:27
John R. Shaw25-Jun-07 20:27 
AnswerRe: Declare string array in heap Pin
CPallini25-Jun-07 20:56
mveCPallini25-Jun-07 20:56 
QuestionWhat an I doing wrong with swprintf() Pin
frqftgbdafr25-Jun-07 17:23
frqftgbdafr25-Jun-07 17:23 
AnswerRe: What an I doing wrong with swprintf() Pin
Michael Dunn25-Jun-07 17:33
sitebuilderMichael Dunn25-Jun-07 17:33 
AnswerRe: What an I doing wrong with swprintf() Pin
Nibu babu thomas25-Jun-07 18:02
Nibu babu thomas25-Jun-07 18:02 
QuestionVirtual List View Pin
GameProfessor25-Jun-07 16:38
GameProfessor25-Jun-07 16:38 
AnswerRe: Virtual List View Pin
Mark Salsbery25-Jun-07 17:10
Mark Salsbery25-Jun-07 17:10 
GeneralRe: Virtual List View Pin
GameProfessor25-Jun-07 17:27
GameProfessor25-Jun-07 17:27 
GeneralRe: Virtual List View Pin
Mark Salsbery25-Jun-07 17:37
Mark Salsbery25-Jun-07 17:37 
GeneralRe: Virtual List View Pin
GameProfessor25-Jun-07 19:57
GameProfessor25-Jun-07 19:57 
QuestionHandling close button of Dialog based application Pin
rp_suman25-Jun-07 16:11
rp_suman25-Jun-07 16:11 
AnswerRe: Handling close button of Dialog based application Pin
Mark Salsbery25-Jun-07 16:28
Mark Salsbery25-Jun-07 16:28 
GeneralRe: Handling close button of Dialog based application Pin
rp_suman25-Jun-07 16:44
rp_suman25-Jun-07 16:44 

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.