CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Paul Nagy

Search: Search took 0.04 seconds.

  1. How to display DirectSound Return Values in a Message Box

    I have tried statements like:

    Buffers.Add DSBuffer, strKey
    MsgBox "Return code for Buffers.Add: " & Err.Description

    However, these statements never return anything but a blank for...
  2. Re: Help! VB6 with DirectSound8 jumps out of sub just before setting BufferBytes.

    I just answered my own question.

    The line

    BB = CLng((intSmpl - intShift) * DsDesc.fxFormat.nBlockAlign)

    should be:

    BB = CLng(intSmpl - intShift) *CLng( DsDesc.fxFormat.nBlockAlign)
  3. Help! VB6 with DirectSound8 jumps out of sub just before setting BufferBytes.

    I am trying to use DirectSound8 to play the interference wave between two sinusoidal tones, 110 and 111 Hz. I would like to record 2.0 seconds worth of this sound, sampled at 11025 samples per...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured