Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DigitalOx

  1. DigitalOx

    resources for audio/multimedia development

    http://www.geocities.com/SiliconValley/Pines/4223/directxt.htm<br> http://hem2.passagen.se/pdh/directx.html<br>
  2. DigitalOx

    Need help with PlaySound()

    Solved it with help by using PlaySound(MAKEINTRESOURCE(IDR_WAVE1), GetWindowModule(NULL), SND_RESOURCE ¦ SND_ASYNC)<br> <br> DigitalOx
  3. DigitalOx

    Need help with PlaySound()

    Solved it with help by using PlaySound(MAKEINTRESOURCE(IDR_WAVE1), GetWindowModule(NULL), SND_RESOURCE ¦ SND_ASYNC)<br> <br> DigitalOx
  4. DigitalOx

    Need help with PlaySound()

    Hello,<br> <br> I'm using VC++ 6 and have a dialog based app created with the wizard.<br> <br> I'm trying to use PlaySound() to play a wave I have inserted with the wizard into my "WAVE" resources. I have included the Visual C++ Multimedia component, and all is set to go right I think except...
  5. DigitalOx

    Need help with PlaySound()

    Hello,<br> <br> I'm using VC++ 6 and have a dialog based app created with the wizard.<br> <br> I'm trying to use PlaySound() to play a wave I have inserted with the wizard into my "WAVE" resources. I have included the Visual C++ Multimedia component, and all is set to go right I think except...
  6. DigitalOx

    CString conversion

    Thanks<br> <br> DigitalOx
  7. DigitalOx

    free programming education on the net

    Hello, <br> <br> Maybe the best place to start is reinforcing your understanding of C/C++/OO Programming. At least this has helped me *a lot* with VC++ programming. Buy books on sale about them and about c++ builder. Check out my page at lattes.cl.uh.edu/dubose, somewhere on there in the links...
  8. DigitalOx

    CString conversion

    How do I convert a CString data to a double?<br> I need to perform calculations on string input.<br> //This doesn't work - how to do it?<br> CString string;<br> double thedouble;<br> thedouble = (double) string;<br> <br> DigitalOx<br>
  9. DigitalOx

    CString

    How do I convert a CString data to a double?<br> I need to perform calculations on string input.<br> //This doesn't work - how to do it?<br> CString string;<br> double thedouble;<br> thedouble = (double) string;<br> <br> DigitalOx<br>
  10. DigitalOx

    Err (1,1) unable to open file 'bidsdbs.lib'

    Have you tried the numerous C programming forums yet??<br> <br> DigitalOx
  11. DigitalOx

    ASAP Java 2 Swing Library

    Hello,<br> <br> You aren't trying to run it using the .class extension are you? <br> <br> //Correct Way<br> java Main<br> //Wrong Way<br> java Main.class<br> <br> Java is a little weird that way - you have to specify the .java extension when compiling but not the .class when running. I get the...
  12. DigitalOx

    JTextField problem

    Easy enough.<br> Thanks Otto<br> <br> DigitalOx
  13. DigitalOx

    JTextField problem

    Hello all,<br> <br> I'm using to JTextField to get some input, and noticed that even though I specify the width to be certain number of columns, the user can keep typing to his/her heart's content. I suppose I could check the string length using keylistener and such, but this seems like the hard...
  14. DigitalOx

    ASAP Java 2 Swing Library

    KentCoon,<br> <br> If its not to long, please post the program.<br> <br> DigitalOx<br> <br>
  15. DigitalOx

    Capturing Java prog output in DOS window

    Otto,<br> <br> Thanks much! That will help out a lot. I was able to set up the DOS window to display 50 lines, which makes your output really small and hard to read but you see a lot more of it.<br> <br> DigitalOx

Part and Inventory Search

Back
Top