Search:

Type: Posts; User: lyx

Page 1 of 10 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    16
    Views
    72,787

    If you are going to do that, shouldn't you use a...

    If you are going to do that, shouldn't you use a flexible array member instead? After all, it is the "standard way" designed to do the job.

    (If I remember correctly, it seems common practice in...
  2. Replies
    4
    Views
    2,126

    If I understand correctly, you want a client...

    If I understand correctly, you want a client program to fill in a web form? In that case, learn how to use sockets, learn how to use HTTP and send a request with whatever data you want in the body of...
  3. You can get the current time with time(), convert...

    You can get the current time with time(), convert it to a tm structure with either gmtime() or localtime() and get a formatted string with strftime() from the tm structure.
  4. Thread: C vs C++

    by lyx
    Replies
    9
    Views
    1,892

    > That was not very helpful. Is there some sort...

    > That was not very helpful. Is there some sort of reference that I can use that will help me to differentiate them?
    If you really want a reference, there's the standard but it's not free; there are...
  5. Replies
    7
    Views
    3,052

    Oh, thanks for the reply, seems like I didn't...

    Oh, thanks for the reply, seems like I didn't understand what it was saying; never mind.
    I've read that link that codeplug posted even before he did, it says that I would have all accesses, though I...
  6. Replies
    7
    Views
    3,052

    Well, my question is not how to use the...

    Well, my question is not how to use the WriteProcessMemory function but if I create a process using the default security desc., will I be able to use the function properly (in other words, does it...
  7. Replies
    7
    Views
    3,052

    Well, actually, I'm trying to do some debugger...

    Well, actually, I'm trying to do some debugger thing because... there aren't really a reason to that, I was just thinking about how it could be done, I always wanted to know and finally ended with...
  8. Replies
    7
    Views
    3,052

    default security descriptor

    Hello,
    I've never used security descriptors before (mainly because I didn't have a NT-based system) and I wonder what it is (briefly said - it's something I can find out by myself in the docs I...
  9. Replies
    4
    Views
    1,140

    Thanks for your answers, I'll look at your code...

    Thanks for your answers, I'll look at your code Elixia but not right now and for anonytmouse, well, I think it is not what I wanted, I just want to be able to inject an opcode or two into a running...
  10. Replies
    4
    Views
    1,140

    How do I... (process operations)

    Hello,

    I have two questions about processes this time:
    How do I...
    - ...get the base address of a process?
    - ...write to the code of a process? do I just use the WriteProcessMemory function...
  11. Thread: Second Program

    by lyx
    Replies
    28
    Views
    2,463

    I just thought a do...while one would be more...

    I just thought a do...while one would be more appropriate as you want your code to run WHILE the user keep saying yes but you don't ask him the first time.
  12. Thread: Second Program

    by lyx
    Replies
    28
    Views
    2,463

    I only use dynamic_cast, otherwise it is C-casts....

    I only use dynamic_cast, otherwise it is C-casts. But could you show me your example? Besides I'm used to it so... ^^

    CC > Well, you could use a do...while loop instead of a while loop I think.
  13. Thread: Second Program

    by lyx
    Replies
    28
    Views
    2,463

    Are you saying that a a char pointer is 1 byte...

    Are you saying that a a char pointer is 1 byte long?

    To my mind, it is better to put spaces between operators and operands. Just like a == b and not a==b. But it is my opinion...

    Your comments...
  14. Replies
    12
    Views
    1,285

    Don't know about strings but it works with char...

    Don't know about strings but it works with char *, all I can say. ^^
  15. Replies
    12
    Views
    1,285

    If you are using a char * for your string than...

    If you are using a char * for your string than yes you can but a character is enclosed in single and not double quotes.
  16. Replies
    2
    Views
    3,042

    Not really, I just wanted to know what were the...

    Not really, I just wanted to know what were the programming techniques other than OO, proc. oriented and functionnal langages, logical programmation...
    And also the evolutions some want to integrate...
  17. Thread: Symbolic debugging

    by lyx
    Replies
    1
    Views
    1,195

    Symbolic debugging

    Does anyone know how symbolic debuggers bind the names with the variable and functions and how the compiler create them?
  18. Replies
    8
    Views
    1,497

    Excuse me to interrupt but what is a dialog bar?

    Excuse me to interrupt but what is a dialog bar?
  19. Replies
    9
    Views
    2,576

    You must acquire a tool called guidgen, uuidgen...

    You must acquire a tool called guidgen, uuidgen or something...
    It is provided by MS as part of the VS. If you don't have them, I can send it to you.
    Actually, this utility is supposed (I can't...
  20. Replies
    2
    Views
    3,042

    Programming concepts

    I didn't really know where to post this but could you tell me more about programming concepts just like OO or functionnal or those derived from these... If you know some that are not major, tell me!...
  21. Replies
    9
    Views
    2,576

    I've done it quite a while ago to me... If you...

    I've done it quite a while ago to me...
    If you want maybe can I find the sources of my Ax component, it was a true embedded component (which did nothing though...) but it is written in pure assembly...
  22. Replies
    10
    Views
    11,363

    Could you give the piece of code where you are...

    Could you give the piece of code where you are getting the error?
  23. Replies
    6
    Views
    2,825

    No, but I think I finally found a solution to my...

    No, but I think I finally found a solution to my problem, thanks anyway for trying to help. ^^
  24. Replies
    3
    Views
    915

    I would go with a copy constructor and a...

    I would go with a copy constructor and a reference counter or a passage by reference like MrWizard said, however, I prefer the pointers if you're function's intended to use non-constant access to the...
  25. Replies
    6
    Views
    2,825

    Probably am I not clear enough. ^^ So here's an...

    Probably am I not clear enough. ^^ So here's an example, it is not the real code but just to explain the problem:

    I have a pure abstract base class which serve as an interface.

    class Window :...
Results 1 to 25 of 228
Page 1 of 10 1 2 3 4