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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: WhiteMouseGary
  • Order by date
  1. WhiteMouseGary

    Problem getting POST info through stdin using C++

    To read POST information from CGI in C is the same as reading data from stdin. Yours code should be fine in this sense. I think you probably have error somewhere. Post your code. So that others can see what is the real problem. Try the following code, it shall print everything you posted...
  2. WhiteMouseGary

    fatal error C1083

    You can change the project setting to include also the path of your header file located, therefore you can include your header file like #include <myfile.h> . Alternatively, you can give the full path or relative path to your header file like: #include...
  3. WhiteMouseGary

    2D Run-Time Drawings

    Use DirectX, DirectX got everything you need.
  4. WhiteMouseGary

    parsing text streams into 2d array

    I'm not sure about your question. However; if the variable type of array[][], var1 and var2 are the same, the assignment operator should work. By the way, you couldn't do &quot;array[row][] = var1;&quot; instead you need &quot;array[row][col] = var1;&quot;
  5. WhiteMouseGary

    DirectX Audio Compressor/Limiter from VB

    If you installed DirectX SDK, you would have some Filter concerning Audio processing. The simplest way to get some feeling about what you can do with DirectX SDK on media processing is using GraphEdit.exe, a utility in DirectX SDK. You can directly render a media file with it, eg, .mp3. Also...

Part and Inventory Search

Back
Top