Search:

Type: Posts; User: ledow

Page 1 of 18 1 2 3 4

Search: Search took 0.02 seconds.

  1. Your question is incomplete and makes no sense. ...

    Your question is incomplete and makes no sense.

    What do you mean by workload? CPU usage? Disk usage?

    You don't get a "memory address" for that, you have to call a specific...
  2. Replies
    6
    Views
    10,338

    What's wrong with the forum attach feature, or...

    What's wrong with the forum attach feature, or just snipping the first 100 lines into a comment.

    External website doesn't even load properly for me, and tries to make me play "guess the real...
  3. I don't think that's helpful at all, in this...

    I don't think that's helpful at all, in this case. The interface electronics are far too complex for such a simple task, especially when the OP says he has a dongle. Let the dongle do the work - it...
  4. Replies
    14
    Views
    1,318

    Throwing operators/functions that you think are...

    Throwing operators/functions that you think are related at a line of code and hoping it works isn't programming. You code can't even compile, because it makes no sense, so it doesn't pass even the...
  5. Nobody will "just paste code" to solve your...

    Nobody will "just paste code" to solve your problem. That's not what happens here.

    I suggest you look into the Hayes AT Command Set, specifically the 3G/GSM extensions that are common. That's...
  6. If you were that worried, you'd just make it a...

    If you were that worried, you'd just make it a malloc'd variable. It literally takes a handful of lines of code and ensures that - if the machine has enough RAM - you'll always have enough space for...
  7. Fix your compile errors before you continue? ...

    Fix your compile errors before you continue? Maybe even post them so we can see?
  8. Honestly? What does hooking have to do with...

    Honestly?

    What does hooking have to do with all that opcode junk? And why can't you use a debugger (which will tell you exactly why the memset fails, most probably because you're not aware of DEP...
  9. Show code. And I highly doubt that a DLL...

    Show code.

    And I highly doubt that a DLL leaving threads around is making your program crash at all. It sounds entirely unrelated.
  10. Replies
    3
    Views
    1,166

    The user has an obsession with "injecting" code...

    The user has an obsession with "injecting" code into HTML. I think he has no idea what it means, let alone why you'd want to do it.

    If anything, I'd guess that he'd picked up on the term...
  11. P.S. This sort of thing is why I often just load...

    P.S. This sort of thing is why I often just load DLL's dynamically (LoadLibrary, GetProcAddress, or dlload, dlsym on Linux) rather than rely on the OS to just pick them up when the program is run. ...
  12. It's been a long time since I've had to make...

    It's been a long time since I've had to make DLL's using MinGW tools but almost certainly you haven't exported the functons properly into the DLL (and you're using g++ so it's possible the names got...
  13. Replies
    21
    Views
    2,152

    Honestly? Really? Are you genuinely thinking...

    Honestly? Really? Are you genuinely thinking this?

    A class environment does not mean you are taken by the hand and told how to do every step. Not once you're out of nursery. And, shock, real...
  14. Replies
    10
    Views
    1,429

    Apart from the chatbox and the invitation to join...

    Apart from the chatbox and the invitation to join a gaming group? Or was that just intentional spam for the forum?
  15. Replies
    7
    Views
    2,584

    500 lines? Sorry, but this is really nothing. A...

    500 lines? Sorry, but this is really nothing. A quick single-step through with a debugger will find the problem for you in less than ten minutes. Fixing it might take a little longer. If you...
  16. Replies
    7
    Views
    2,584

    After a quick look through, which is by no means...

    After a quick look through, which is by no means accurate or conclusive, I just wanted to make sure your program even compiled properly...

    Just from the screenshots it looks like the background...
  17. Replies
    7
    Views
    2,584

    Your program is too long for me to dig through,...

    Your program is too long for me to dig through, but I imagine it's nothing more than a simple logical error. Have you tried debugging it? Putting breakpoints at the point something may go awry? ...
  18. Replies
    7
    Views
    1,303

    Compile with warnings enabled, and the compiler...

    Compile with warnings enabled, and the compiler itself would have told you this.
  19. And just from an IT/Network manager's point of...

    And just from an IT/Network manager's point of view - if your program needs to do this, you're doing something wrong anyway. Seriously. Either tell people "You are not an administrator, but you...
  20. Replies
    6
    Views
    3,618

    You need to provide more info. Specifically: ...

    You need to provide more info.

    Specifically: "the compiler tells me that it can't find what I want it to"... and will have produced a lovely error that tells us exactly what it was after and...
  21. Replies
    5
    Views
    1,255

    Make sure you have a Run Configuration set up. ...

    Make sure you have a Run Configuration set up. The default Run button just runs a Run configuration. On Eclipse, it's under the Run menu, Run Configuration... and then create one relevant to your...
  22. Replies
    6
    Views
    2,211

    Well, that's better. You can debug it. You can...

    Well, that's better. You can debug it. You can understand it. You stand half a chance of working out where the flow of the program is on a bit of paper. And as you'll notice as you code more,...
  23. Replies
    6
    Views
    2,211

    Sigh. Well, it's still an unintelligible mass of...

    Sigh. Well, it's still an unintelligible mass of information that isn't particularly relevant. However, I will abandon that track and now wonder why you're even doing what you're doing. I've just...
  24. Replies
    6
    Views
    2,211

    1) Your sprite is a PNG, not a BMP. 2) Throw...

    1) Your sprite is a PNG, not a BMP.
    2) Throw some printf()'s in there if your debugger can't load it. Then at least you have an idea what parts it gets past successfully (note: Use '\n' on the end...
  25. I'd recommend SDL, personally. If you're going...

    I'd recommend SDL, personally. If you're going to start now, start on SDL2 and save yourself a lot of hassle. In the past, I've actually found it easier to convert Allegro apps to use SDL rather...
Results 1 to 25 of 438
Page 1 of 18 1 2 3 4