Click here to Skip to main content
15,902,299 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to get other program's MessageBox Handle without title ? Pin
wangningyu11-Nov-09 21:28
wangningyu11-Nov-09 21:28 
AnswerRe: How to get other program's MessageBox Handle without title ? Pin
Covean11-Nov-09 21:54
Covean11-Nov-09 21:54 
GeneralRe: How to get other program's MessageBox Handle without title ? Pin
wangningyu11-Nov-09 21:57
wangningyu11-Nov-09 21:57 
GeneralRe: How to get other program's MessageBox Handle without title ? Pin
Covean11-Nov-09 22:07
Covean11-Nov-09 22:07 
GeneralRe: How to get other program's MessageBox Handle without title ? Pin
wangningyu11-Nov-09 22:21
wangningyu11-Nov-09 22:21 
QuestionBullets in editbox Pin
sonualex11-Nov-09 21:28
sonualex11-Nov-09 21:28 
AnswerRe: Bullets in editbox Pin
Madhu Nair11-Nov-09 21:33
Madhu Nair11-Nov-09 21:33 
GeneralRe: Bullets in editbox Pin
sonualex11-Nov-09 22:15
sonualex11-Nov-09 22:15 
GeneralRe: Bullets in editbox Pin
Madhu Nair19-Nov-09 3:57
Madhu Nair19-Nov-09 3:57 
Questionarray implementation Pin
cool_joy211-Nov-09 19:17
cool_joy211-Nov-09 19:17 
AnswerRe: array implementation Pin
Madhu Nair11-Nov-09 20:17
Madhu Nair11-Nov-09 20:17 
GeneralRe: array implementation Pin
cool_joy215-Nov-09 19:58
cool_joy215-Nov-09 19:58 
AnswerRe: array implementation Pin
Madhu Nair19-Nov-09 3:52
Madhu Nair19-Nov-09 3:52 
GeneralRe: array implementation Pin
cool_joy220-Nov-09 20:47
cool_joy220-Nov-09 20:47 
AnswerRe: array implementation Pin
Adam Roderick J11-Nov-09 21:19
Adam Roderick J11-Nov-09 21:19 
AnswerRe: array implementation Pin
David Crow12-Nov-09 5:20
David Crow12-Nov-09 5:20 
Questionpassing string as first parameter in sprintf Pin
Kiran Pinjala11-Nov-09 19:15
Kiran Pinjala11-Nov-09 19:15 
AnswerRe: passing string as first parameter in sprintf Pin
Randor 11-Nov-09 20:19
professional Randor 11-Nov-09 20:19 
GeneralRe: passing string as first parameter in sprintf Pin
Kiran Pinjala12-Nov-09 21:46
Kiran Pinjala12-Nov-09 21:46 
GeneralRe: passing string as first parameter in sprintf Pin
Madhu Nair11-Nov-09 20:19
Madhu Nair11-Nov-09 20:19 
AnswerRe: passing string as first parameter in sprintf Pin
Vincen Wang11-Nov-09 22:13
Vincen Wang11-Nov-09 22:13 
AnswerRe: passing string as first parameter in sprintf Pin
suthakar5611-Nov-09 22:34
suthakar5611-Nov-09 22:34 
GeneralRe: passing string as first parameter in sprintf Pin
Michael Schubert11-Nov-09 22:48
Michael Schubert11-Nov-09 22:48 
QuestionRe: passing string as first parameter in sprintf Pin
David Crow12-Nov-09 5:21
David Crow12-Nov-09 5:21 
QuestionHow to hide ListBox Pin
Anu_Bala11-Nov-09 18:28
Anu_Bala11-Nov-09 18:28 
In my applcation,i have created two listbox in the view class.But initially only one listbox shoud be displayed,by pressing the button in menu..both first and second listbox will bedisplayed one below the another.
I do not know how to hide the listbox initailly.

int CAlarmView::OnCreate(LPCREATESTRUCT lpCreateStruct)
{

pAlrmListBox->Create(WS_CHILD|WS_VISIBLE|LBS_STANDARD|WS_VSCROLL|LBS_OWNERDRAWVARIABLE , CRect(0,0,600,400), this, ID_ALARMLIST);
.
.
pAlrmFilterBox->Create(WS_CHILD|WS_VISIBLE|LBS_STANDARD|WS_VSCROLL|LBS_OWNERDRAWVARIABLE , CRect(0,0,600,200), this, ID_ALARMLIST);

}

Anu

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.