Click here to Skip to main content
15,910,787 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: multiple recordsets Pin
Bill Wilson13-Aug-02 13:09
Bill Wilson13-Aug-02 13:09 
GeneralRe: multiple recordsets Pin
danag13-Aug-02 13:35
danag13-Aug-02 13:35 
GeneralRe: multiple recordsets Pin
Alexander Wiseman13-Aug-02 14:54
Alexander Wiseman13-Aug-02 14:54 
Generalmodeless dialog-Resizing Pin
udayGovekar13-Aug-02 9:23
udayGovekar13-Aug-02 9:23 
GeneralRe: modeless dialog-Resizing Pin
Tomasz Sowinski13-Aug-02 9:26
Tomasz Sowinski13-Aug-02 9:26 
QuestionHow do i use acmFormatEnum? All help is appreciated! Pin
redeemer13-Aug-02 9:10
redeemer13-Aug-02 9:10 
AnswerRe: How do i use acmFormatEnum? All help is appreciated! Pin
Ernest Laurentin13-Aug-02 10:46
Ernest Laurentin13-Aug-02 10:46 
AnswerRe: How do i use acmFormatEnum? All help is appreciated! Pin
Ernest Laurentin14-Aug-02 17:40
Ernest Laurentin14-Aug-02 17:40 
Try to initialize your WAVEFORMATEX struct with this function:
void InitFormat(LPWAVEFORMATEX pwfx, WORD wChannel, DWORD dwSamplesPerSec, WORD wBitsPerSample)
{
_ASSERTE( NULL != pwfx );
pwfx->cbSize = sizeof(WAVEFORMATEX);
pwfx->wFormatTag = WAVE_FORMAT_PCM;
pwfx->nChannels = wChannel;
pwfx->nSamplesPerSec = dwSamplesPerSec;
pwfx->nAvgBytesPerSec = dwSamplesPerSec * wChannel * (wBitsPerSample>>3);
pwfx->wBitsPerSample = wBitsPerSample;
pwfx->nBlockAlign = wChannel * (wBitsPerSample>>3);
}


VOTD:"5 I know that the Lord is great, that our Lord is greater than all gods.
6 The Lord does whatever pleases him, in the heavens and on the earth, in the seas and all their depths."
- Psalm 135:5-6


GeneralCOleSafeArray Pin
Mazdak13-Aug-02 9:08
Mazdak13-Aug-02 9:08 
GeneralRe: COleSafeArray Pin
Ernest Laurentin13-Aug-02 10:06
Ernest Laurentin13-Aug-02 10:06 
Generalchar representation of a double Pin
senorbuckwheat13-Aug-02 8:22
senorbuckwheat13-Aug-02 8:22 
GeneralRe: char representation of a double Pin
Chris Losinger13-Aug-02 8:30
professionalChris Losinger13-Aug-02 8:30 
GeneralRe: char representation of a double Pin
Tomasz Sowinski13-Aug-02 8:31
Tomasz Sowinski13-Aug-02 8:31 
Generalmodal dialog range checking Pin
jimNLX13-Aug-02 8:19
jimNLX13-Aug-02 8:19 
GeneralRe: modal dialog range checking Pin
Tomasz Sowinski13-Aug-02 8:21
Tomasz Sowinski13-Aug-02 8:21 
GeneralRe: modal dialog range checking Pin
jimNLX13-Aug-02 8:23
jimNLX13-Aug-02 8:23 
GeneralRe: modal dialog range checking Pin
Tomasz Sowinski13-Aug-02 8:28
Tomasz Sowinski13-Aug-02 8:28 
GeneralRe: modal dialog range checking Pin
jimNLX13-Aug-02 8:43
jimNLX13-Aug-02 8:43 
GeneralRe: modal dialog range checking Pin
Tomasz Sowinski13-Aug-02 9:13
Tomasz Sowinski13-Aug-02 9:13 
GeneralRe: modal dialog range checking Pin
jimNLX13-Aug-02 9:28
jimNLX13-Aug-02 9:28 
GeneralRe: modal dialog range checking Pin
Tomasz Sowinski13-Aug-02 9:30
Tomasz Sowinski13-Aug-02 9:30 
GeneralRe: modal dialog range checking Pin
jimNLX13-Aug-02 9:36
jimNLX13-Aug-02 9:36 
GeneralRe: modal dialog range checking Pin
Tomasz Sowinski13-Aug-02 9:39
Tomasz Sowinski13-Aug-02 9:39 

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.