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

Search:

Type: Posts; User: endemoniada

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    274

    Re: Can't Stop Thread

    It seems like the more I think about thread synchronization the more I think just about everything needs to be protected.

    I have a custom window (made with CreateWindow) that I use like a...
  2. Replies
    7
    Views
    274

    Can't Stop Thread

    Hi guys, I can't stop my thread:



    void MyClass:start()
    DWORD dwThread;
    thread_flag=1;
    hThread=CreateThread(NULL,0,startThread,(LPVOID)this,0,&dwThread);
    }
  3. Extracting Stuff from an IHTMLDocument2 in C++ ?

    Hi guys,

    I got as far as getting a web page into an IHTMLDocument2 but I don't know what to do from there, all the examples I found are C# or .NET or something else I don't understand.

    Will...
  4. Replies
    6
    Views
    314

    Re: Dimensions of JPEG in Memory ?

    1) Exactly that, I don't want to write it to disk unless the width or height is a minimum of (say) 512 pixels.

    I'm not using a library because I planned on just writing the block of memory to...
  5. Replies
    6
    Views
    314

    Dimensions of JPEG in Memory ?

    Hi guys,

    I have a JPEG in memory as a char* and a bytesize, if I save it to disk with a .jpg extension it's a perfect JPEG file. The thing is, I don't want to save it unless it's a minimum...
  6. Replies
    2
    Views
    491

    My DIBs are 2 Bytes Short

    Hi guys,

    I noticed that my DIBs, both saved and copied to the clipboard, are 2 bytes short.



    DWORD dwSize=sizeof(BITMAPINFO)+height*span;
    HGLOBAL hGlobal=GlobalAlloc(GMEM_MOVEABLE,dwSize);...
  7. Replies
    4
    Views
    710

    Re: VS2010 Compilation Warnings

    I would get a warning such as: "conversion from double to float, possible loos of data". I don't get that in VS2010.



    Yes, you are correct. The warnings were under Link so they wouldn't show up...
  8. Replies
    4
    Views
    710

    VS2010 Compilation Warnings

    Hello, using VS2010 I am not getting the compilation warnings I used to get with VS2008.

    For example:

    float x=1.0;

    ...would cause a warning in VS2008 because I didn't append an 'f' like so:...
  9. Replies
    1
    Views
    460

    Handling Fatal Errors in WM_CREATE

    Hi guys,

    I'm doing something like this:

    WM_CREATE:
    if(!initialize()){
    // fatal error
    // MessageBox(...);
    // here I should terminate the program
    }
Results 1 to 9 of 9



HTML5 Development Center

Click Here to Expand Forum to Full Width