Click here to Skip to main content
16,006,001 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: C++ Launches File Pin
Ravi Bhavnani30-May-04 9:45
professionalRavi Bhavnani30-May-04 9:45 
GeneralRe: C++ Launches File Pin
Michael Dunn30-May-04 10:09
sitebuilderMichael Dunn30-May-04 10:09 
GeneralRe: C++ Launches File Pin
vinniez_ok30-May-04 13:04
vinniez_ok30-May-04 13:04 
GeneralRe: C++ Launches File Pin
Michael Dunn30-May-04 16:30
sitebuilderMichael Dunn30-May-04 16:30 
GeneralRe: C++ Launches File Pin
vinniez_ok30-May-04 17:14
vinniez_ok30-May-04 17:14 
GeneralPrinting A report in A database Pin
Youngranger30-May-04 8:30
Youngranger30-May-04 8:30 
Questionhow to get IDirectNotify Pin
laia30-May-04 8:08
laia30-May-04 8:08 
AnswerRe: how to get IDirectNotify Pin
Alexander M.,30-May-04 11:40
Alexander M.,30-May-04 11:40 
HRESULT SetStopNotification(HANDLE hMyEvent, 
        LPDIRECTSOUNDBUFFER8 lpDsbSecondary)
{
  LPDIRECTSOUNDNOTIFY8 lpDsNotify; 
  DSBPOSITIONNOTIFY PositionNotify;
  HRESULT hr;

  if (SUCCEEDED(
      hr = lpDsbSecondary->QueryInterface(IID_IDirectSoundNotify8,
             (LPVOID*)&lpDsNotify))) 
  { 
    PositionNotify.dwOffset = DSBPN_OFFSETSTOP;
    PositionNotify.hEventNotify = hMyEvent;
    hr = lpDsNotify->SetNotificationPositions(1, &PositionNotify);
    lpDsNotify->Release();
  }
  return hr;
}


Don't try it, just do it! Wink | ;-)
Generalthis is my method Pin
laia31-May-04 2:59
laia31-May-04 2:59 
GeneralUnicode Programming Pin
Truong D. Toan30-May-04 7:46
Truong D. Toan30-May-04 7:46 
GeneralRe: Unicode Programming Pin
f6430-May-04 8:03
f6430-May-04 8:03 
GeneralRe: Unicode Programming Pin
Truong D. Toan30-May-04 20:01
Truong D. Toan30-May-04 20:01 
GeneralRe: Unicode Programming Pin
f6431-May-04 8:05
f6431-May-04 8:05 
GeneralRe: Unicode Programming Pin
Diddy1-Jun-04 5:31
Diddy1-Jun-04 5:31 
GeneralPrinting Bitmaps Pin
Sergio Batarce30-May-04 5:56
Sergio Batarce30-May-04 5:56 
GeneralRe: Printing Bitmaps Pin
Roger Allen1-Jun-04 5:12
Roger Allen1-Jun-04 5:12 
GeneralRe: Printing Bitmaps Pin
Sergio Batarce1-Jun-04 7:23
Sergio Batarce1-Jun-04 7:23 
GeneralCreating Excel File -- Autofit cells Pin
shultas30-May-04 4:04
shultas30-May-04 4:04 
GeneralRe: Creating Excel File -- Autofit cells Pin
f6430-May-04 8:19
f6430-May-04 8:19 
QuestionHTMLHelp: How to start with? Pin
JHAKAS30-May-04 3:24
JHAKAS30-May-04 3:24 
AnswerRe: HTMLHelp: How to start with? Pin
Ravi Bhavnani30-May-04 7:52
professionalRavi Bhavnani30-May-04 7:52 
Generalresize Pin
Anonymous30-May-04 2:49
Anonymous30-May-04 2:49 
GeneralGDI Gurus, Ellipses Pin
Abin30-May-04 2:12
Abin30-May-04 2:12 
GeneralRe: GDI Gurus, Ellipses Pin
Dominik Reichl30-May-04 4:55
Dominik Reichl30-May-04 4:55 
GeneralRe: GDI Gurus, Ellipses Pin
f6430-May-04 8:40
f6430-May-04 8:40 

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.