Search:

Type: Posts; User: loobian

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    2,067

    How to read digits from an image?

    Hi all!

    I am preparing to start an advanced C# Contest on C# Home .

    The contest will be to read digits from an image, so I am making research on the topic, so I can provide the contestants with...
  2. Replies
    2
    Views
    4,301

    How to write source code documentation?

    Hi all!

    I have a project where I have to write documentation for source code.
    As I have no experience in writing documentation, I wanted to ask you guys- does any of you have any experience with...
  3. Thread: New C# website

    by loobian
    Replies
    1
    Views
    1,763

    New C# website

    http://www.csharp-home.com -> C# Home- Articles, FAQs, Free Exams, Forums, Links and more... Check it out.
  4. Replies
    0
    Views
    886

    Direct recording in .wma?

    Hi all!

    I already know how to directly record to mp3 (LAME_ENC.DLL) and .ogg and .wav of course.
    I am interested though to be able to record in many more formats directly...
    For mp3 and .ogg I...
  5. Replies
    6
    Views
    2,773

    mmio won't work. I tried that though: ...

    mmio won't work.

    I tried that though:



    #include <iostream.h>
    #include <fstream.h>

    int main()
  6. Replies
    6
    Views
    2,773

    Hi all! Thanks for your replies! I actually...

    Hi all!

    Thanks for your replies!
    I actually can do CD player but with MCI which does not let me have any access to the buffers. But buffers is what I need actually.
    So, I am sure it is possible,...
  7. Replies
    6
    Views
    2,773

    CD Player using waveOutXXX APIs?

    Hi all!

    I want to make a CD player, which will use the waveOutXXX APIs to play the CD.
    What I actually need is to read data from the CD, put it into buffer, then manipulate it, and after that...
  8. Replies
    6
    Views
    3,536

    Thanks! That worked :) I tottaly forgot that int...

    Thanks! That worked :) I tottaly forgot that int is 4 bytes not two (I use VB a lot, where int is 2 bytes).

    I made one more little change. And here is the code in case anyone is interested:

    ...
  9. Replies
    6
    Views
    3,536

    What is "NumberOfSamples" variable? The number of...

    What is "NumberOfSamples" variable? The number of samples per second or what?
    Also, this thing doesn't work of course, because I read every signle sample, so there is no point to divide it into...
  10. Replies
    6
    Views
    3,536

    Karaoke algorithm didn't work...

    Hi all!

    What I wanted to do is to filter the vocal. The algorithm that I know is:

    newLeft = oldLeft - oldRight
    newRight = oldRight - oldLeft

    This way, the vocal which in most cases is...
  11. Replies
    7
    Views
    4,825

    Hi there! Thank you for your responses. ...

    Hi there!

    Thank you for your responses.

    Well, I will have to make analysis on .wav and .mp3 files, but it does not need to be in real-time.

    But one think I still don't quite get- what...
  12. Replies
    7
    Views
    4,825

    Beats-Per-Minute in .wav file

    Hi all!

    I am developing an application that should have a feature to cound the beats-per-minute in a .wav file.
    Anyone knows how to do it? Any algorithms?

    Thank you!
  13. Replies
    3
    Views
    7,628

    Using ofstream in private of a class-errors

    Hi!

    Trying to use ofstream object like that:



    class X
    {
    ofstream FileHandle;
    int f();
  14. Replies
    12
    Views
    4,284

    Hi! Thanks, I added this. One dumb question...

    Hi!

    Thanks, I added this.

    One dumb question though (as I haven't used Win32 much)- what parameters should I pass to the MessageBox function? I see the list of the parameters, but I don't know...
  15. Replies
    12
    Views
    4,284

    Thanks a lot! I will give it a try right away...

    Thanks a lot!
    I will give it a try right away and will publish what happened.

    Thanks!
  16. Replies
    12
    Views
    4,284

    Will MessageBox work in DLL imported in VB? ...

    Will MessageBox work in DLL imported in VB?

    Also, what exactly is your idea? To see WHERE it returns?
  17. Replies
    12
    Views
    4,284

    Hi there! But the CreateProcess does execute...

    Hi there!

    But the CreateProcess does execute in my mind... I think so, because if it didn't the console wouldn't open! And it opens!
  18. Replies
    12
    Views
    4,284

    Hi! In VB (where I use the DLL) when I make a...

    Hi!

    In VB (where I use the DLL) when I make a call to the function, it executes what I called, but it just doesn't store it's console output into the string.
    And I know that it executes because...
  19. Replies
    12
    Views
    4,284

    Pipe the console from a DLL

    Hi!

    I've got this code that pipes the console output into a string. The problem is that when I use it in a DLL file, and use this DLL file from VB, the console's output is not in the string, as...
  20. Replies
    8
    Views
    3,129

    Poll: It is MUCH cheaper for one! Also, GoldWave is...

    It is MUCH cheaper for one!

    Also, GoldWave is more like editor than to recorder.
    My app will be mostly recorder.
    Also, I found no Silence Detetion in GoldWave, did you?

    And at last- I want to...
  21. Replies
    8
    Views
    3,129

    Poll: Sound Recorder work...Advice me.

    Hi all!

    I am creating a sound recorder with some advanced features. This sound recorder will be released in the beginning of year 2004 and will go to download.com for selling.

    What I wanted to...
  22. Replies
    5
    Views
    1,664

    I don't understand... please, explain what you...

    I don't understand... please, explain what you mean... yes, I know that regular CDs are 640 MB, but what does this have to do with my question or my code?

    Thanks!
  23. Replies
    5
    Views
    1,664

    How do I get the free space on the CDROM?

    I currently made this code:


    #include <iostream.h>
    #include <afx.h>
    #include <windows.h>



    #define MAX_OF_HARD_DISKS 24
  24. Replies
    9
    Views
    1,648

    Hi! Try: int _stdcall Test(){...

    Hi!

    Try:

    int _stdcall Test(){
    MessageBox(NULL,"Dll Works!","YAY!",MB_OK);
    return 0;
    }

    Also, create a file with the name of your .cpp file. For example:
  25. Replies
    6
    Views
    1,137

    http://www.cpp-home.com/downloads/tutorials/195.zi...

    http://www.cpp-home.com/downloads/tutorials/195.zip
Results 1 to 25 of 106
Page 1 of 5 1 2 3 4