Click here to Skip to main content
15,917,731 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to read USB type Disk Drive device? Pin
Le@rner29-Feb-12 21:42
Le@rner29-Feb-12 21:42 
AnswerRe: How to read USB type Disk Drive device? Pin
Richard MacCutchan29-Feb-12 22:38
mveRichard MacCutchan29-Feb-12 22:38 
GeneralRe: How to read USB type Disk Drive device? Pin
Le@rner1-Mar-12 1:34
Le@rner1-Mar-12 1:34 
GeneralRe: How to read USB type Disk Drive device? Pin
Richard MacCutchan1-Mar-12 2:19
mveRichard MacCutchan1-Mar-12 2:19 
AnswerRe: How to read USB type Disk Drive device? Pin
Albert Holguin1-Mar-12 11:26
professionalAlbert Holguin1-Mar-12 11:26 
GeneralRe: How to read USB type Disk Drive device? Pin
Le@rner1-Mar-12 18:04
Le@rner1-Mar-12 18:04 
GeneralRe: How to read USB type Disk Drive device? Pin
Albert Holguin1-Mar-12 18:52
professionalAlbert Holguin1-Mar-12 18:52 
GeneralRe: How to read USB type Disk Drive device? Pin
Le@rner1-Mar-12 20:53
Le@rner1-Mar-12 20:53 
QuestionRe: How to read USB type Disk Drive device? Pin
David Crow2-Mar-12 2:41
David Crow2-Mar-12 2:41 
AnswerRe: How to read USB type Disk Drive device? Pin
Le@rner4-Mar-12 17:55
Le@rner4-Mar-12 17:55 
SuggestionRe: How to read USB type Disk Drive device? Pin
David Crow5-Mar-12 2:29
David Crow5-Mar-12 2:29 
GeneralRe: How to read USB type Disk Drive device? Pin
Le@rner5-Mar-12 18:56
Le@rner5-Mar-12 18:56 
GeneralRe: How to read USB type Disk Drive device? Pin
David Crow6-Mar-12 2:32
David Crow6-Mar-12 2:32 
GeneralRe: How to read USB type Disk Drive device? Pin
Le@rner6-Mar-12 17:15
Le@rner6-Mar-12 17:15 
QuestionRe: How to read USB type Disk Drive device? Pin
David Crow6-Mar-12 17:53
David Crow6-Mar-12 17:53 
AnswerRe: How to read USB type Disk Drive device? Pin
Le@rner12-Mar-12 20:41
Le@rner12-Mar-12 20:41 
QuestionRe: How to read USB type Disk Drive device? Pin
David Crow13-Mar-12 3:18
David Crow13-Mar-12 3:18 
Questioncreate statusBar in dialog problem Pin
appollosputnik29-Feb-12 15:31
appollosputnik29-Feb-12 15:31 
I am trying to create a statusBar in the dialog but it's returning false. not creating the status bar please tell me whats going wrong in this. Thanks for any help. I am creating the status bar in the OnInitDialog() function

[code]


CStatusBar m_wndStatusBar; // member variable in the dialog header.



BOOL CDlgsViewDlg::OnInitDialog()
{
CDialog::OnInitDialog();
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators,
sizeof(indicators)/sizeof(UINT)))
{
TRACE0("Failed to create status bar\n");
return FALSE; // fail to create
}

m_wndStatusBar.SetPaneText(0,L"MainWindow Initialized");
}
[/code]

it's returning false. please help me.
AnswerRe: create statusBar in dialog problem Pin
chenxi_129-Feb-12 18:00
chenxi_129-Feb-12 18:00 
AnswerRe: create statusBar in dialog problem Pin
Chandrakantt29-Feb-12 18:53
Chandrakantt29-Feb-12 18:53 
GeneralRe: create statusBar in dialog problem Pin
appollosputnik1-Mar-12 0:19
appollosputnik1-Mar-12 0:19 
QuestionMenu items disabled but appear enabled Pin
cpp_prgmer29-Feb-12 9:27
cpp_prgmer29-Feb-12 9:27 
QuestionRe: Menu items disabled but appear enabled Pin
David Crow29-Feb-12 9:56
David Crow29-Feb-12 9:56 
AnswerRe: Menu items disabled but appear enabled Pin
cpp_prgmer29-Feb-12 10:56
cpp_prgmer29-Feb-12 10:56 
GeneralRe: Menu items disabled but appear enabled Pin
Maximilien29-Feb-12 13:57
Maximilien29-Feb-12 13:57 

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.