Search:

Type: Posts; User: afisher

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,229

    Almost there: double CalcBMI(double...

    Almost there:



    double CalcBMI(double HEIGHT, double WEIGHT, char MEASURE)
    {
    double bmi; //you declared bmi as int

    if (MEASURE == 'm') //you are comparing a char
    bmi =...
  2. Replies
    0
    Views
    1,302

    recording Stereo Mix

    Does anyone know how to record from the "Stereo Mix" line of the soundcard?

    Or know another way of combining WaveIn and WaveOut simultaneously?

    Thanks,
    Adam
  3. Thread: winmm.dll

    by afisher
    Replies
    1
    Views
    1,393

    winmm.dll

    Hi all,

    What is the best way to get a list of methods that I can call from winmm.dll?

    Is reading the mmsystem.h the only way?

    Thanks
  4. Replies
    3
    Views
    2,542

    I didn't think it was an idea that could be made...

    I didn't think it was an idea that could be made complex enough for a final year project. But as you have pointed out making it more generic introduces loads of new feaures that can be implemented. ...
  5. Replies
    3
    Views
    2,542

    Final year project

    Hi All,

    It's that time... time to choose my final year university project.

    I'd like to implement the project using C#.

    I thought of writing some type of meeting recorder for skype, i...
  6. Replies
    3
    Views
    3,975

    obtain hostname or IP

    Hi all,

    I was just wondering if there was any way that I could obtain the hostname or IP address of the machine that my program will be running on?

    I have found examples to get the ip address,...
  7. Replies
    4
    Views
    1,690

    Wow, Thanks alot Salem, that'll save alot of...

    Wow,

    Thanks alot Salem, that'll save alot of time and effort in the future!!
  8. Replies
    4
    Views
    1,690

    You can pass single dimensional arrays around...

    You can pass single dimensional arrays around with pointers like:


    #include <iostream>

    void passing_single_array(int* array_you_passed);

    int main(void)
    {
    int tmp_array[3];
  9. Replies
    4
    Views
    1,848

    SQL was the type of thing i was looking for. Was...

    SQL was the type of thing i was looking for. Was a little unsure of libraries etc I needed to make a connection to the db, but i'll have a read.

    If anyone could post a url for a good tutorial that...
  10. Replies
    4
    Views
    1,848

    C and database access

    Hi all,

    Does anyone know of any decent C database tutorials? I've been on google for a bit and come across loads of windows ones, no linux tho :confused: .

    Thanks in adv
  11. Replies
    3
    Views
    3,960

    I was recieving a response from a server via...

    I was recieving a response from a server via sockets. wanted to dispay the responce, then pause, then clear the terminal to restart the program.

    Though now I think about it, clearing the response...
  12. Replies
    3
    Views
    3,960

    C system() function

    I know windows uses the pause system call to wait for a keypress on stdin i.e. system("pause");.

    is there an equivelant system call that I can use in linux??

    or will I have to use fgetc();?
  13. Thread: recv()

    by afisher
    Replies
    3
    Views
    2,676

    recv()

    I am writing client program, using sockets. The client also has to accept responses.

    I connect to the server ok, can send requests ok. The problem is when I try to recv().

    The main program...
Results 1 to 13 of 13