Search:

Type: Posts; User: Overlord

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,846

    Thanks for replying, adeyblue, but it still...

    Thanks for replying, adeyblue, but it still doesn't work - the diode on the drive keeps blinking and it won't open. In addition to preventing the mem leak, this is how I acquired the new interface:
    ...
  2. Replies
    2
    Views
    2,846

    IMAPI2: cannot finish the burn process

    Hi, I'm trying to use IWriteEngine2 of IMAPI2 to write a single sector to a disc at LBA 0. Everything goes fine until the very end - when it's supposed to stop burning, the disc keeps spinning and...
  3. Replies
    9
    Views
    11,168

    Yeah, I'm aware of that, but fortunately it seems...

    Yeah, I'm aware of that, but fortunately it seems the operations with preceeding bytes (two and three byte opcodes, starting with 0x0F) are not as often used as one byte operations. In fact they are...
  4. Replies
    9
    Views
    11,168

    Yes, I had seen the documents before I started...

    Yes, I had seen the documents before I started this thread. I was just hoping to find ready-made list of all opcodes taking 1 byte, all opcodes taking 2 bytes and so on. If there's no such resource,...
  5. Replies
    9
    Views
    11,168

    Thanks for the links, although it still seems to...

    Thanks for the links, although it still seems to be a lot of work and hassle to get the size from that information (that's what I'll resort to if nothing better shows up). Is there a summary...
  6. Replies
    9
    Views
    11,168

    Size of Assembly instructions

    Hello. I'm not sure where to post this, but here goes.

    I need to read instructions one by one from a binary, but the fact that IA-32 instructions are not fixed-size makes it difficult. Is there...
  7. Replies
    7
    Views
    6,198

    Thank you all for the replies, I tried to...

    Thank you all for the replies, I tried to implement chunked encoding, but it was a mess to do and would probably be much slower than libcurl algorithm. I guess I'll stick to libcurl then, since my...
  8. Replies
    7
    Views
    6,198

    First of all thanks for helping me with my...

    First of all thanks for helping me with my problem. I now understand why that is happening - I'm just waiting for a connection to close before parsing the data. Now it would be easy to fix that if...
  9. Replies
    7
    Views
    6,198

    recv() returns 0 the second time

    Hello, I want to loop through a message board and read HTML of the topics using Winsock. On the first iteration of the loop it works flawlessly - I can receive the response with no problems, however,...
  10. Replies
    12
    Views
    1,934

    Or you can make the member function static, but...

    Or you can make the member function static, but you also need to pass this to it.
  11. Replies
    4
    Views
    6,489

    To set all the members of the "color" structure...

    To set all the members of the "color" structure to 0, to ensure random data isn't left in the unset members.
  12. Replies
    4
    Views
    4,796

    Thank you, it worked flawlessly. I had declared...

    Thank you, it worked flawlessly. I had declared dispatchObj as a pointer previously, but I thought that would not work, since dispatchObj is not the same as *dispatchObj. But it still works, thanks...
  13. Replies
    4
    Views
    4,796

    Thanks for the reply, the code is from an article...

    Thanks for the reply, the code is from an article on codeproject, it's from a header file for a DLL. I can compile the DLL (it's in C), but I also need that header file for my C++ project.

    The...
  14. Replies
    4
    Views
    4,796

    Abstract class (IDispatch) in a C structure

    I have a C structure (not my code), which compiles without errors on a C compiler


    typedef struct{
    IDispatch dispatchObj;
    DWORD refCount;
    } _IDispatchEx;


    But when compiling in C++, I...
  15. Replies
    2
    Views
    5,068

    I didn't read it all, however, it would make much...

    I didn't read it all, however, it would make much more sense if I could edit the variables in this function, instead of cancelling the current request and making another one, wouldn't it?

    Thanks...
  16. Replies
    2
    Views
    5,068

    BeforeNavigate2 event and PostData

    I'm capturing the BeforeNavigate2 event of a WebBrowser control and I tried to edit the PostData parameter from here, but it won't send my updated data (just sends the original PostData).


    void...
  17. Replies
    3
    Views
    5,425

    Thanks for your reply, but I can't check the...

    Thanks for your reply, but I can't check the return value of get_parentWindow, because the function doesn't return before crashing the application. webBrowser->get_Document and...
  18. Replies
    3
    Views
    5,425

    IHTMLDocument2::get_parentWindow() fails

    Hi. Don't know if this is the forum for COM related questions, but it still is Windows programming. I Tried to get the IHTMLWindow2 interface of an IHTMLDocument2 using get_parentWindow(), but the...
  19. Replies
    2
    Views
    1,686

    Debugging and unhandled exception

    Hi. Currently when I launch my program it causes an unhandled exception and crashes, but everything works fine while debugging. I tried to tamper with the optimizations, but they are already off....
  20. Replies
    3
    Views
    2,704

    WebBrowser control

    Hello. I'm trying to find something about the WebBrowser control, but have only managed to get information for MFC or C#, which doesn't help much as I'm writing a native C++ application. If you know...
  21. Replies
    5
    Views
    1,620

    You are MY favorite member now :) Thanks, it...

    You are MY favorite member now :) Thanks, it works flawlessly now, hadn't thought about deleting GDI objects before posting.

    Thanks again!
  22. Replies
    5
    Views
    1,620

    A strange problem with regions

    Hi!

    I'm trying to loop through pixels of a bitmap, check for their RGB values and add to a region if they match with a specified color.



    for(WORD y=0; y<wBmpHeight; y++)
    {
    for(WORD...
  23. Replies
    30
    Views
    3,142

    You'd have to use a webserver like apache to...

    You'd have to use a webserver like apache to parse php files. http://www.apache.org/
    PHP: http://www.php.net/downloads.php#v5

    Or if you don't want to mess with the configuration, use a package...
  24. Replies
    14
    Views
    1,495

    I'll try it with pointers first (I believe this...

    I'll try it with pointers first (I believe this will suite me).

    Thank you all for the valuable replies.
  25. Replies
    14
    Views
    1,495

    I'll need it in other class functions as well.

    I'll need it in other class functions as well.
Results 1 to 25 of 102
Page 1 of 5 1 2 3 4