CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: kevindckr

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    571

    Re: C++ working with audio files

    Looks good, though they dislike MVS and I dolike MVS

    http://ffmpeg.org/faq.html#Is-Microsoft-Visual-C_002b_002b-supported_003f
  2. Replies
    3
    Views
    571

    C++ working with audio files

    To what extents can C++ edit, maintain, or create audio files?

    Ex.
    I would like to chop a song up into pieces and re-arrange them, and then save the song.

    Ex.
    Play the first 30 seconds of...
  3. Replies
    3
    Views
    696

    Re: C++ FAQ question. Classes vs Structs

    I mean what would the access rights be of a class inheriting from a struct or vise versa?
  4. Replies
    3
    Views
    696

    C++ FAQ question. Classes vs Structs

    I just read and have known for a while that classes are private (members and inheritance) by default and structs are public. But my question then comes what if..

    a struct inheriting from a class...
  5. Replies
    3
    Views
    1,834

    Re: Use 32 x 32 icon not 16 x 16

    That is what I ended up doing, if I/you right click on the sizes I/you can delete all of the sizes then add a new icon type of any of the sizes available.
  6. Replies
    2
    Views
    659

    Re: please help me with this code..

    Well I did my part...




    #include <stdio.h>
    #define num_staff 5
    #define week 4

    int minimum(const int sales[] [week], int staff, int sales_shoes);
  7. Re: error C2146: syntax error : missing ';' before identifier 'm_hsel'

    rename something to HSEL.lib?
  8. Re: I need a code in c++ for the below question.

    fread explanation:

    http://www.cplusplus.com/reference/clibrary/cstdio/fread/

    read explanation:

    http://www.cplusplus.com/reference/iostream/istream/read/
  9. Replies
    3
    Views
    1,834

    Use 32 x 32 icon not 16 x 16

    How do I set a CButton derived class to use the large Icon and not the small icon?

    Say in VS I add a new icon resource it shows me on the left, a small 16x16 icon and a larger 32x32 icon which I...
  10. Replies
    9
    Views
    1,307

    Re: Help definition

    If anyone was going to try and help him here is the code with indentation. Or atleast what I could make of the indentation...?



    int main()
    {
    std::string SPEACH;
    std::string WOrt; ...
  11. Thread: Code help

    by kevindckr
    Replies
    17
    Views
    1,676

    Re: Code help

    Microsoft Visual Studio 2010 debugger
    http://msdn.microsoft.com/en-us/library/k0k771bt%28v=vs.100%29.aspx

    From what I can say, I am not a expert at all, but bugs will become progressively harder...
  12. Replies
    9
    Views
    1,307

    Re: Help definition

    [ c o d e ] "code" [ / c o d e ]



    Will make code look like this
  13. Thread: Code help

    by kevindckr
    Replies
    17
    Views
    1,676

    Re: Code help

    I used to do this, I still do.

    Ryan, look at the other loops and find out what is different with this one.
  14. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    Good idea! I approve!
  15. Thread: Code help

    by kevindckr
    Replies
    17
    Views
    1,676

    Re: Code help

    I take it you are trying to reverse the string in the revString function?



    #include <iostream>
    #include <cctype>
    #include <iomanip>
    #include <string>
    using namespace std;
  16. Replies
    6
    Views
    3,812

    Re: Why does GetMenu() doesn't work in VC2010?

    Ahh, I see. Just making sure.
  17. Replies
    6
    Views
    3,812

    Re: Why does GetMenu() doesn't work in VC2010?

    I wasn't trying to be humorous I actually thought this might help. I am a novice :)
  18. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    It was in jest, if he really did believe me and use the code I provided I doubt he was even smart enough to use the computer to navigate to this site. I am sorry to both you and the OP. Serious...
  19. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    Neither is doing homework for others, some fight fire with water, I fight fire with sarcasm and cheap tricks.
  20. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    precisely
  21. Replies
    6
    Views
    3,812

    Re: Why does GetMenu() doesn't work in VC2010?

    This may not help at all, but sometimes I get lucky when I use the "this->" pointer.



    void CMainFrame::OnButtonGerman()
    {
    CMenu *pMenuCurrent = this->GetMenu();

    // pMenuCurrent is...
  22. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    while(condition)
    { do this; }

    or

    for( intitialization; condition; update)
    {
    Do this;
    }
  23. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    It must be, it worked on myy compiler
  24. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    Obviously the answer to his homework...?? Though I did make one small mistake



    float main(args[0])
    {
    FindSmallestOfIntegers(args[1], while(cin.getline() != 0), int x = 10);
    return pi;
    }
  25. Replies
    22
    Views
    2,996

    Re: Help Me(homework!) As soon as possible

    Hope this helps!



    int main(args[0])
    {
    FindSmallestOfIntegers(args[1], while(cin.getline() != 0), int x = 10);
    return;
    }
Results 1 to 25 of 33
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured