CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 9 of 9

Thread: Sound Recorder

  1. #1
    Join Date
    Oct 2000
    Location
    Upstate NY
    Posts
    249

    Sound Recorder

    The following code brings the sound recorder up on the task bar very nicely but I would like to load it onto my form at runtime and not have to hit the taskbar button. Can this be done?

    Shell "c:\windows\sndrec32.exe"

    73 RSH



  2. #2
    Join Date
    Nov 2000
    Location
    Tokyo and Memphis
    Posts
    238

    Re: Sound Recorder

    Perhaps you want this

    Shell "c:\windows\sndrec32.exe", vbNormalFocus

    Good luck

    Phil



  3. #3
    Join Date
    Nov 2000
    Location
    Tokyo and Memphis
    Posts
    238

    Re: Sound Recorder

    Shell "c:\windows\sndrec32.exe", vbNormalFocus

    Hope this was what you wanted

    Phil


  4. #4
    Join Date
    Oct 2000
    Location
    Upstate NY
    Posts
    249

    Re: Sound Recorder


    You hit it right on the nose. That works exactly as I would like. Now my only problem
    is that When I make a recording and save it as #1
    Then make a second recording and save it as #2, Both recordings contain all the data in No1 and No2


  5. #5
    Join Date
    Oct 2000
    Location
    Upstate NY
    Posts
    249

    Re: Sound Recorder


    You hit it right on the nose. That works exactly as I would like. Now my only problem
    is that When I make a recording and save it as #1
    Then make a second recording and save it as #2, Both recordings contain all the data in No1 and No2
    73 RSH


  6. #6
    Join Date
    Oct 2000
    Location
    Upstate NY
    Posts
    249

    Re: Sound Recorder

    Most humble Post
    The forgoing posts by RSH were in error.
    Everything works as it should. Just a case of cockpit error.
    73 RSH


  7. #7
    Join Date
    Jun 2005
    Location
    gandhinagar,gujarat
    Posts
    51

    Re: Sound Recorder

    r u a HAM RAS?

  8. #8
    Join Date
    Jun 2005
    Location
    gandhinagar,gujarat
    Posts
    51

    Re: Sound Recorder

    it should be

    Shell "c:\windows\system32\sndrec32.exe", vbNormalFocus

    if i m not wrong

  9. #9
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: Sound Recorder

    Quote Originally Posted by mynick
    it should be

    Shell "c:\windows\system32\sndrec32.exe", vbNormalFocus

    if i m not wrong
    Not if the the OP ( Which posted this question 7 years ago ) was using Windows 95

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured