Click here to Skip to main content
15,919,931 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralGetting a text from an HTML format Pin
Atlence15-Aug-02 8:03
Atlence15-Aug-02 8:03 
GeneralRe: Getting a text from an HTML format Pin
Ranjan Banerji15-Aug-02 10:16
Ranjan Banerji15-Aug-02 10:16 
GeneralRe: Getting a text from an HTML format Pin
Ravi Bhavnani15-Aug-02 11:42
professionalRavi Bhavnani15-Aug-02 11:42 
GeneralCan't figure out Icons for CTreeCtrl Pin
brianwelsch15-Aug-02 7:44
brianwelsch15-Aug-02 7:44 
GeneralRe: Can't figure out Icons for CTreeCtrl Pin
Tomasz Sowinski15-Aug-02 7:47
Tomasz Sowinski15-Aug-02 7:47 
GeneralRe: Can't figure out Icons for CTreeCtrl Pin
brianwelsch15-Aug-02 7:49
brianwelsch15-Aug-02 7:49 
GeneralRe: Can't figure out Icons for CTreeCtrl Pin
Tomasz Sowinski15-Aug-02 7:52
Tomasz Sowinski15-Aug-02 7:52 
GeneralMSDN example code generates hard-coded brekapoint. Pin
redeemer15-Aug-02 7:20
redeemer15-Aug-02 7:20 
I just tried to run some code i got directly from MSDN, non-modified, but at the acmFormatChoose line it gives me a message about a "breakpoint called from code at 0xXXXXXX", anyone have a clue what's wrong?

MMRESULT            mmr; 
ACMFORMATCHOOSE     afc; 
WAVEFORMATEX        wfxSelection; 
WAVEFORMATEX        wfxEnum; 
 
// Initialize the ACMFORMATCHOOSE members. 
memset(&afc, 0, sizeof(afc)); 
 
afc.cbStruct    = sizeof(afc); 
afc.fdwStyle    = 0L;               // no special style flags 
afc.hwndOwner   = ghWnd;             // hwnd of parent window 
afc.pwfx        = &wfxSelection;    // wfx to receive selection 
afc.cbwfx       = sizeof(wfxSelection); 
afc.pszTitle    = TEXT("16 Bit PCM Selection"); 
 
//  Request that all 16-bit PCM formats be displayed for the user 
//  to select from. 
memset(&wfxEnum, 0, sizeof(wfxEnum)); 

wfxEnum.wFormatTag = WAVE_FORMAT_PCM; 
wfxEnum.wBitsPerSample = 16;

afc.fdwEnum = ACM_FORMATENUMF_WFORMATTAG | ACM_FORMATENUMF_WBITSPERSAMPLE; 
afc.pwfxEnum = &wfxEnum; 

mmr = acmFormatChoose(&afc); 
if ((MMSYSERR_NOERROR != mmr) && (ACMERR_CANCELED != mmr)) 
{ 
    // There was a fatal error in bringing up the list 
    // dialog box (probably invalid input parameters). 
}


Thankyou in advance.

-Rune Svendsen
GeneralRe: MSDN example code generates hard-coded brekapoint. Pin
Tomasz Sowinski15-Aug-02 7:32
Tomasz Sowinski15-Aug-02 7:32 
GeneralRe: MSDN example code generates hard-coded brekapoint. Pin
redeemer15-Aug-02 9:07
redeemer15-Aug-02 9:07 
GeneralRe: MSDN example code generates hard-coded brekapoint. Pin
Tomasz Sowinski15-Aug-02 9:09
Tomasz Sowinski15-Aug-02 9:09 
GeneralRe: MSDN example code generates hard-coded brekapoint. Pin
redeemer15-Aug-02 9:15
redeemer15-Aug-02 9:15 
GeneralRe: MSDN example code generates hard-coded brekapoint. Pin
Tomasz Sowinski15-Aug-02 9:17
Tomasz Sowinski15-Aug-02 9:17 
GeneralRe: MSDN example code generates hard-coded brekapoint. Pin
redeemer15-Aug-02 9:22
redeemer15-Aug-02 9:22 
QuestionHow to open project files in my app, like in Visual Studio Pin
Jake Palmer15-Aug-02 6:59
Jake Palmer15-Aug-02 6:59 
AnswerRe: How to open project files in my app, like in Visual Studio Pin
Roman Fadeyev15-Aug-02 7:08
Roman Fadeyev15-Aug-02 7:08 
GeneralRe: How to open project files in my app, like in Visual Studio Pin
Jake Palmer15-Aug-02 8:35
Jake Palmer15-Aug-02 8:35 
GeneralRe: How to open project files in my app, like in Visual Studio Pin
Roman Fadeyev15-Aug-02 19:10
Roman Fadeyev15-Aug-02 19:10 
AnswerRe: How to open project files in my app, like in Visual Studio Pin
Jake Palmer16-Aug-02 9:46
Jake Palmer16-Aug-02 9:46 
GeneralCTreeCtrl Problem Pin
Jonah15-Aug-02 6:49
Jonah15-Aug-02 6:49 
GeneralRe: CTreeCtrl Problem Pin
Shog915-Aug-02 8:23
sitebuilderShog915-Aug-02 8:23 
GeneralRe: View problem again Pin
Roman Fadeyev15-Aug-02 6:36
Roman Fadeyev15-Aug-02 6:36 
GeneralRe: View problem again Pin
Zayax15-Aug-02 14:16
Zayax15-Aug-02 14:16 
GeneralRe: View problem again Pin
Roger Allen15-Aug-02 6:34
Roger Allen15-Aug-02 6:34 
GeneralRe: View problem again Pin
Roman Fadeyev15-Aug-02 6:42
Roman Fadeyev15-Aug-02 6:42 

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.