Search:

Type: Posts; User: WebmasterMattD

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,365

    The main sourceforge page isn't exactly helpful....

    The main sourceforge page isn't exactly helpful.
    I am looking for something that is a bit more of a step by step `This is how you use the FLAC API to decode a flac file`.

    Thanks,
  2. Replies
    2
    Views
    2,365

    Flac Api

    If anyone knows of any good documentation and tutorials for the FLAC api, could you please let me know.

    Thanks,
  3. Replies
    11
    Views
    6,400

    Correct on both accounts there Hammer, though I...

    Correct on both accounts there Hammer, though I believe that with recv() it will fetch as much from the buffer as you tell it too and if there is one or more CRLF in there, then when a printf() or...
  4. Replies
    11
    Views
    6,400

    Just for comparison, this is the greeting...

    Just for comparison, this is the greeting function that I am currently using in my SMTP library (C++).



    void SmtpSocket::sendGreeting()
    {

    const std::string greeting_command = "EHLO";
    ...
  5. There are no STL libs that handle XML, and for...

    There are no STL libs that handle XML, and for that matter last time I checked Boost didn't offer any either.

    What I would suggest is looking into libXML2 (http://www.xmlsoft.org) as it is a nice...
  6. Replies
    1
    Views
    2,240

    Extended Backus-Naur Form

    Simple question really. I am after some help in understanding EBNF as a means for dissecting an email header (email header as defined in RFC 822). So if you know of any resources that can help with...
  7. Replies
    0
    Views
    1,381

    Help creating a mail client

    Okay, I am creating a mail client because I just can't find one that does what I want it to do and with the efficiency I require (please don't make suggestions for your favourite client). Essentialy...
  8. Replies
    3
    Views
    1,837

    Callback functions

    Okay, probably more of a generic c topic but am writing the program in c++.

    What I am wanting to know is how would I go about writing a callback function.

    The term 'callback function' I am...
  9. Essentially the string could well be defined as a...

    Essentially the string could well be defined as a constant. What I eventually want to do is place a different section of the text on screen at a particular time (GUI app) and have a scroll box type...
  10. limitations and practicality of string in c++ stl

    Okay, for a program that I am writing I am using xml documents as a means of desiding on the layout and content of objects on screen.

    Now as each xml document will undoutably contain text to...
  11. Replies
    3
    Views
    2,093

    I am looking for more of a non platform specific...

    I am looking for more of a non platform specific library (if such a thing exists) that would work the same on both Windows and Linux.

    Thanks for your tip.
  12. Replies
    3
    Views
    2,093

    interpreting xml

    I am wondering if it is possible to write a program in c++ that interprets xml files. Are there any libs out there that would help with this type of thing.

    Has anyone had any experience /...
  13. Replies
    1
    Views
    4,938

    DirectDraw

    Quick question about Direct Draw surfaces.

    Is there a way of creating a grid out of surfaces in a windowed application using direct draw?

    If this is possible, can these surfaces be overlapped...
  14. Replies
    2
    Views
    5,910

    Thanks for that. Did a simple google, and came...

    Thanks for that.

    Did a simple google, and came up with this url
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_mfc_cwnd.3a3a.m_hwnd.asp

    In short it is a global...
  15. Replies
    2
    Views
    5,910

    hWnd in MFC

    Is there a way of getting the hWnd variable from an MFC class?

    After this information to implement DirectX stuff into an app that I am building.

    Later,
  16. Replies
    5
    Views
    3,371

    I was more hoping that there would be an easy...

    I was more hoping that there would be an easy d/load such as for DirectX sdk and others.

    Anyway thanks for your help.
    Guess that I am stuck with using VC++ for any MFC work.

    Later,
  17. Replies
    5
    Views
    3,371

    Thanks for the reply. Will do. Later,

    Thanks for the reply.
    Will do.

    Later,
  18. Replies
    5
    Views
    3,371

    MFC and dev-c++

    I have decided to use c++/MFC to acomplish an assignment for the diploma that I am doing and am wondering how to get the MFC headers and libraries to work with dev-c++.

    I have old versions of the...
  19. Replies
    1
    Views
    987

    Design and Style Tips

    Just wondering what design and style techniques should be adhered to when developing a c++ namespace for use by the general public.

    On a side note, if anyone has any requests for items they would...
  20. Replies
    4
    Views
    1,062

    Thanks for that. incrementing the iterator by...

    Thanks for that.

    incrementing the iterator by the number of possitions relative to the start worked.

    Later,
  21. Replies
    4
    Views
    1,062

    String Iterators

    Am in need of some help with a string iterator.

    Basically I want to set the iterator to a particular location of a string, such as that returned by the string::find() function.

    Any help would...
  22. Code still verry alpha stage of development. ...

    Code still verry alpha stage of development.

    It will accept the input if you provide spaces as per this example


    3x^2 + 2x + 1 = 0


    I shall have to go about fixing that part of it up....
  23. Much apretiated advice. I have got the class...

    Much apretiated advice.

    I have got the class to the stage where it can do addition and subtraction as well as factorising of quadratics.

    What I am stuck on for ideas is how to do long division...
  24. Thanks for your help. One prolem that I am...

    Thanks for your help.

    One prolem that I am running into is when I try to overload the '-' operator.

    What I am confused about is which of the classes in the expression
    class1 = class2 - class3...
  25. Replies
    2
    Views
    1,016

    Check out the unix socket programing faq here...

    Check out the unix socket programing faq here

    I have also been working on a version of ping that can be found here

    I would suggest learning about ICMP packets and such as this is what you will...
Results 1 to 25 of 110
Page 1 of 5 1 2 3 4