Search:

Type: Posts; User: Programmer_P

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    39
    Views
    6,679

    Hahaha...and you know this HOW?? Judging from...

    Hahaha...and you know this HOW??

    Judging from what I've seen of other people all the time, I really don't think that's the case at all...
  2. Replies
    39
    Views
    6,679

    Yeah...? Well, I wasn't born perfect. But I...

    Yeah...?

    Well, I wasn't born perfect. But I guess you think you were.
  3. Replies
    39
    Views
    6,679

    You are right, but only to an extent. I think...

    You are right, but only to an extent. I think people have taken the whole concept of "the smallest and simplest program" a little too far...and now basically want those who ask for help to do...
  4. Replies
    39
    Views
    6,679

    Right. Ok, you read my mind...I assumed it was in...

    Right. Ok, you read my mind...I assumed it was in a particular place. However, I'm reading your mind now, and saying I did NOT assume that it was in the same place as where the problem first...
  5. Replies
    39
    Views
    6,679

    Well, I asked for help because I had looked over...

    Well, I asked for help because I had looked over the code where the symptoms first appeared (EDIT: and I might add...elsewhere, since I looked in other places too), and had not found the cause, since...
  6. Replies
    39
    Views
    6,679

    You are right about that. I could have removed a...

    You are right about that. I could have removed a few of those struct variables that I don't actually use in the example code (though I DO use them in the real code...).
    However, since, as I...
  7. Replies
    39
    Views
    6,679

    Well, that's the idea of course. To lower the...

    Well, that's the idea of course. To lower the learning curve. :p
    Why force everyone to learn everything in the traditional and conventional way? I mean, let's face it, there are a lot of non-geeks...
  8. Replies
    39
    Views
    6,679

    How come? I'm using the Qt framework for...

    How come?


    I'm using the Qt framework for creating the GUI.
  9. Replies
    39
    Views
    6,679

    Just to be clear, I'm not programming a web...

    Just to be clear, I'm not programming a web browser. Rather, I am creating a program for creating websites using a GUI. And of course, in order to do that, it is necessary to have code that will...
  10. Replies
    39
    Views
    6,679

    Umm...158 lines is big? I am glad then that I did...

    Umm...158 lines is big? I am glad then that I did not show the real code of the project in which the problem first originated...I imagine that would have, like, caused you to have a heart attack, or...
  11. Replies
    39
    Views
    6,679

    You are right. If you hadn't posted, I wouldn't...

    You are right. If you hadn't posted, I wouldn't have even bothered countering what Elysia wrote, even though it was wrong. :)
    I did indeed debug it a lot first before even starting this thread, and...
  12. Replies
    39
    Views
    6,679

    You are right. However, I really meant that that...

    You are right. However, I really meant that that line is the entry point for understanding the problem, i.e. you read that line, and that gives you the information on where to proceed from there.
    I...
  13. Replies
    39
    Views
    6,679

    Hmm...on second thought, I'm thinking this...

    Hmm...on second thought, I'm thinking this implementation might be better:

    C++ code - 166 lines - codepad

    EDIT: Or modify the version in my last post to use an else if instead of an if for the...
  14. Replies
    39
    Views
    6,679

    Weird. When I tried that in my real code, it now...

    Weird. When I tried that in my real code, it now complains about multiple definitions of that operator. Even though there is only one.

    S_browser.h:



    #ifndef S_BROWSER_H
    #define S_BROWSER_H...
  15. Replies
    39
    Views
    6,679

    Ahh...I see. So something like this then, right:...

    Ahh...I see. So something like this then, right:

    C++ code - 161 lines - codepad

    (Yay, it works!)
  16. Replies
    39
    Views
    6,679

    You are right. Those operators I was just trying...

    You are right. Those operators I was just trying out for now. I was unsure about them, and whether or not they work, and had not tested them extensively.
    How would you suggest that I implement the <...
  17. Replies
    39
    Views
    6,679

    Well, I believe that I do, since the map is in...

    Well, I believe that I do, since the map is in the S_html_attr construct, as a member called 'supported_attr_values', and the list you're talking about is in the construct called...
  18. Replies
    39
    Views
    6,679

    Well, in my example code, I would almost...

    Well, in my example code, I would almost guarantee that that line is the problem. Otherwise, commenting it out would not remove the error, now would it... ;)
    As for mangled identifers, I don't think...
  19. Replies
    39
    Views
    6,679

    No. I do not do that, in either my original code...

    No. I do not do that, in either my original code or in the example code which simplifies the problem. I do modify the map, though without using iterators, by inserting some new elements into the map,...
  20. Replies
    39
    Views
    6,679

    Problem with vector iterator

    Hello.
    I began playing around a little with iterators for an std::vector a while back for my programming project I'm currently working on, and am basically trying to use them right now to access a...
  21. Replies
    12
    Views
    1,628

    Hmm...it seems you're right. I added an...

    Hmm...it seems you're right. I added an overloaded < operator to the S_browser struct, and that got rid of the error messages above.

    However, now its giving me 3324 errors and 25 warnings about...
  22. Replies
    5
    Views
    1,580

    Well, I tried that already after reading about it...

    Well, I tried that already after reading about it on the web, but the example that they showed was around the function declaration, not inside of a function definition, which is where I need it.
    So...
  23. Replies
    5
    Views
    1,580

    Nested comments don't work?

    I was wondering why multiline C-style comments don't work?



    /* BEGIN_COMMENT1
    /* BEGIN_COMMENT2
    */ END_COMMENT2
    */ END_COMMENT1

    The reason I'm asking is, I want to comment out some...
  24. Replies
    12
    Views
    1,628

    Well, yes, that might be useful if I actually...

    Well, yes, that might be useful if I actually wanted to compare different S_browser objects with one another, but right now I don't see a use for that.
    All the S_browser struct is for is to keep...
  25. Replies
    12
    Views
    1,628

    Yes. But what does that have to do with it?

    Yes. But what does that have to do with it?
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4